Ubuntuインストールメモ

「Ubuntuインストールメモ」の編集履歴(バックアップ)一覧に戻る

Ubuntuインストールメモ - (2008/01/07 (月) 16:59:16) の編集履歴(バックアップ)


ISOイメージの入手


2008/01/07 最新版 Ubuntu Desktop 7.10

インストール

インストール画面の指示に従って入力.特に難しい内容はない.

パーティションはWindowsとのデュアルブートも考えたが,Ubuntu上でWindowsを動かせばいいと思ったので,パーティションはガイドを使ってすべて消した.

初期設定

  • アップデートマネージャの通知に従って更新
  • apt-getによる更新
sudo apt-get update
sudo apt-get upgrade
  • emacs のインストール
sudo apt-get install emacs

beep音を消す (参考ページ http://homepage2.nifty.com/ssfu/others/computer/linux_silence.html)

  • 端末(シェル)のbeep音OFF
    • ~/.inputrc に以下を追加
set meta-flag on
set convert-meta off
set output-meta on
set bell-style visible

  • Xのbeep音OFF
    • ~/.bashrc に以下を追加
xset -b

  • emacsのbeep音
    • ~/.emacs に以下を追加
(setq visible-bell t);;