2013年12月12日 星期四

Win7 PAE 設定

Win7 PAE 設定
資料來源:
www.mobile01.com/topicdetail.php?f=233&t=983983&p=3
http://www.mobile01.com/topicdetail.php?f=235&t=977163&p=9#13137645
http://www.mobile01.com/topicdetail.php?f=495&t=808222&p=13#10831957
http://www.mobile01.com/topicdetail.php?f=495&t=808222&p=13#10863616
http://windows.microsoft.com/zh-tw/windows7/windows-7-windows-server-2008-r2-service-pack-1-sp1-installation-error-0x800f0a12
http://social.technet.microsoft.com/Forums/zh-TW/27da70c5-a7aa-4538-97a3-9b03ebf9364b/bcd
http://www.mobile01.com/topicdetail.php?f=233&t=983983&p=3
http://sinerely1999.blogspot.tw/2010/08/windows7-64-ramdisk.html
http://tzoyiing.pixnet.net/blog/post/25217312
http://idaiwan.pixnet.net/blog/post/29102324-%E9%81%A9%E7%94%A8%E6%96%BC-windows-7-%E7%9A%84-superspeed-ramdisk-%E6%9C%80%E6%96%B0%E7%89%88

安全移除USB

不再强行拔出 5种妙方安全删除USB连接

Ubuntu 小技巧

Ubuntu 安裝之後的一些小Tip

Ubuntu 安裝之後的一些小Tip @ 人本自然:: 隨意窩Xuite日誌

Ubuntu 14.04的調校


Firefox 中文化套件
apt-get install firefox firefox-locale-zh-hant

編輯網路卡介面資訊及重啟

nano /etc/network/interfaces
/etc/init.d/networking restart 




Ubuntu pppoe設定

pppoeconf

凍仁的筆記: Manual PPPoE on Debian

還有一套其他 linux(red hat,suse,slackware,...) 常用的
密碼是隱碼輸入
sudo apt-get install pppoe

sudo pppoe-setup
sudo pppoe-start
sudo pppoe-stop


取消pppoe启动时自动拔号:
sudo gedit /etc/network/interfaces
auto dsl-provider 改成 #auto dsl-provider
與dsl相關的語句加#後重新啟動。

设置静态ip的方法:
Ubuntu的网络参数保存在文件 /etc/network/interfaces中,默认设置使用dhcp,内容如下:
# The primary network interface
auto eth0
iface eth0 inet dhcp
设置静态ip的方法如下:
(1)编辑 /etc/network/interfaces
1.1)将dhcp 一行屏蔽
# The primary network interface
auto eth0
#iface eth0 inet dhcp
1.2)添加和静态ip有关的参数
# The primary network interface
iface eth0 inet static
address 192.168.0.10
netmask 255.255.255.0
gateway 192.168.0.1
(2)编辑 /etc/resolv.conf,设置dns
nameserver 202.96.134.133
nameserver 202.106.0.20
(3)执行下面两个命令,启用新设置
$sudo ifdown eth0
$sudo ifup eth0