|
宿舍和工作地点是两个不同的网段,所以我
把工作地点的网络配置写在/etc/network/interfaces-1里,
[PHP]$ cat /etc/network/interfaces-1
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.10.y.y
netmask 255.255.255.0
gateway 10.10.y.1
network 10.10.y.0[/PHP]
把宿舍的网络配置写在/etc/network/interfaces-2里,
[PHP]$ cat /etc/network/interfaces-2
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.10.x.x
netmask 255.255.255.0
gateway 10.10.x.1
network 10.10.x.0[/PHP]
然后在宿舍用
[PHP]# cp /etc/network/interfaces-2 /etc/network/interfaces
# /etc/init.d/networking restart[/PHP]
来切换ip。但是切换后发现使用OOo writer时如果按F11,然后从列表选择格式编辑,OOo就会失去响应,只能杀掉进程。
系统是Debian testing,内核版本2.6.26-12
OOo版本是2.4.1-15
有什么建议吗?谢谢先
=================
最近又老遇到这种情况,有趣(?)的是似乎是特定文件才出现这个问题。想啊想,宿舍和工作地点似乎还有一个不同:工作地点有打印机。
在Tools->Load/Save->General里
去掉“load printer settings with the document”的勾选,似乎OK了? |
|