标签归档:Linux

Linux

Win7_Ubuntu grub 修复

ubuntu有好些年月了,不过一直是Win+Ubuntu共生于我的电脑中,虽然一直希望能完全依靠Ubuntu,可工作和生活从目前来看,我还是离不开Win,之所以双双共用了,所以也就产生了这个话题的讨论!\n言归正传,例举2种经常产生grub引导问题出现的情况。\n1、最最常见的就是重装系统后,原来的grub引导就不复存在;\n2、更改硬盘的分区,特别是系统盘,包括Win主分区、Ubuntu系统分区;\n解决办法:(以下方法主要来自网络,本人只依据自己的实验结果,总结起来,方便各位参考!方法简单多样,对高人是不齿一提,但对那些碰到这样问题选择重新安装系统的抓狂的新人来说,我想还是可以借鉴的!)\n办法1(重新安装Win后,导致Ubuntu不能引导启动。) 继续阅读

用wingrub引导windows与redhat linux双系统

用wingrub可以在windows下安装和配置grub,以达到引导双系统启动的目的。今天我就“研究”了一下wingrub的使用方法\n\n安装过程就不用多说了。打开WINGRB.exe,选择tools->Install Grub,在弹出的菜单中选择boot.ini,在右边title文本栏中随便填个什么,这是开机后供你选择的启动选项的名称(选择这个后才是选择具体要启动的系统),在下面的timeout栏中填入自动等待的秒数,填好后如下图。\n\n然后点install\n这时在menu table文本栏中点右键,选Edit E这一项,\n编辑成如下文本:\ntimeout 3\ntitle Windows at (hd0,0)\nroot (hd0,0)\nchainloader +1\ntitle Redhat\nroot (hd0,7)\nkernel /vmlinuz-2.4.20-8 ro root=LABEL=/\ninitrd /initrd-2.4.20-8.img\n 继续阅读

ROS软路由

——————常用命令——————
【基础配置】
1、查看网卡
interface print  (int pr)
2、修改网卡名称
interface set 0 name lan (int set 0 name lan)
3、修改网卡MAC地址
interface ethernet set lan mac-address=00:00:00:00:00:00
(int eth set lan mac=00:0C:29:D0:26:6F)
4、查看IP地址
ip address print (ip add pr)
5、添加IP地址
/ip address add address=192.168.0.253/24 interface=lan
(ip add add add=192.168.0.253/24 int=lan)
6、删除IP地址(删除前必须先查看,否则无法删除)
(1)ip address print (2)/ip address remove 0    (ip add rem 0)
7、添加网关
/ip route add gateway=125.93.177.217
8、删除网关
(1)ip route print   (2)ip route remove 2
9、添加NAT
/ip firewall nat add chain=srcnat action=masquerade

【】

iptables

iptables -t nat -L  查看nat表中所有信息\n\niptables -F  删除filter表中所有规则\niptables -t nat -F  删除nat表中所有规则\n\niptables -X  删除链\n\niptables -A  添加规则\niptables -D  删除规则\n\n设置内置规则链的缺省策略\niptables -P INPUT Drop(系统默认是ACCEPT)\n 继续阅读