Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
10-10-2022, 07:26 PM
|
#1
|
Member
Registered: Jul 2018
Location: South of Brazil
Distribution: Linux Mint 19,2
Posts: 40
Rep: 
|
External SSD with no Write mode just read permmited
Guys, I have an SSD which I connect via usb.
It apparently mounts and shows me the directories inside it.
Only it won't let me write in it anymore.
When I run the command:
sudo lsblk -o NAME,TYPE,FSTYPE,SIZE,LABEL,UUID,MOUNTPOINT
Eu obtenho o seguinte
NAME TYPE FSTYPE SIZE LABEL UUID MOUNTPOINT
loop0 loop squashfs 4K /snap/bare/5
loop1 loop squashfs 114.9M /snap/core/13741
loop2 loop squashfs 115M /snap/core/13886
loop3 loop squashfs 62M /snap/core20/1611
loop4 loop squashfs 63.2M /snap/core20/1623
loop5 loop squashfs 389.7M /snap/qt515-core20/25
loop6 loop squashfs 864K /snap/glate/24
loop7 loop squashfs 91.7M /snap/gtk-common-themes/1535
sda disk 119.2G
├─sda1 part vfat 476M 1657-EAC9 /boot/efi
├─sda2 part swap 7.5G dfbbfaff-33f4-4ca8-b9a8-1a55c779cdcd [SWAP]
└─sda3 part ext4 111.3G 72b3e670-264e-4ac3-bd72-d87f0d994a28 /
sdb disk 931.5G
├─sdb1 part ext4 465.7G 304bf668-1d3d-4eab-b1b5-8e9b9b784676 /home
└─sdb2 part vfat 465.9G 1619-561E /windows
sdc disk 465.8G
├─sdc1 part vfat 475.9M EFB2-F4F9
├─sdc2 part vfat 334G SAMSUNG_FAT F371-A281 /media/nogueira/SAMSUNG_FAT
├─sdc3 part ext4 130.8G HD_Externo_M3 7a59695c-7ca8-463a-9699-f24c77e1c507 /media/nogueira/HD_Externo_M3
└─sdc4 part swap 500M 41aedc32-07b2-4831-a0f7-6f6be98bcd6f
sdd disk 465.8G
├─sdd1 part vfat 475.9M 5BFE-8B2F
├─sdd2 part ext4 147G 49f3d240-a3f5-43ae-b794-efcfbeecfa83 /media/nogueira/49f3d240-a3f5-43ae-b794-efcfbeecfa83
├─sdd3 part swap 8.8G f8875c75-d0d3-4c21-8bc5-97d38f5a7c6c
└─sdd4 part ext4 309.5G Timeshift 22753fc7-e83a-46d0-800d-2daf44a994d6 /media/nogueira/Timeshift
sde disk 1.9T
└─sde1 part vfat 1.9T SSD 3D2C-AF31 /media/nogueira/SSD
mmcblk0 disk 1.9G
└─mmcblk0p1 part vfat 1.9G 1711-59D4 /media/nogueira/1711-59D4
But when I go to check fstab it doesn't show up there:
# /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/sda3 during installation
UUID=72b3e670-264e-4ac3-bd72-d87f0d994a28 / ext4 noatime,errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=1657-EAC9 /boot/efi vfat umask=0077 0 1
# /home was on /dev/sdb1 during installation
UUID=304bf668-1d3d-4eab-b1b5-8e9b9b784676 /home ext4 noatime,defaults 0 2
# /windows was on /dev/sdb2 during installation
UUID=1619-561E /windows vfat utf8,umask=007,gid=46 0 1
# swap was on /dev/sda2 during installation
UUID=dfbbfaff-33f4-4ca8-b9a8-1a55c779cdcd none swap sw 0 0
Even if I try to mount it with the command:
nogueira@Nitro5:~$ sudo mount /dev/sde1 /media/nogueira/SSD
mount: /media/nogueira/SSD: /dev/sde1 already mounted in /media/nogueira/SSD.
It informs me that the directory is already mounted in /media/nogueira/SSD
How could i solve this?
I Thank in advance for any help.
|
|
|
10-10-2022, 08:14 PM
|
#2
|
LQ Guru
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,896
|
What is the output of
when run against that partition?
|
|
|
10-11-2022, 12:59 AM
|
#3
|
Member
Registered: Jan 2022
Location: Limassol, Cyprus
Distribution: Debian
Posts: 382
Rep:
|
Quote:
But when I go to check fstab it doesn't show up there:
|
It will not show there. You are confused about fstab. I suggest you read about fstab; search for it.
Quote:
Even if I try to mount it with the command:
nogueira@Nitro5:~$ sudo mount /dev/sde1 /media/nogueira/SSD
mount: /media/nogueira/SSD: /dev/sde1 already mounted in /media/nogueira/SSD.
It informs me that the directory is already mounted in /media/nogueira/SSD
|
Your external disk automounts, probably with the file manager, therefore you do not need to issue the mount command.
Edit. Try to use code tags for the output of your commands you are posting.
Last edited by Debian6to11; 10-11-2022 at 01:01 AM.
|
|
|
10-11-2022, 03:16 AM
|
#4
|
LQ Guru
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: One main distro, & some smaller ones casually.
Posts: 5,867
Rep: 
|
Possibly a permission problem, not owned by your user account, therefore, if you use sudo (or the root account) you can write to it - you will need to alter the permissions to your user account, if you want to write to it regularly.
|
|
|
10-11-2022, 04:27 AM
|
#5
|
LQ Guru
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 8,261
|
Sometimes a pendrive just does that. It happened to me recently; an old drive that I've used for a long time for miscellaneous file dumps suddenly couldn't be mounted r/w on either of my machines. Even "sudo mount -o remount,rw" didn't work. Google says that these drives protect themselves when they can't be written to safely any more.
Is your drive an old one? Have you been using it intensively?
|
|
|
All times are GMT -5. The time now is 05:36 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|