您的位置:首页 > 其它

ubuntu server 安装配置记录1

2010-10-21 16:12 435 查看
1 安装完成后启动提示

Boot args (cat /proc/cmdline)

-Check root delay = (did the system wait long enough?)
-Check root=(did the system wait for the right device?)
-Missing modules (cat /proc/modules; ls /dev)

...

(initramfs)

录入exit 启动成功

配置网络(临时)

sudo ifconfig eth0 192.168.6.117 netmask 255.255.255.0

sudo route add default gw 192.168.6.1

配置网络(永久)

sudo vim /etc/network/interfaces

iface eth0 inet static
address 192.168.6.117
netmask 255.255.255.0
network 192.168.6.0
broadcast 192.168.6.255
gateway 192.168.6.1
dns-nameservers 202.102.192.68

sudo vi /etc/resolv.conf

nameserver 202.102.192.68

sudo apt-get update

sudo apt-get install vim

修复启动BUG

sudo vim /etc/default/grub

add rootdelay=xx to this line:

GRUB_CMDLINE_LINUX_DEFAULT="rootdelay=60 quiet splash"

sudo update-grub

openssl

sudo apt-get instal openssl-server

apache2

sudo apt-get install apache2
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: