我在使用 Ubuntu 13.04 时遇到了问题netflix-desktop
。起初,当我尝试从终端运行它时,我收到一条消息,内容类似于no module xattr
。安装 后xattr
,我现在收到以下消息:
It appears that you do not have extended file system attributes enabled.
Please enable the user_xattr option for your filesystem and try again.
我发现有几个帖子讨论这个问题(这里例如),其中大多数似乎同意修改/etc/fstab/
为包括user_xattr
。我已经这样做了,但仍然收到相同的消息。
有什么想法吗?
编辑:
这是我这样做的输出sudo mount
/dev/sdb2 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
gvfsd-fuse on /run/user/usrname/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=my_usrname)
并且,如果它有用,则内容为/etc/fstab/
:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda2 during installation
UUID=263e92a2-9998-4386-8d3b-3d6ea3c8c399 / ext4 errors=remount-ro, user_xattr 0 1
# swap was on /dev/sda3 during installation
UUID=e34a5af0-13f0-40c4-987e-34ba143faba5 none swap sw 0 0
~
答案1
fstab 字段以空格分隔。您需要删除 之前的空格user_xattr
。
然后运行
sudo update-initramfs -u
然后重新启动。
然后看看它是否出现在挂载点。