《Linux基础优化与常用软件包》

Linux基础优化(Kylin系统)

1、安装扩展仓库

cd /etc/yum.repos.d

vim

wget -o https://mirrors.aliyun.com/repo/epel-7.repo

#安装完成后检查是否安装成功

yum repolist

2、优化ssh服务

vim /etc/ssh/sshd_config

#修改端口号,禁止root用户登录等等

3、优化防火墙

systemctl stop firewalld

systemctl disable firewalld

4、 加大文件描述字符集

echo "*_nofile 65535" >> /etc/security/limits.conf

#检查文件最后一行看是否加入成功

tail -1 /etc/security/limits.conf

5、优化字符集

vim /etc/locale.conf

zh_CN.UTF-8-------->en_US.UTF-8

source /etc/locale.conf #使文件生效

6、同步时间

yum -y install ntpdate

#同步时间

ntpdate ntp2.aliyun.com

7、安装常用软件

yum install -y tree telnet vim wget bash-completion lrzsz net-tools sysstat iotop iftop htop unzip nc nmap telnet bc psmisc httpd-tools bind-utils nethogs expect

#检查运行命令不提示找不到命令即可

8、配置命令行参数

#配置

echo "export PS1='[\[\e[34;1m\]\u@\[\e[0m\]\[\e[32;1m\]\H\[\e[0m\]\[\e[31;1m\] \w\[\e[0m\]]\\$ '" >>/etc/profile

#生效

source /etc/profile

#把配置命令行的命令追加到/etc/profile中.

#重新连接Linux就生效.

#也可以通过查看/etc/profile文件内容进行检查

cat /etc/profile看最后一行

相关推荐
奋斗的蛋黄7 分钟前
硬链接(Hard Link)与软连接(Symbolic Link)核心解析
linux
先做个垃圾出来………20 分钟前
DeepDiff差异语义化特性
服务器·前端
i建模31 分钟前
Omarchy挂载windows磁盘
linux·运维·windows
林姜泽樾38 分钟前
linux基础第一章,linux的介绍和它和windows的区别
linux·运维·计算机网络·安全·网络安全
nudt_qxx43 分钟前
Ubuntu 26.04 LTS“坚毅浣熊”(Resolute Raccoon) 新特性前瞻
linux·数据库·ubuntu
白云偷星子1 小时前
RHCSA笔记6
linux·笔记
2401_849339171 小时前
LVS实验
服务器·网络·lvs
i建模1 小时前
在 **Omarchy**(基于 Arch Linux 的发行版)中检查当前内核是否支持 NTFS 文件系统
linux·运维·服务器
bwz999@88.com1 小时前
CentOS 7安装ollama
linux·centos·ollama
Emotional。1 小时前
AI Agent 开发实战:用 LangChain 构建智能邮件助手
linux·服务器·网络·人工智能·python·langchain