|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果你让他去用linux搭建一个web服务器,做一个linux网关,他就什么都不会了.他们把时间都浪费在了版本的转换上了.
1.安装网卡
呆板太新,以致于现有的Linux版本没法认出,好比呆板找不到网卡,这时候候怎样办呢?
别急,起首你必要晓得网卡是甚么型号的,以本实行室新购进的电脑为例,它的网卡是集成的,型号是RealtekRTL8168/8111PCI-EGigabitEthernetNIC。然后我们到Realtek的官方网站往下载响应的Linux驱动程序r8168-8.005.00.tar.bz2,依照申明安装。
Unpackthetarball:
#tarvjxfr8168-8.aaa.bb.tar.bz2
Changetothedirectory:
#cdr8168-8.aaa.bb
Ifyouarerunningthetargetkernel,thenyoushouldbeabletodo:
#makecleanmodules(asrootorwithsudo)
#makeinstall
#/sbin/depmod-a
#/sbin/insmod./src/r8168.ko(orr8168.oinlinuxkernel2.4.x)
Youcancheckwhetherthedriverisloadedbyusingfollowingcommands.
#/sbin/lsmod|grepr8168(看看有无加载网卡驱动)
#/sbin/ifconfig?Ca(看看有无相干网卡被启动的信息)
Ifthereisadevicename,ethX,shownonthemonitor,thelinux
driverisloaded.Then,youcanusethefollowingcommandtoactivate
theethX.
#ifconfigethXup
,whereX=0,1,2,...
这里也能够经由过程体系→办理→收集来设置IP地点等,最初激活。
1.Setmanually
a.SettheIPaddressofyourmachine.
#ifconfigethX"theIPaddressofyourmachine"
b.SettheIPaddressofDNS.
Insertthefollowingconfigurationin/etc/resolv.conf.
nameserver"theIPaddressofDNS"
c.SettheIPaddressofgateway.
#routeadddefaultgw"theIPaddressofgateway"
2.Setbydoingconfigurationsin/etc/sysconfig/network-scripts
/ifcfg-ethXforRedhatandFedora,or/etc/sysconfig/network
/ifcfg-ethXforSuSE.Therearetwoexamplestosetnetwork
configurations.
a.FixIPaddress:
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
TYPE=ethernet
NETMASK=255.255.255.0
IPADDR=192.168.1.1
GATEWAY=192.168.1.254
BROADCAST=192.168.1.255
2.修正:#vi/etc/hosts,在该文本中,增添两行:
127.0.0.1localhost.localdomainlocalhost
192.168.4.101node3(依据呆板自己情形设置)
修正:vi/etc/hosts.equiv,增添一行:(假如没有该文本,可创建一个)
node3
3.启动ssh服务
年夜部分的Linux版本应当城市自带该程序
#ssh-keygen
#cd.ssh
#cpid_rsa.pubauthorized_keys
#sshnode3(假如乐成,会显现前次上岸的工夫,node3是主机名)
附加信息:
ifupeth0看看可否启动eth0
lsmod看看有无加载网卡驱动
dmesg看看有无网卡启动时的毛病信息
</p>
要多google,因为我不可能,也不可以给你解答所有内容,我只能告诉你一些关键点,甚至我会故意隐瞒答案,因为在寻找答案的过程中。 |
|