包含标签:debian 的文章
-
Debian更换国内源加速
地址 https://mirrors.ustc.edu.cn/debian/ 说明 Debian 软件源 收录架构 Debian 支持的所有架构,如 AMD64 (x86_64), Intel x86, ARM, MIPS, ppc64el, s390x 等 收录版本 Debian Old Stable, Stable, Testing, Unstable(sid) 当前 Stable 为 Debian 11,代号为 Bullseye 使用说明 警告 操作前请做好相应备份 一般情况下,将 /etc/apt/sources.list 文件中 Debian 默认的源地址 http://deb.debian.org/ 替换为 http://mirrors.ustc.edu.cn 即可。 可以使用如下命令: sudo sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g……Jays 2022-01-110 -
Azure ubuntu虚机获取root权限
原文地址:Azure ubuntu虚机获取root权限_baidu_31718835的博客-CSDN博客 1.切换用户 sudo su - 2.设置root密码 运行下面的命令,并输入两次设置的root密码 sudo passwd root ps:这里密码要记录一下,之后要用这个密码登录虚机的 在这一步一般来说已经获取到root了,但是现在使用root账户和密码并不能用ssh登录,这时候需要修改sshd_config文件 3.修改配置文件 这里使用vim修改sshd_config文件 sudo vim /etc/ssh/sshd_config 找到下面这行代码,不要去修改保持注释状态 #PermitRootLogin prohibit-password // 允许root登录,但是禁止r……Jays 2022-01-060 -
举一反三,Debian利用buster-backports源更新
近期好多PT站貌似都进行了升级,或者是cloudflare的部分CDN节点被封了 Flexget突然间不能访问PT站的RSS的,tracker也连接不正常,提示 curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to tracker.XXXX.XXX:443 有说是curl版本的问题,所以想升级下curl,结果debian10默认源的curl为最新 搜了下,发现buster-backports源里的版本比较新 所以找到了下面的文章,直接上步骤 添加buster-backports源-更新源-安装 nano /etc/apt/sources.list #deb http://deb.debian.org/debian buster-backports main apt update apt……Jays 2021-11-060 -
debian升级openssl
方法一: apt install cmake wget perl wget https://www.openssl.org/source/openssl-1.1.1i.tar.gz tar -zxvf openssl-1.1.1i.tar.gz cd openssl-1.1.1i ./config --prefix=/usr/local/openssl ./config -t make && make install mv /usr/bin/openssl /usr/bin/openssl.old mv /usr/lib64/openssl /usr/lib64/openssl.old mv /usr/lib64/libssl.so /usr/lib64/libssl.so.old mv /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1.old cp /usr/local/openssl/lib/libcrypt……Jays 2021-10-301 -
如何在 Linux 上一次性批量重命名一组文件?
原位地址:知乎:如何在 Linux 上一次性批量重命名一组文件?-程序员良许 在 Linux 中,我们对文件进行重命名一般都会使用到 mv 命令,这在对单个文件重命名时非常方便。但是,若我们想要对一组文件进行重命名,mv 就有些乏力了。不过没关系,今天我们来介绍一个好用的可以实现批量重命名的命令—— rename 命令。 下面我们来详细介绍 rename 命令的用法。 与 mv 命令不同,rename 命令不是简单地指定新旧文件名就行的。相反,它使用与 Perl 类似的正则表达式。我们先来看下例子。 $ rename 's/old/new/' this.old $ ls this* this.new……Jays 2021-10-160 -
armbian更新后auditd提示错误解决方法
Aug 23 05:35:52 raspberrypi systemd[1]: Starting Security Auditing Service… Aug 23 05:35:52 raspberrypi auditd[3146]: Error - audit support not in kernel Aug 23 05:35:52 raspberrypi systemd[1]: auditd.service: Control process exited, code=exited, status=1/FAILURE Aug 23 05:35:52 raspberrypi auditd[3146]: Cannot open netlink audit socket Aug 23 05:35:52 raspberrypi systemd[1]: auditd.service: Failed with result ‘exit-code’. Aug 23 05:35:52 raspberrypi auditd[3146]: The audit daemon is exiting. ……Jays 2021-08-280 -
甲骨文ARM DD重装Debian10,并升级5.10内核
原文地址:猫直立行走 -甲骨文ARM DD重装Debian10,并升级5.10内核 https://maofun.com/1782.html 新建实例时选的 ubuntu 20.4,非 mini 版 1.curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh 2.chmod a+rx debi.sh 3.sudo ./debi.sh --architecture arm64 --user root --password password 设置默认root的密码为password,登陆成功之后记得自己输入passwd修改密码!!! 没报错的话继续运行: sudo shutdown -r now 更新内核至5.10 1、添加 backports 源 echo "deb http://deb.debian.org/debian $(lsb_……Jays 2021-07-310 -
Debian 10 修改时区设置
错误的: 执行 tzselct 命令,只能当次有效,重启后恢复默认。 echo “TZ=‘Asia/Shanghai’; export TZ” >> ~/.profile ,可能以前有用,但在新版Debian上已经失效了。 正确的: sudo cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtimeJays 2020-12-120 -
OpenMediaVault weakref (Python) Error When Updating
When trying to perform apt-get update on OMV 4.1.27-1 (Arrakis), I received the following error Hit:10 https://packages.openmediavault.org/public arrakis InRelease Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x7fd4ea277598> Traceback (most recent call last): File "/usr/lib/python3.5/weakref.py", line 117, in remove TypeError: 'NoneType' object is not callable Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remo……Jays 2020-11-210