Linux系統相關配置

2021-09-27 05:05:58 字數 2306 閱讀 5893

※修改主機名:

centos5/6

1、/etc/sysconfig/network

2、修改hosts檔案:/etc/hosts

centos7

1、/etc/hostname,或者hostnamectl set-hostname newhostname

2、修改host檔案

※將網絡卡改為預設開機自動啟動:

※檢視檔案或者目錄大小:du -sh 目錄名/檔名

※新加硬碟df不顯示,需要啟用:

echo ' - - - ' > /sys/class/scsi_host/host2/scan

echo ' - - - ' > /sys/class/scsi_host/host0/scan

echo ' - - - ' > /sys/class/scsi_host/host1/scan

※取passwd中使用者名稱和bash一樣的行:getent passwd|egrep "^([a-z]+):.*/\1$"

※echo centos| passwd --stdin luo>/dev/null

※centos7配置網絡卡名為eth0

/etc/sysconfig/network-scripts/ifcfg-ens33(或則eth0)

onboot改為yes

1、在/etc/default/grub裡面grub_cmdline後面加net.ifnames=0

或/boot/grub2/grub.cfg中第乙個linux 16開頭行尾net.ifnames=0

如果是dell伺服器(rpm -qi biosdevname)需另外加biosdevname=0

2、執行命令:grub2-mkconfig -o /boot/grub2/grub.cfg

如果是efi的需要執行grub2-mkconfig -o /boot/grub2/efi grub.cfg

3、重啟生效

※ubuntu配置網路

一、網絡卡名配置為eth0

1、在/etc/default/grub裡面grub_cmdline後面加net.ifnames=0

2、執行命令:grub-mkconfig -o /boot/grub/grub.cfg

3、重啟生效

二、配置動態ip

配置靜態ip

※防火牆

iptables -vnl檢視防火牆資訊

iptables -f清空防火牆策略

centos 6

關閉防火牆:service iptables stop

關閉防火牆下次開機不啟動:chkconfig iptables off

centos 7

systemctl stop firewalld關閉防火牆

systemctl disable firewalld下次開機不啟動防火牆

把某個ip加進防火牆:iptables -a input -s 192.168.33.107 -j reject

※centos7設定光碟自動掛載:

yum install autofs

systemctl start autofs

systemctl enable autofs

※關閉selinux的步驟:/etc/selinux/config中selinux=disabled

批量關閉主機列表中的selinux:

pssh -h /data/hostip.txt "sed -i.bak -r 's/^(selinux=).*/\1disabled/' /etc/selinux/config"

※關閉ssh反向解析:

###centos 6設定#####

sed -r -i.bak -e "s@^#(usedns)@\1@" -e "s@^#(gssapiauthentication)@\1@" /etc/ssh/sshd_config

關閉ssh反向解析,79行gssapiauthentication yes改為no,去掉#號,115行#userdns no前的#號去掉

重啟服務 service sshd restart

centos7設定##########

sed -r -i.bak -e 's@^(gssapiauthentication )yes$@\1no@' -e 's@^#(usedns )yes$@\1no@' /etc/ssh/sshd_config

重啟服務 systemctl restart sshd

※系統開機預設啟動模式:

centos6:cat /etc/inttab,改為3

centos7:systemctl set-default multi-user.target

Linux系統中rsync相關配置

linux系統中rsync相關配置 鄧強 第一步 服務端 touch etc rsyncd.conf vi etc rsyncd.conf 內容如下 全域性配置部分 secrets file etc rsyncd.secrets read only yes list yes uid root gid...

Linux系統Mini版配置相關

一 修改ip 進入到 cd etc udev rules.d 刪除 70 persisitent net.rules 重啟伺服器 init 6 測試 ping www.baidu.com 二 永久修改hostname 三 關閉防火牆 檢視防火牆狀態 service iptables status 開...

alpine系統相關配置

cat etc network inte ces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 10.0.0.130 netmask 255.255.255.0 gateway 10.0.0.254ca...