BLCL的博客小馆

标签 · ubuntu

首页

关于

归档

bugaptapt updatePermission deniedcannot create /dev/null/dev/nullubuntu

apt update 出现 cannot create /dev/null: Permission denied

解决方法原因是 /dev/null 设备可能被常规文件替换了,重新创建即可方法一重启就好了,重启后该设备会自动重新创建方法二手动重新创建该设备1rm -f /dev/null; mknod -m 666 /dev/null c 1 3重建之后看起来就正常了12345Hit:1 http://mirrors.tencentyun.com/ubuntu focal InReleaseHit:2 http://mirrors.tencentyun.com/ubuntu focal-security InReleaseHit:3 http://mirrors.tencentyun.com/ubuntu focal-updates InReleaseHit:4 http://ppa.launchpad.net/al..

更多