1.Fedora12启动时激活网卡:
1.1 打开 系统->管理->网络,选择
并双击,在打开的窗口中将设置改为:
1.2 打开终端,并输入命令如:[root@localhost ~]# gedit ~/.bashrc
在打开的文件末尾添加”ifup eth0“,则文件完整内容变为:
# .bashrc
# User specific aliases and functions
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
ifup eth0
至此,启动Fedora时,网卡就会自动激活。
2. 启动系统时将firefox不设置为脱机工作
打开firefox并在浏览器中输入:about:config,然后回车,将toolkit.networkmanager.disable设置为true,结果变为:
完成!
以上两种方法就可以达到我们的目的了,事实上还有许多其他的实现方法,这里就不介绍了!