ubuntu1804系统设置在哪里_Ubuntu1804(Server版)安装及使用
1 系統安裝操作步驟
OS Version:1804
鏡像下載:http://cdimage.ubuntu.com/releases/
1.1 選擇安裝語言:
1.2 安裝界面選擇第一項進行系統安裝
1.3 選擇安裝過程中使用的語言,也是系統安裝完后使用的默認語言
1.4 選擇地區,這里先選擇最后一項other,然后回車再選擇Asia,最后選擇China
1.5 選擇語言環境
1.6 鍵盤布局檢查,選擇NO
1.7 選擇美式鍵盤
1.8 確認使用美式鍵盤
1.9 配置主機名
1.10 創建一個普通用戶和為其設置密碼
1.11 確認時區
1.12 選擇磁盤分區的方法,這里選手動分區
1.13 選擇磁盤
1.14 確認對磁盤分區
1.15 對磁盤分區
1.16 創建新分區
1.17 指定分區大小,這里將磁盤的全部大小劃分給該分區
1.18 選擇分區類型,這里選主分區
1.19 分區完成
1.20 完成分區并寫入數據
1.21 確認寫入磁盤
1.22 是否使用代理,這里不填
1.23 是否自動更新,這里選擇默認,不自動更新
1.24 選擇安裝組件,選擇對應需要安裝的組件,然后按空格鍵,這里選擇OpenSSH Server
1.25 將GRUB引導加載程序安裝到主引導記錄
1.26 完成安裝,確認重啟服務器
1.27 登錄系統
2 系統基礎配置
官方文檔:https://help.ubuntu.com/
2.1 更改主機名
# cat /etc/hostname
hechunping
2.2 更改網卡名稱為eth*
# sed -i '/GRUB_CMDLINE_LINUX=/s/"$/net.ifnames=0 biosdevname=0"/' /etc/default/grub
# update-grub
Sourcing file `/etc/default/grub'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.15.0-55-generic
Found initrd image: /boot/initrd.img-4.15.0-55-generic
done
# reboot
# sed -i 's/ens33/eth0/' /etc/netplan/01-netcfg.yaml
2.3 配置root遠程登錄
# 默認情況下,ubuntu不允許root??遠程ssh,如果有實際場景需要允許root??遠程ssh,則需要設置root密碼,并且編輯/etc/ssh/sshd_config?件修改如下:
~$ sudo vim /etc/ssh/sshd_config
32 #PermitRootLogin prohibit-password #默認為禁?登錄
33 PermitRootLogin yes #改為允許登錄
57 #PasswordAuthentication yes
58 PasswordAuthentication yes #打開密碼認證,其實默認就是允許通過密碼認證登錄
~$ sudo su - root #切換到root??環境
~# passwd #設置密碼
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
~# systemctl restart sshd #重啟ssh服務并測試root??遠程ssh連接
2.4 網絡配置
官方文檔:https://netplan.io/
Ubuntu 從 17.10 開始,已放棄在 /etc/network/interfaces ?固定IP的配置,?是改成 netplan ?式,配置?件是:/etc/netplan/01-netcfg.yaml
# ubuntu 17.04及之前的靜態IP配置?式:
~# cat /etc/network/interfaces
root@hechunping:~# cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto eth0 #?卡?啟動,寫??要配置IP的實際?卡名稱
iface eth0 inet static #配置靜態IP,寫??要配置IP的實際?卡名稱
address 172.18.3.12 #IP地址
netmask 255.255.0.0 #掩碼
gateway 172.18.0.1 #?關
dns-nameservers 223.6.6.6 #DNS
dns-nameservers 223.5.5.5
#重啟?絡服務
~# /etc/init.d/networking restart
~# systemctl restart networking.service
2.4.1 單網卡靜態IP地址
root@hechunping:~# cat /etc/netplan/01-netcfg.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: no
addresses: [192.168.7.132/24]
gateway4: 192.168.7.2
nameservers:
addresses: [223.6.6.6]
root@hechunping:~# netplan apply
2.4.2 配置多網卡靜態IP
# cat /etc/netplan/01-netcfg.yaml
# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: no
addresses: [172.20.7.34/16]
gateway4: 172.20.0.1
nameservers:
addresses: [223.6.6.6]
eth1:
dhcp4: no
addresses: [192.168.7.34/24]
routes:
- to: 172.20.0.0/16
總結
以上是生活随笔為你收集整理的ubuntu1804系统设置在哪里_Ubuntu1804(Server版)安装及使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 国科大学习资料--最优化计算方法(王晓)
- 下一篇: ubantu桌面,compiz特效和配置