AWS 인스턴스에 아파치 서버를 설치하려고하는데 apt 패키지가 설치되어 있지 않은 것 같습니다.
나는 봤는데 내가 찾은 것은이 패키지에 대한 깨진 링크였습니다. 해당 정보가 도움이된다면 Windows 컴퓨터에서 Putty를 사용하고 있습니다.
나는 현재 리눅스 환경에 대한 경험이 적거나 없습니다.
다음 버전의 Linux를 실행하고 있습니다.
Linux ip-172-31-37-96 3.14.48-33.39.amzn1.x86_64 #1 SMP Tue Jul 14 23:43:07 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
누구든지 도와 줄 수 있습니까?
답변
Amazon Linux를 사용하는 경우 RedHat 기반 인 CentOS 기반입니다. RH 기반 설치는 사용할 수 yum
없습니다 apt-get
. 다음과 같은 yum search httpd
것이 사용 가능한 Apache 패키지를 보여줄 것 yum install httpd24
입니다.
참고 : Amazon Linux 2는 이 답변을 작성한 이후 CentOS에서 분기 되었지만 여전히
yum
.
답변
yum
명령
을 사용하여 응용 프로그램을 설치하십시오.yum install application_name
답변
리눅스 배포판을 확인, apt-get
작동 데비안 기반 배포판 반면 yum
에 작품 페도라 기반의 배포판 .
참고 : 배포판 이름을 아는 방법 , 명령 실행cat /etc/*-release
당신의 시스템 관리자가 허용하지 않습니다 수도 있습니다 (또는이 사용자 그룹에 투입하지 않은 sudo
권한을) 실행 apt-get
하지만, 당신이있는 경우 sudo
에 실행 액세스 시도 sudo apt-get <package_name>
하는 경우 debian
또는 yum install <package_name>
당신이 사용하는 경우를 Fedora
.
답변
나는 apt-get: command not found
우분투 제니 얼에서 어떻게 해결했는지 에 관한 동일한 문제에 직면 했습니다.
-
apt.deb 다운로드
wget http://security.ubuntu.com/ubuntu/pool/main/a/apt/apt_1.4_amd64.deb
-
apt.deb 패키지 설치
sudo dpkg -i apt_1.4_amd64.deb
이제 우리는 쉽게 실행할 수 있습니다
sudo apt-get install htop
답변
apt–get : 명령을 찾을 수 없습니다.
Debian 기반 Linux 배포의 경우 :
사용해보십시오 sudo apt install <package>
평소 대신sudo apt-get install <package>
에서 man apt
apt는 패키지 관리 시스템을위한 고급 명령 줄 인터페이스를 제공합니다. 최종 사용자 인터페이스를위한 것이며 apt-get (8) 및 apt-cache (8)와 같은보다 전문화 된 APT 도구에 비해 기본적으로 대화 형 사용에 더 적합한 일부 옵션을 활성화합니다.
답변
두 가지 문제가있을 수 있습니다.
1. Your are trying the command in machine that does not support apt-get command
because apt-get is suitable for Linux based Ubuntu machines; for MAC, try
apt-get equivalent such as Brew
2. The other issue can be that your installation was not completed properly So
짧은 대답 :
Re-install Ubuntu from a Live CD or USB.
긴 버전 :
The long version would be a waste of your time: your system will never
be clean, but if you insist you could try:
==> Copying everything (missing) except for the /home folder from the Live
CD/USB to your HDD.
OR
==> Do a re-install/repair over the broken system again with the Live
CD / USB stick.
OR
==> Download the deb file for apt-get and install as explained on above posts.
I would definitely go for a fresh new install as there are so many things to
do and so little time.
답변
이것은 apt-get을 설치하기 위해 실행할 수있는 명령 중 하나입니다.
wget http://security.ubuntu.com/ubuntu/pool/main/a/apt/apt_1.4_amd64.deb