因為都用centos 很久沒用ubuntu 有點生疏筆記一下
Ubuntu server 18.04 安裝後的設定
1.網路手動ip設定
vim /etc/netplan/00-installer-config.yaml
dhcp設法
==============================================
network:
ethernets:
ens33:
dhcp4: true
version: 2
==========================================
手動設法 如.192.168.10.100
network:
ethernets:
ens192:
addresses: [192.168.10.100/24]
gateway4: 192.168.10.254
nameservers:
addresses: [8.8.8.8,168.95.1.1]
dhcp4: no
version: 2
=========================================
#重啟
sudo netplan apply
2.putty 登入出現Access denied
vim /etc/ssh/sshd_config
將裡面PermitRootLogin prohibit-password
取消註解改PermitRootLogin yes
存檔跳出
重啟
/etc/inti.d/ssh restart
3.關閉防火牆
查防火牆狀態
sudo ufw status
防火牆預設是關閉:
Status: inactive
如果防火牆已經開啟:
Status: active
防火牆開啟
sudo ufw enable (後面詢問按y就會開啟)
防火牆關閉
sudo ufw disable
4.查看SELinux狀態
sestatus
如果無指令安裝
apt install policycoreutils
就可查
SELinux status: disabled
4.系統時區查詢及設定
查詢
timedatectl
設定台灣時區
timedatectl set-timezone Asia/Taipei
5.Cockpit 可參考安裝套件
可在Web 介面的應用程式,可用來管理Ubuntu伺服器並監視和調整系統資源
sudo apt install cockpit
安裝後打去遊覽器 ip:9090 輸入跟系統一樣帳密就可以連進去
6.history時間戳記
vim /etc/bash.bashrc
#讓系統記錄每條歷史命令的執行時間。注意最後的 " 前面要放個空格
export HISTTIMEFORMAT="%y-%m-%d_%H:%M:%S "
#保存歷史命令條數
export HISTSIZE=2000
編寫完執行生效
source /etc/bash.bashrc
沒有留言:
張貼留言