歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Ubuntu 9.04的安裝配置過程備忘

Ubuntu 9.04的安裝配置過程備忘

日期:2017/2/28 16:44:59   编辑:Linux教程

1,光盤安裝Ubuntu 9.04。

2,設置Ubuntu 9.04網絡連接
靜態IP的設置保存在 /etc/network/interfaces

iface eth0 inet static
address 192.168.10.89
netmask 255.255.255.0
gateway 192.168.10.1
DNS設置保存在 /etc/resolv.conf 文件中
nameserver 202.113.xx.xx

3,源設置(DVD或者校內源)
(1)掛載dvd的iso
sudo mount -o loop -t iso9660 /media/Joy/ubuntu/Ubuntu/jaunty-dvd-i386.iso /media/cdrom0/
添加源
sudo apt-cdrom -m -d /cdrom add
(2)校內源 sudo gedit /etc/apt/sources.list
#ubuntu 9.04(jaunty)
deb http://202.113.13.45:9527/ubuntu-dist jaunty main restricted universe multiverse
deb http://202.113.13.45:9527/ubuntu-dist jaunty-security main restricted universe multiverse
deb http://202.113.13.45:9527/ubuntu-dist jaunty-updates main restricted universe multiverse
deb http://202.113.13.45:9527/ubuntu-dist jaunty-proposed main restricted universe multiverse
deb http://202.113.13.45:9527/ubuntu-dist jaunty-backports main restricted universe multiverse

4,nfts分區掛載
sudo gedit /etc/fstab

/dev/sda8 /media/study ntfs user,auto,exec,utf8,uid=1000,gid=1000,umask=0002 0 0

5,顯卡驅動安裝NVIDIA-Linux-x86-180.44-pkg1

6,常用軟件的安裝
(1)matlab,中文亂碼的解決
http://www.linuxidc.com/Linux/2008-03/11723.htm

(2)pdf閱讀器安裝,wine+foxit。。其中wine foxit中文書簽亂碼解決方法,
從window裡拷貝simsun.ttf文件到wine 的windows/Fonts裡,然後在注冊表裡regedit中 HKEY_LOCAL_MACHINE\software\microsfot\windows nt\currentversion\fontsubstitutes 裡加上
"Tahoma"="simsun"
"Tahoma Bold"="simsun"兩項。

PDF字體問題添加 poppler-data 軟件包解決。。

(3)stardict 星際譯王,+朗道英漢字典
(4)openoffice 3.1
(5)eclipse安裝,以及gtk等
sudo apt-get install build-essential #這將安裝gcc/g++/gdb/make 等基本編程工具
sudo apt-get install gnome-core-devel #這將安裝 libgtk2.0-dev libglib2.0-dev 等開發相關的庫文件
sudo apt-get install pkg-config #用於在編譯GTK程序時自動找出頭文件及庫文件位置
(6)chmsee
(7)audacious+smplayer
(8)filezilla ftp+multiget
(9)alltray 最小化到托欄的軟件+liferea
(10)設置evolution
(11)自動更換壁紙 wallpaper-tray ,在gnome面板上右鍵添加。。

7,transmission的 ip過濾設置
在~/.config/transmission/blocklists 裡添加一個文件,每行格式為 名稱:ip-ip
如,ipv4:0.0.0.0-255.255.255.255
這樣即可過濾文件裡的ip

Copyright © Linux教程網 All Rights Reserved