这是我第一次使用Ubuntu19.10。早些时候,我是macOS用户,而Windows是每个人都在操作的东西。今天,我通过一个USB棒沿Win10安装了Ubuntu,虽然在安装过程中dpkg实用程序有一些问题,但我似乎已经通过重新配置包管理器后安装来解决它。到目前为止,操作系统运行得很顺利,但似乎存在与/boot目录有关的问题。每次启动时,我都会收到以下警告:
# Warning 1
Could not scan some of the folders contained in "/boot"
Error opening directory '/boot/lost+fo
我碰巧删除了我系统上的/boot目录,而不是我应该删除的目录。我找到这是为了恢复它,但是apt --reinstall有问题,所以我决定手动删除和安装软件包。可能不是最聪明的想法,现在有两个破碎的图像,我不知道如何修复。
运行dpkg --audit告诉我
The following packages are only half configured, probably due to problems
configuring them the first time. The configuration should be retried using
dpkg --configure or
当我们执行此操作时(在linux 7.x上)
umount /grop/sdc
umount: /grop/sdc: target is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))
我们可以看到,坐骑在繁忙的时候失败了。
但当我们做remount的时候..。重装是成功的,如下所示:
mount -o rw,remount /grop/sdc
echo $?
0
太有趣了。
重新挂载是否使用类似( umount -l )
显然,我无意中更新了内核,而不是引导分区,从而破坏了我的Arch系统。因此,例如:
pacman -Q linux -> results in 4.20.arch1-1
uname -a -> results in 4.19.4-arch1-1-ARCH
我不知道这到底是怎么回事。如果我查看我的/boot目录,它有三个文件initramfs-linux-back.img、initramfs-linux.img和vmlinuz,其中前两个文件最近更新了,最后一个文件的日期是几周前我安装系统时。那么,什么是不同步的呢?我的vmlinuz与根分区中的内核不同步?
其结果是内核由于某种
我想将其他机器上的文件夹挂载到我的linux服务器上。为此,我使用以下命令
mount -t nfs 192.xxx.x.xx:/opt/oracle /
在执行时出现以下错误:
mount.nfs: access denied by server while mounting 192.xxx.x.xx:/opt/oracle
有人知道发生了什么事吗?我是linux新手。