美文网首页我用 Linux
Ubuntu Server安装配置

Ubuntu Server安装配置

作者: b760dafd8df2 | 来源:发表于2019-02-14 08:50 被阅读1次

安装

只需要选择win32diskimager制作U盘安装程序,就可以正常安装Ubuntu Server。其他软件都不行。
或者用grub4dos加载镜像后,在开始界面按F6,在下方输入:

installcdrom-detect/try-usb=true

Linux交换分区可为物理内存的两倍

网络

/etc/network/interfaces

auto eth0
iface eth0 inet static
    address 192.168.1.10
    netmask 255.255.255.0
    gateway 192.168.1.1

域名服务器设置

/etc/resolv.conf
search localdomain
nameserver 192.168.1.1
nameserver 192.168.1.2

关网卡ifdown eth0
启网卡ifup eth0

apt-cache search 软件名 搜索软件

apache优化:压缩,禁用不必要的日志,使用缓存

相关文章

网友评论

    本文标题:Ubuntu Server安装配置

    本文链接:https://www.haomeiwen.com/subject/sbjdeqtx.html