添加了新驱动器,但它被卡为“只读文件系统”

添加了新驱动器,但它被卡为“只读文件系统”

购买了新驱动器。期望安装起来很容易……

不需要使用命令来完成用户每天应该能够完成的事情,所以我遵循了这个 GUI 指南:

https://www.zdnet.com/article/how-to-automount-a-drive-in-linux-the-gui-way-with-gnome/

我设法通过应用程序将文件写入驱动器。但是,当我稍后尝试更改文件时,它说这是一个只读文件系统:

sudo chmod 777 file_name
chmod: changing permissions of file_name: Read-only file system

当我尝试更改已安装文件夹的权限时,也遇到了同样的情况。

有趣的是,当我打开 GParted 时,我收到新驱动器的错误:

在此处输入图片描述

并且驱动器未显示在下拉菜单中。

磁盘应用程序显示以下内容:

在此处输入图片描述

有人可以提供一个简单的解决方案,让我只使用 GUI 吗?

这是针对 Ubuntu 22.04 的

评论更新:

findmnt -T /media/ssd
TARGET     SOURCE    FSTYPE OPTIONS
/media/ssd /dev/sda1 ext4   ro,nosuid,nodev,relatime

findmnt --fstab
TARGET      SOURCE                                                 FSTYPE OPTIONS
/           UUID=3983f8b5-04f5-4eb4-8356-5f749f7cbaa6              ext4   errors=remount-ro
/boot/efi   UUID=9450-FE9C                                         vfat   umask=0077
none        /swapfile                                              swap   sw
/media/ssd/ /dev/disk/by-uuid/c1189942-b1c5-432f-815b-cdcb40054877 auto   nosuid,nodev,nofail,x-gvfs-show

其他:

sudo fsck -y /dev/sda1 
fsck from util-linux 2.37.2
e2fsck 1.46.5 (30-Dec-2021)
fsck.ext2: Input/output error while trying to open /dev/sda1

The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem.  If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>
 or
    e2fsck -b 32768 <device>

答案1

尝试运行:

sudo umount /dev/sda1
sudo fsck -y /dev/sda1 
sudo mount /dev/sda1 /media/sdd 
sudo chmod -Rf 777 /media/sdd

相关内容