답변:
자, 설치하려고 시도 할 수있는 방법은 컴파일하는 것입니다. 이렇게하려면 터미널의 단계를 수행하십시오.
wget http://gnu.mirrors.linux.ro/emacs/emacs-24.4.tar.gz
tar -xzvf emacs-24.4.tar.gz
./configure
make
sudo make install
어쨌든, 앞에서 설명한 것은 소스에서 Linux 배포판에 소프트웨어를 컴파일하고 설치하는 단계입니다. 또한 누락 된 종속성이있을 수 있으며, 설치하려면 (emacs) 종속성을 설치해야하지만 sudo apt-get install <dependency_name>
각 종속성에 대해 단계를 반복하거나 수행 할 수 있습니다 .
내가 당신을 도울 수 있기를 바랍니다!
Emacs 24.4는 다음 지침을 사용하여 새로운 Raspberry pi 2에서 컴파일하고 완벽하게 실행 합니다 .
sudo apt-get install texinfo libncurses5-dev
X 관련 종속성을 설치하십시오.
sudo apt-get install xorg-dev libpng12-dev libjpeg8-dev libgif-dev libtiff5 libtiff5-dev
configure 스크립트를 실행하십시오.
./configure --prefix /opt/emacs
X 지원이 필요하지 않으면 configure 명령 끝에 --without-x를 추가하십시오.
make를 실행하십시오.
make
emacs 바이너리가 빌드되어 작동하는지 확인하십시오.
./src/emacs
Emacs가 올바로로드되면 종료하고 make install을 실행하십시오.
make install
또는 저장소에 emacs 24.4.1이있는 jessie를 사용하십시오.
harry ~ $ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux jessie/sid"
NAME="Raspbian GNU/Linux"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
harry ~ $ emacs --v
GNU Emacs 24.4.1
Copyright (C) 2014 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.
harry ~ $
예. 성공적으로 설치할 수있었습니다 :
pi@raspberrypi:~ $ emacs --version
GNU Emacs 24.4.1
Copyright (C) 2014 Free Software Foundation, Inc.
GNU Emacs comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of Emacs
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING.
pi@raspberrypi:~ $
단계는 다음과 같습니다.
1) apt-get을 업그레이드하십시오.
sudo apt-get update
2) emacs를 설치하십시오 :
sudo apt-get install emacs
./configure
합니까? 그렇다면이를 완전한 조언으로 삼아야합니다.