Debian 准备工作
2023年2月2日小于 1 分钟约 228 字...
Debian 准备工作
注意
该文档有待补充和完善
https://www.debian.org/doc/manuals/debian-faq/getting-debian.zh-cn.html
#修改登录账户密码
passwd
# 查看 Shell
cat /etc/shells
echo $SHELL
#改为使用 bash
chsh -s /bin/bash
# 查看linux 版本
lsb_release -a
# 修改 hostname 添加
vim /etc/hostname
vim /etc/hosts
修改 ssh 配置
vim /etc/ssh/sshd_config
PermitRootLogin yes
StrictModes no
PubkeyAuthentication yes
PasswordAuthentication yes
UsePAM yes
TCPKeepAlive yes
ClientAliveInterval 60
ClientAliveCountMax 3
然后重启 ssh
service ssh restart
保持系统最新
sudo apt update
sudo apt upgrade
换源
https://mirrors.tuna.tsinghua.edu.cn/help/debian/
查看文件数量限制
ulimit -Hn
修改时区
timedatectl set-timezone Asia/Shanghai
安装一些必要软件
# 安装 配置 git
apt install git
## 安装 配置 nginx
apt install nginx
## 安装 screenfetch
sudo apt install screenfetch
## 安装 nvm
https://github.com/nvm-sh/nvm
## 安装 golang
https://studygolang.com/dl
## 安装 mongodb
https://www.mongodb.com/docs/mongodb-shell/install/
命令行上色
vim ~/.bashrc
# 取消对应的注释就好了
重启
reboot
安装证书
你认为这篇文章怎么样?
- 0
- 0
- 0
- 0
- 0
- 0