1、重启Debian,在启动界面,按 E 键进入启动项编辑2、找到linux …… ro quiet这一行,把 **ro quiet** 改为 **rw single init=/bin/bash** ,按 Ctrl + X 键继续启动。3、输入命令判断是否有修改权限:mount | grep -w /输出是: ( rw,realtime ) 则表示您对文件系统具有实时读写权限。4、执行以下命令挂载具有读写权限的根文件系统mount -n -o remount,rw /5、修改密码passwd passwd {username}6、重启服务器reroot命令不可用
Pythonsudo apt install -y python3 python3-pip python3-venvsudo ln -s /usr/bin/python3 /usr/local/bin/python pip3 install -i https://mirrors.ustc.edu.cn/pypi/web/simple pip -U pip3 config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simplenode.js# 清除原自带阉割版本 sudo apt remove nodejs curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo bash - sudo apt-get install -y nodejs curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg
Xfce自动登录vim /etc/lightdm/lightdm.conf 找到相应行去掉注释autologin-user = YourDesiredAutoLoginUserName #用户名 autologin-user-timeout = 0声音root 下不能使用Sudoerapt-get install vim apt-get install sudo update-alternatives --config editor 选择 vim.tiny visudo 最后一行添加 adam ALL=(ALL:ALL) NOPASSWD:ALLvim /etc/sudoers 在root ALL=(ALL:ALL) ALL下,加入:chyang ALL=(ALL:ALL) NOPASSWD:ALLIP设置编辑网络配置文件 vim /etc/network/interface 静态IP设置iface eth2 inet static address 192.168.2.2 netmask 255.255.255.0 gateway 192.168.2.1动态
软件Vim and gVimapt install vim apt install -y gvimSciTEapt installl -y scitetabsize=4 #将tab键设置为4个空格 indent.size=4 #将tab键设置为4个空格 code.page=65001 #设置默认编码为utf-8 #code.page=0 #设置默认编码为utf-8 font.base=size:12 #编辑区的字体大小 font.small=size:10 #显示结果区的字体大小 line.margin.visible=1 #显示行号 line.margin.width=4 #行号宽度MPV视频播放器apt install -y mpv mpv 有标准播放器该有的所有的功能,支持字幕、自带视频解码器、极简的图形界面,且可以通过快捷键控制视频倍速播放或逐帧播放。 常用快捷键:Space:暂停/继续播放q:停止播放并退出s:截屏倍速播放:[:0.9倍速播放]:1.1倍速播放Backspace:恢复正常速度逐帧播放:,:上一帧.:下一帧WPS Office直接去官网下载:
镜像站https://mirrors.ustc.edu.cn/help/centos.htmlhttps://mirror.tuna.tsinghua.edu.cn/help/centos/# CentOS 7 TsingHua sed -e 's|^mirrorlist=|#mirrorlist=|g' \ -e 's|^#baseurl=http://mirror.centos.org/centos|baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos|g' \ -i.bak \ /etc/yum.repos.d/CentOS-*.repo # CentOS 7 USTC sudo sed -e 's|^mirrorlist=|#mirrorlist=|g' \ -e 's|^#baseurl=http://mirror.centos.org/centos|baseurl=https://mirrors.ustc.edu.cn/centos|g' \ -i.bak \
昼夜思想