当前位置:首页 > 技术教程 > 正文内容

Ubuntu系统常用命令备忘

admin1年前 (2024-02-21)技术教程1213

安装时软件源改为清华源

sudo sed -i "s@http://.*archive.ubuntu.com@https://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list

sudo sed -i "s@http://.*security.ubuntu.com@https://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list

sudo apt update


开启root用户登录


设置root用户密码

sudo passwd root


启用root

sudo passwd -u root


修改文件

vim /etc/ssh/sshd_config

将以下代码注释

#PermitRootLogin prohibit-password


添加

PermitRootLogin yes

保存重启SSH服务

service ssh restart

安装显卡驱动

ubuntu-drivers devices

sudo ubuntu-drivers autoinstall

查看网卡速率

ethtool enp10s0

扫描二维码推送至手机访问。

版权声明:本文由59519发布,如需转载请注明出处。

本文链接:https://59519.com/?id=47

“Ubuntu系统常用命令备忘” 的相关文章

Dell R720服务器bios升级报错解决方法

Lifecycle Controller 未启用。 要启用 Lifecycle Controller,请重新引导服务器。 在 POST 期间,请按 F2 进入“系统设置”。 转到 iDRAC 设置-> Lifecycle Controller,选择“启用”,然后保...

centos进入救援模式

centos进入救援模式

因某些修改操作,导致系统重启后无法正常启动,此时需要进入救援模式,修复错误配置即可。1 重启系统后,进入grup引导页面,选中第一项然后按“e” 进入编辑模式:2 通过↓键找到linux16开头行,如所示“ro”处(ro表示只读),将ro替换为rw init=/sysroot/bin/sh,然后按c...

win10窗口最大化后无法拖动解决方法

win10窗口最大化后无法拖动解决方法

当关闭设置->多任务处理->贴靠窗口时,最大化窗口无法使用鼠标拖动当打开设置->多任务处理->贴靠窗口时,最大化窗口可以使用鼠标拖动,如切换屏幕等...

ubuntu编辑模式下删除键、上下左右键失效

解决办法1、执行删除命令sudo apt-get remove vim-common2、重新安装新的vim编辑器sudo apt-get install vim...

ubuntu20.04 配置root登录和ssh root登录

ubuntu20.04 配置UI root登录和ssh root登录 一、开启root用户sudo passwd root二、修改配置文件 2.1sudo vi /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf增...

Centos开机提示Give root password for maintenance(or press Control-D to continue):

Centos开机提示Give root password for maintenance(or press Control-D to continue):

输入系统密码登录然后vim /etc/fstab,将挂在失败的逻辑卷从fstab中注释掉,然后再次执行mount -o remount,rw / mount -a reboot...