centos7基本配置

ohmbukum發表於2022-01-08

1、centos7 安裝 xfce桌面

yum groupinstall -y "X Window system"

yum install -y epel-release

yum install -y lightdm

yum groupinstall -y xfce

vi /etc/lightdm/lightdm.conf 

修改[XDMCPServer]enabled=true  port=177 

新增[SeatDefaults] autologin-user=root    #需要登入的使用者名稱 autologin-user-timeout=delay

systemctl disable gdm && systemctl enable lightdm

yum install kde-l10n-Chinese

localectl  set-locale.UTF-8

yum install cjkuni*  設定系統成英文 XFCE就變英文,設定成中文,他就中文顯示,就是在登入介面(圖形模式下輸入賬號密碼那個介面)設定系統語言

vi  /etc/inittab  修改啟動模式 graphical.target:analogous to runleverl 5

systemctl set-default graphical.target

systemctl start lightdm

 

2、gedit 文字編輯

yum install gedit

 

3、todesk  遠端桌面比VNC好用

yum install https://dl.todesk.com/linux/todesk_3.2.2_x86_64.rpm

todesk  #預設自動啟動

 

4、google chrome  網頁瀏覽器

yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

/usr/share/applications/    修改/usr/bin/google-chrome-stable --no-sandbox

桌面預設瀏覽器右鍵屬性  改成命令 /usr/bin/google-chrome-stable --no-sandbox

 

5、clamav  防毒軟體

yum install clamav-server clamav-data clamav-update clamav-filesystem clamav clamav-scanner-systemd clamav-devel clamav-lib clamav-server-systemd -y

sed -i -e 's/^Example/#Example/' /etc/freshclam.conf

sed -i -e 's/^Example/#Example/' /etc/clamd.d/scan.conf

rm -f /var/lib/clamav/mirrors.dat

systemctl enable clamd@root centos7 開機自啟

freshclam

查殺病毒有兩個命令:clamscan和clamdscan,這兩個命令使用方法類似,在這裡主要介紹一下clamscan

yum install https://github.com/dave-theunsub/clamtk/releases/download/v6.13/clamtk-6.13-1.el7.noarch.rpm

 

6、nmap 檢測網路上的主機;檢測主機上開放的埠;檢測作業系統,硬體地址,以及軟體版本 檢測脆弱性的漏洞(Nmap的指令碼)

yum install nmap

yum install nmap-frontend


相關文章