Announcement

Collapse
No announcement yet.

flash drive only readable

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    flash drive only readable

    Dear All,

    I don't know what I did.
    It's many years ago since I cannot delete anything from my external hard drive.
    I think that I could copy files until recently.
    Anyway, I copied everything in this hardware, which means that I had the ability to do it.

    Now, when I want to copy something, the screen indicates that the flash drive is only readable. How can I change this please?
    I saw some people in the internet who had the same problem, but these problems have been all solved differently.
    Can someone help me please?
    Last edited by nicrnicr; Today, 03:07 PM.

    #2
    I just looked at one of my flash drives.
    Plug it in to the PC.
    It appears in Dolphin (over on the left bar), right-click on it.
    Properties > Permissions tab.
    An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way. Charles Bukowski

    Comment


      #3
      Thank you very much Qqmike.
      Indeed, I'm not allowed to change the content, but I'm also not allowed to change the permissions. Therefore my question still exists.

      Comment


        #4
        With the flash drive plugged in, launch KDE Partition Manager and look at it. What filesystem is it formatted as? What are its Properties?
        Windows no longer obstruct my view.
        Using Kubuntu Linux since March 23, 2007.
        "It is a capital mistake to theorize before one has data." - Sherlock Holmes

        Comment


          #5
          Thank you Snowhog for your answer.
          I am sorry. It is not a flash drive but an external hard disk.
          It is formated Fat32.
          You can see enclosed the properties.
          I beg your pardon for the bad description of the begining.
          Attached Files

          Comment


            #6
            AI Overview

            fdisk is a utility used for manipulating disk partition tables, not for checking or repairing file system integrity. To check and repair a FAT32 file system in Linux, you should use dosfsck or fsck.vfat.

            Here's how to check and repair a FAT32 device using these tools: Identify the device.

            First, determine the correct device name for your FAT32 device (e.g., /dev/sdb1). You can use lsblk or fdisk -l to list your disks and partitions.

            Code:
            sudo fdisk -l
            or

            Code:
            lsblk
            Unmount the device.

            Before running dosfsck or fsck.vfat, ensure the FAT32 partition is unmounted. Replace /dev/sdXN with your device's actual name.

            Code:
            sudo umount /dev/sdXN
            Check and repair the FAT32 filesystem.

            Use dosfsck (or fsck.vfat, which is often a symlink to dosfsck) to check and repair the filesystem. The following command includes common options for a thorough check and repair:


            Code:
            sudo dosfsck -w -r -l -a -v -t /dev/sdXN
            • -w: Writes changes to the disk immediately.
            • -r: Interactively prompts for repair methods if multiple options exist.
            • -l: Lists the filenames processed during the check.
            • -a: Automatically repairs inconsistencies without prompting.
            • -v: Enables verbose output, providing more details about the process.
            • -t: Marks unreadable clusters as bad, preventing future use of those sectors.
            Note: If you are confident in automatic repairs, you can omit -r. If you want to see the issues without automatically fixing them, you can omit -a and -w. Remount the device.

            After the check and repair process is complete, you can remount the device.


            Code:
            sudo mount /dev/sdXN /mnt/your_mount_point
            Replace /mnt/your_mount_point with your desired mount point. If you don't have a specific mount point, you might need to create one (e.g., sudo mkdir /mnt/usb).


            Windows no longer obstruct my view.
            Using Kubuntu Linux since March 23, 2007.
            "It is a capital mistake to theorize before one has data." - Sherlock Holmes

            Comment

            Users Viewing This Topic

            Collapse

            There are 0 users viewing this topic.

            Working...
            X