Cygwin - Obtendo novos comandos - Edit

1

Instalei o Cygwin para obter o shell bash na janela 8 e não consigo usar o comando vim , ssh , apt , install . Muitos comandos funcionam agora, enquanto não funcionou em poucos minutos atrás. O que eu poderia fazer para obter esse novo comando com o Cygwin?

EDITAR:

Agora sei que tenho que instalar o apt-cyg usando este site . Isso é exatamente o que eu fiz, mas mesmo que o "arquivo apt-cyg" esteja no diretório Downloads , eu ainda não sei como usar esse arquivo para fazê-lo funcionar.

    
por SpinningAtInfinity 26.11.2016 / 20:32

2 respostas

0

Por padrão, a instalação do cygwin instala somente os pacotes na categoria Base . Se você precisar instalar outros pacotes, precisará selecioná-los.

link

Para pesquisar qual pacote contém o que você está procurando, use a pesquisa na Web link

ou a linha de comando um

cygcheck -p "file_name"
    
por 27.11.2016 / 09:28
0

Ainda não sei como usar esse arquivo para que funcione.

Por favor, leia o apt-cyg readme, ele diz tudo o que você precisa saber:

apt-cyg

apt-cyg is a Cygwin package manager. It includes a command-line installer for Cygwin which cooperates with Cygwin Setup and uses the same repository.

github.com/transcode-open/apt-cyg

Operations

install
  Install package(s).

remove
  Remove package(s) from the system.

update
  Download a fresh copy of the master package list (setup.ini) from the
  server defined in setup.rc.

download
  Retrieve package(s) from the server, but do not install/upgrade anything.

show
  Display information on given package(s).

depends
  Produce a dependency tree for a package.

rdepends
  Produce a tree of packages that depend on the named package.

list
  Search each locally-installed package for names that match regexp. If no
  package names are provided in the command line, all installed packages will
  be queried.

listall
  This will search each package in the master package list (setup.ini) for
  names that match regexp.

category
  Display all packages that are members of a named category.

listfiles
  List all files owned by a given package. Multiple packages can be specified
  on the command line.

search
  Search for downloaded packages that own the specified file(s). The path can
  be relative or absolute, and one or more files can be specified.

searchall
  Search cygwin.com to retrieve file information about packages. The provided
  target is considered to be a filename and searchall will return the
  package(s) which contain this file.

Quick start

apt-cyg is a simple script. To install:

lynx -source rawgit.com/transcode-open/apt-cyg/master/apt-cyg > apt-cyg
install apt-cyg /bin

Example use of apt-cyg:

apt-cyg install nano

Fonte readme.md

    
por 27.11.2016 / 10:34