eth1 Link encap:Ethernet HWaddr 5C:F3:FC:1B:73:B6 inet addr:192.xxx.1xx.107 Bcast:192.xxx.1xx.255 Mask:255.255.255.0 inet6 addr: fe80::5ef3:fcff:fe1b:73b6/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:38546864 errors:0 dropped:1563 overruns:0 frame:0 TX packets:42148624 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:21287430291 (19.8 GiB) TX bytes:34555423236 (32.1 GiB) 查看到ifconfig已经正常,然后去ping下,已经正常。 [root@localhost /]# ping 1x.xx.0.22 PING 1x.xx.0.22 (1x.xx.0.22) 56(84) bytes of data. 64 bytes from 1x.xx.0.22: icmp_seq=1 ttl=255 time=1.00 ms 64 bytes from 1x.xx.0.22: icmp_seq=2 ttl=255 time=0.082 ms 64 bytes from 1x.xx.0.22: icmp_seq=3 ttl=255 time=0.150 ms ^C --- 1x.xx.0.22 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2334ms rtt min/avg/max/mdev = 0.082/0.411/1.003/0.419 ms [root@localhost /]#
二,mount挂载ntfs类型 1,安装软件Fuse以及Ntfs-3g 从http://fuse.sourceforge.net上下载源代码 wget http://easynews.dl.sourceforge.net/sourceforge/fuse/fuse-2.7.1.tar.gz 解压缩源代码: tar zxf fuse-2.7.1.tar.gz 编译和安装fuse源代码 cd fuse-2.7.1 ./configure --exec-prefix=/; make; make install Ntfs-3g安装 从网站http://www.tuxera.com/community/ntfs-3g-download/上下载源代码包: wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2011.4.12.tgz 解压缩安装: tar zxf ntfs-3g_ntfsprogs-2011.4.12.tgz 编译和安装ntfs-3g源代码。 cd ntfs-3g_ntfsprogs-2011.4.12 ./configure make make install