Linux Ubuntu服务器管理

一、系统重装

重装系统链接配置如下:【精选】0.0 Windows + Linux(Ubuntu20.04) 超简单的双系统安装_boot loader installation 安装在哪-CSDN博客

重装后需要配置ip并固定

需要使用工具:如何在 Linux 上使用网络配置工具 Netplan - 知乎 (zhihu.com)

 ifconfig

静态ip 

配置ssh

# linxu 下的ssh安装

sudo apt update        #更新数据
sudo apt upgrade        #更新软件
sudo apt-get install ssh


# 更新安装完毕后
sudo apt-get  install openssh-server 
sudo apt install openssh-server  #下载安装ssh服务的服务器
sudo apt install openssh-client  #下载安装ssh服务的客户端

# 检查ssh是否存在
ps -e|grep ssh 

# 启动ssh
ssh localhost
/etc/init.d/ssh start

#  设置开机自启动
sudo systemctl enable ssh

# 设置好后重启
reboot



二、账号配置

# 创建账户
sudo useradd -m -s /bin/bash userName

# 账户密码
sudo passwd userName

# 删除账号
sudo userdel -r userName

三、NVIDIA显卡驱动配置

你可能感兴趣的:(服务器,linux,ubuntu)