linux新裝系統優化

2021-09-20 23:19:30 字數 4030 閱讀 7126

linux系統安裝環境優化

linux新系統安裝需要:

1

2

3

4

5

6

7

8

9

10

base

editors

development-librarys

development -tools

x-software-development

system-tools

基本系統:基本、效能工具、除錯工具

開發:開發工具

伺服器:系統管理工具

系統管理:snmp、系統管理

2.用下面命令把yum更新到最新

1

2

rpm --import/etc/pki/rpm-gpg/rpm-gpg-key*

yum upgrade

3.安裝必要的軟體包

1

yum –yinstalllrzsz systat

4.清理所有開機自啟動的服務|新增需要的開機服務

1

2

3

4

5

setup 可以在shell圖形終端裡配置開機啟動服務

ntsysv也可以在shell終端圖形配置開機啟動服務

chkconfig –list|grep3:on

只需啟動4個服務 crond 、network、 sshd、 syslog

5.更改ssh登陸配置

1

2

3

4

5

6

7

8

更改前備份:cp/etc/ssh/sshd_config/etc/ssh/sshd_config.bak

vi/etc/ssh/ssh_config

#####by darren#####

port 52113  更改埠號

permit root login  no                      禁止root遠端登陸

permit empty passwords no         禁止空密碼登陸

use dns no                                       不使用dns

forwardx11trusted no                   不使用x圖形**

6.將普通使用者加入到sudo管理

12

3

4

visudo

root                     all=(all)all

darren         all=(all)all

在root那行新增darren all=all(all)。 darren就可以使用sudo獲得root的許可權。

7.普通使用者的環境變數

1

2

3

4

5

6

echo$path檢視環境變數

vi  ~/.bash_profile

把   :/usr/local/sbin:/sbin:/usr/sbin新增到環境變數裡

path=$path:$home/bin:/home/darren/scripts:/usr/local/sbin:/sbin:/usr/sbin

exportpath

source~/.bash_profile 使配置生效。

8.中文顯示亂碼

1

2

3

4

vi/etc/sysconfig/i18n

修改配置檔案 lang=」zh_cn.gb18030」

source/etc/sysconfig/i18n使配置檔案生效

echo$lang 檢視系統語言

9.加大伺服器檔案描述符

1

2

3

vi/etc/security/limits.conf

末尾加   *      -      nofile            65535

tail-1/etc/security/limits.conf

10.調整核心引數檔案 /etc/sysctl.conf

1

2

net.ipv4.tcp_fin_timeout=2w

sysctl   –p 使配置檔案生效

新裝的Linux服務系統安裝MySQL

在安裝mysql之前先執行更新指令 1sudo apt get update 效果圖如下 接著執行安裝mysql指令 1sudo apt get install mysql server 然後會提示輸入密碼,再次確認密碼即可。接著執行安裝mysql的客戶端指令 1sudo apt get insta...

linux 2 新裝linux配置

vi etc susconfig network scripts ifcfq ens33 編輯配置檔案 最後一行改為yes service network restart 重啟網路服務 再執行ip addr就會顯示內網ip了 yum install net tools 執行命令安裝 首先關閉系統將網...

Linux 新裝修改

配置網路 cd etc sysconfig network scripts vi ifcfg eno16777736 en開頭 bootproto static 啟用靜態ip位址 onboot yes 開啟自動啟用網路連線 ipaddr0 192.168.21.128 設定ip位址 prefixo0...