正常的安裝就是在VirtualBox裡添加虛擬機,掛載下載好的Debian鏡像,即可安裝完成,最後安裝VirtualBox的附加組件,一路應該很順利。實際感覺是Debian比Ubuntu要稍微麻煩些。
apt的設置
如果你在安裝系統的時候就設置好了且工作正常,則不用設置。設置軟件源
nano /etc/apt/sources.list我的是
deb http://ftp.debian.org/debian stable main contrib non-free deb-src http://ftp.debian.org/debian stable main contrib non-free
給apt設置代理
nano /etc/apt/apt.conf.d/70debconf #ubuntu下是/etc/apt/apt.conf我的是在底部添加
Acquire::http::proxy "http://192.168.1.2:8123/"; Acquire::ftp::proxy "http://192.168.1.2:8123/";這是的代理是Win7里運行的Shadowsocks。
安裝VirtualBox附加組件
轉自Installing Guest Additions on Debian。安裝完成後就可以共享剪切板和自由縮放屏幕大小了。
- Login as root;
- Update your APT database with apt-get update;
- Install the latest security updates with apt-get upgrade;
- Install required packages with apt-get install build-essential module-assistant;
- Configure your system for building kernel modules by running m-a prepare;
- Click on Install Guest Additions… from the Devices menu of VirtualBox, then run mount /media/cdrom.
- Run sh /media/cdrom/VBoxLinuxAdditions.run, and follow the instructions on screen.
添加中文支持
dpkg-reconfigure locales空格選擇,回車確認。我選擇了這幾個
- zh_TW BIG5 - 繁體中文(台灣),使用 Big5 碼
- zh_TW.UTF-8 UTF-8 - 繁體中文(台灣),使用 UTF-8 碼
- zh_HK.UTF-8 UTF-8 - 繁體中文(香港),使用 UTF-8 碼
- zh_CN GB2312 - 簡體中文,使用 GB2312-80
- zh_CN.GBK GBK - 簡體中文,使用 GBK
- zh_CN.UTF-8 UTF-8 - 簡體中文,使用 GB18030
安裝字體:
apt-get install ttf-arphic-uming xfonts-intl-chinese xfonts-wqy
安裝輸入法:
apt-get install fcitx-sunpinyin apt-get install im-switch
重啟就好了。
Debian使用systemd開機啓動
我裝的是Debian8,似乎已經不再支持rc.local了。以ss爲例,開機啓動可以這麼添加:首先新建開機服務文件
nano /lib/systemd/system/ss.service內容爲
[Unit] Description=ss [Service] Type=simple ExecStart=/usr/local/bin/ss-local -c /etc/shadowcksB.json > /home/$YOURNAME/.sslog 2$ PrivateTmp=true [Install] WantedBy=multi-user.targetss用到的文件/home/$YOURNAME/.sslog需要自己新建touch下。
將服務設置爲開機啓動:
systemctl enable ss.service
測試服務是否正常:
systemctl start ss.service
查看當前服務狀態:
systemctl status ss.service -l
順便再貼一個polipo的開機啓動文件
[Unit] Description=polipo After=network.target [Service] Type=forking ExecStart=/etc/init.d/polipo start ExecReload=/etc/init.d/polipo restart ExecStop=/etc/init.d/polipo stop PrivateTmp=true [Install] WantedBy=multi-user.target
安裝flashplayer
Debian自帶的瀏覽器和火狐都沒有Flash,可以按照如下步驟安裝:
1, Lauch the browser and download the Flash Player in a seperate folder.Download link = http://get.adobe.com/flashplayer/
2, tar xzvf yourdownloadedfilename.tar.gz
3, cp libflashplayer.so /usr/lib/mozilla/plugins/
本文更新於 2016/05/19。