回答:
それでは、インストールしてみる方法は、コンパイルすることです。これを行うには、ターミナルの手順に従います。
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ディストリビューションにソフトウェアをコンパイルおよびインストールする手順です。また、依存関係が欠落している可能性があることに注意してください。それをインストールするには、依存関係もインストールする必要がありますが、これは、依存関係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 --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
か?もしそうなら、これを完全なアドバイスにすることが言及されるべきです。