文件操作 - package-system-locked
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/update-notifier/package-system-locked
编辑文件内容
#!/bin/sh # check if package system is locked # return 0 if unlocked, 2 if locked, 1 on error set -e for f in /var/lib/dpkg/lock /var/cache/apt/archives/lock \ /var/lib/apt/lists/lock /run/unattended-upgrades.lock; do [ -e $f ] || continue # fuser succeeds if there is at least one user if fuser $f; then exit 2 fi done exit 0
修改文件时间
将文件时间修改为当前时间的前一年
删除文件