Unable to access data on flash drive












0















I've copied more than 300 Go data on a 2 To flash drive, from a Ubuntu 16.04, then formatted that PC and installed Ubuntu 18.04.



The flash disk is exFAT partition, when I mounted it, I had to install some package to be able to mount it (exfat-fuse and exfat-utils). But the weird thing that I can see all the folders, but not the data within it :



Sys. de fichiers Taille Utilisé Dispo Uti% Monté sur
/dev/sdb1 2,0T 267G 1,7T 14% /media/sazzabi/MAGIC


Can you help me please, I have me lifetime photos on that flash disk, it happened to me before and I lost more than 120 Go (with other flash disks, other PCs, etc..)



I think it's related to the chown user (same username on both PCs), and when I try to ls the folders I got :



ls: lecture du répertoire 'Photos/Photos Dropbox/': Erreur d'entrée/sortie
total 0









share|improve this question



























    0















    I've copied more than 300 Go data on a 2 To flash drive, from a Ubuntu 16.04, then formatted that PC and installed Ubuntu 18.04.



    The flash disk is exFAT partition, when I mounted it, I had to install some package to be able to mount it (exfat-fuse and exfat-utils). But the weird thing that I can see all the folders, but not the data within it :



    Sys. de fichiers Taille Utilisé Dispo Uti% Monté sur
    /dev/sdb1 2,0T 267G 1,7T 14% /media/sazzabi/MAGIC


    Can you help me please, I have me lifetime photos on that flash disk, it happened to me before and I lost more than 120 Go (with other flash disks, other PCs, etc..)



    I think it's related to the chown user (same username on both PCs), and when I try to ls the folders I got :



    ls: lecture du répertoire 'Photos/Photos Dropbox/': Erreur d'entrée/sortie
    total 0









    share|improve this question

























      0












      0








      0








      I've copied more than 300 Go data on a 2 To flash drive, from a Ubuntu 16.04, then formatted that PC and installed Ubuntu 18.04.



      The flash disk is exFAT partition, when I mounted it, I had to install some package to be able to mount it (exfat-fuse and exfat-utils). But the weird thing that I can see all the folders, but not the data within it :



      Sys. de fichiers Taille Utilisé Dispo Uti% Monté sur
      /dev/sdb1 2,0T 267G 1,7T 14% /media/sazzabi/MAGIC


      Can you help me please, I have me lifetime photos on that flash disk, it happened to me before and I lost more than 120 Go (with other flash disks, other PCs, etc..)



      I think it's related to the chown user (same username on both PCs), and when I try to ls the folders I got :



      ls: lecture du répertoire 'Photos/Photos Dropbox/': Erreur d'entrée/sortie
      total 0









      share|improve this question














      I've copied more than 300 Go data on a 2 To flash drive, from a Ubuntu 16.04, then formatted that PC and installed Ubuntu 18.04.



      The flash disk is exFAT partition, when I mounted it, I had to install some package to be able to mount it (exfat-fuse and exfat-utils). But the weird thing that I can see all the folders, but not the data within it :



      Sys. de fichiers Taille Utilisé Dispo Uti% Monté sur
      /dev/sdb1 2,0T 267G 1,7T 14% /media/sazzabi/MAGIC


      Can you help me please, I have me lifetime photos on that flash disk, it happened to me before and I lost more than 120 Go (with other flash disks, other PCs, etc..)



      I think it's related to the chown user (same username on both PCs), and when I try to ls the folders I got :



      ls: lecture du répertoire 'Photos/Photos Dropbox/': Erreur d'entrée/sortie
      total 0






      permissions hard-drive flash






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 6 at 19:10









      Seifallah AzzabiSeifallah Azzabi

      1




      1






















          1 Answer
          1






          active

          oldest

          votes


















          0














          It IS about ownership, but not quite the way you think.



          Inspect the way the USB Disk is mounted, with:



          mount | grep MAGIC


          Then, read man mount, especially the sections "FILESYSTEM-INDEPENDENT MOUNT OPTIONS" and "FILESYSTEM-SPECIFIC MOUNT OPTIONS" (the "Mount options for fat" part).



          Then, do something like:



          sudo mount -o remount,rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 /media/sazzabi/MAGIC


          Then, inspect the mount | grep MAGIC again.



          Questionner ( @seifallah-azzabi )says: (moved up from comments to improve searchability)



          The first command gave me this result



          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)


          after running the second command, this is the result of



          mount | grep MAGIC 
          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)


          @waltinator responds:



          For some reason (you're running the command from a root shell?), $(id -u) and $(id -g) returned root's UID and GID. I expected them to return your USER UID and GID. Or you have to umount first.



          Substitute your own UID and GID. getent passwd $USER | cut -d: -f3,4 to see them, or id.



          Rather than trying to remount on /media/sazzabi/MAGIC,



          (only once)



          mkdir -p $HOME/mnt/MAGIC


          Then,



          sudo umount /dev/sdb1 


          followed by



          sudo mount -o rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 $HOME/mnt/MAGIC
          # no "remount,", different mount point


          Then, you should have owner access to the files on $HOME/mnt/MAGIC/.






          share|improve this answer


























          • The first command gave me this result /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:42













          • after running the second command, this is the result of mount | grep MAGIC /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:49











          • but nothing happened, I can't see my files

            – Seifallah Azzabi
            Jan 7 at 0:50













          • Thank you waltinator for your detailed answer, but same thing, I plugged the device, unmounted it, created the folder, mounted it, the result is the same : I can't see my files. Could it be a problem related to the MFT ? because I can see some files with a recovery programs, but it takes way too long to load a single file.

            – Seifallah Azzabi
            Jan 7 at 11:54











          • and by the way, when I ls -la on the root directory of the device, the folders are owned by sazzabi, but no file is listed

            – Seifallah Azzabi
            Jan 7 at 11:55











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1107501%2funable-to-access-data-on-flash-drive%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          It IS about ownership, but not quite the way you think.



          Inspect the way the USB Disk is mounted, with:



          mount | grep MAGIC


          Then, read man mount, especially the sections "FILESYSTEM-INDEPENDENT MOUNT OPTIONS" and "FILESYSTEM-SPECIFIC MOUNT OPTIONS" (the "Mount options for fat" part).



          Then, do something like:



          sudo mount -o remount,rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 /media/sazzabi/MAGIC


          Then, inspect the mount | grep MAGIC again.



          Questionner ( @seifallah-azzabi )says: (moved up from comments to improve searchability)



          The first command gave me this result



          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)


          after running the second command, this is the result of



          mount | grep MAGIC 
          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)


          @waltinator responds:



          For some reason (you're running the command from a root shell?), $(id -u) and $(id -g) returned root's UID and GID. I expected them to return your USER UID and GID. Or you have to umount first.



          Substitute your own UID and GID. getent passwd $USER | cut -d: -f3,4 to see them, or id.



          Rather than trying to remount on /media/sazzabi/MAGIC,



          (only once)



          mkdir -p $HOME/mnt/MAGIC


          Then,



          sudo umount /dev/sdb1 


          followed by



          sudo mount -o rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 $HOME/mnt/MAGIC
          # no "remount,", different mount point


          Then, you should have owner access to the files on $HOME/mnt/MAGIC/.






          share|improve this answer


























          • The first command gave me this result /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:42













          • after running the second command, this is the result of mount | grep MAGIC /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:49











          • but nothing happened, I can't see my files

            – Seifallah Azzabi
            Jan 7 at 0:50













          • Thank you waltinator for your detailed answer, but same thing, I plugged the device, unmounted it, created the folder, mounted it, the result is the same : I can't see my files. Could it be a problem related to the MFT ? because I can see some files with a recovery programs, but it takes way too long to load a single file.

            – Seifallah Azzabi
            Jan 7 at 11:54











          • and by the way, when I ls -la on the root directory of the device, the folders are owned by sazzabi, but no file is listed

            – Seifallah Azzabi
            Jan 7 at 11:55
















          0














          It IS about ownership, but not quite the way you think.



          Inspect the way the USB Disk is mounted, with:



          mount | grep MAGIC


          Then, read man mount, especially the sections "FILESYSTEM-INDEPENDENT MOUNT OPTIONS" and "FILESYSTEM-SPECIFIC MOUNT OPTIONS" (the "Mount options for fat" part).



          Then, do something like:



          sudo mount -o remount,rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 /media/sazzabi/MAGIC


          Then, inspect the mount | grep MAGIC again.



          Questionner ( @seifallah-azzabi )says: (moved up from comments to improve searchability)



          The first command gave me this result



          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)


          after running the second command, this is the result of



          mount | grep MAGIC 
          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)


          @waltinator responds:



          For some reason (you're running the command from a root shell?), $(id -u) and $(id -g) returned root's UID and GID. I expected them to return your USER UID and GID. Or you have to umount first.



          Substitute your own UID and GID. getent passwd $USER | cut -d: -f3,4 to see them, or id.



          Rather than trying to remount on /media/sazzabi/MAGIC,



          (only once)



          mkdir -p $HOME/mnt/MAGIC


          Then,



          sudo umount /dev/sdb1 


          followed by



          sudo mount -o rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 $HOME/mnt/MAGIC
          # no "remount,", different mount point


          Then, you should have owner access to the files on $HOME/mnt/MAGIC/.






          share|improve this answer


























          • The first command gave me this result /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:42













          • after running the second command, this is the result of mount | grep MAGIC /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:49











          • but nothing happened, I can't see my files

            – Seifallah Azzabi
            Jan 7 at 0:50













          • Thank you waltinator for your detailed answer, but same thing, I plugged the device, unmounted it, created the folder, mounted it, the result is the same : I can't see my files. Could it be a problem related to the MFT ? because I can see some files with a recovery programs, but it takes way too long to load a single file.

            – Seifallah Azzabi
            Jan 7 at 11:54











          • and by the way, when I ls -la on the root directory of the device, the folders are owned by sazzabi, but no file is listed

            – Seifallah Azzabi
            Jan 7 at 11:55














          0












          0








          0







          It IS about ownership, but not quite the way you think.



          Inspect the way the USB Disk is mounted, with:



          mount | grep MAGIC


          Then, read man mount, especially the sections "FILESYSTEM-INDEPENDENT MOUNT OPTIONS" and "FILESYSTEM-SPECIFIC MOUNT OPTIONS" (the "Mount options for fat" part).



          Then, do something like:



          sudo mount -o remount,rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 /media/sazzabi/MAGIC


          Then, inspect the mount | grep MAGIC again.



          Questionner ( @seifallah-azzabi )says: (moved up from comments to improve searchability)



          The first command gave me this result



          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)


          after running the second command, this is the result of



          mount | grep MAGIC 
          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)


          @waltinator responds:



          For some reason (you're running the command from a root shell?), $(id -u) and $(id -g) returned root's UID and GID. I expected them to return your USER UID and GID. Or you have to umount first.



          Substitute your own UID and GID. getent passwd $USER | cut -d: -f3,4 to see them, or id.



          Rather than trying to remount on /media/sazzabi/MAGIC,



          (only once)



          mkdir -p $HOME/mnt/MAGIC


          Then,



          sudo umount /dev/sdb1 


          followed by



          sudo mount -o rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 $HOME/mnt/MAGIC
          # no "remount,", different mount point


          Then, you should have owner access to the files on $HOME/mnt/MAGIC/.






          share|improve this answer















          It IS about ownership, but not quite the way you think.



          Inspect the way the USB Disk is mounted, with:



          mount | grep MAGIC


          Then, read man mount, especially the sections "FILESYSTEM-INDEPENDENT MOUNT OPTIONS" and "FILESYSTEM-SPECIFIC MOUNT OPTIONS" (the "Mount options for fat" part).



          Then, do something like:



          sudo mount -o remount,rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 /media/sazzabi/MAGIC


          Then, inspect the mount | grep MAGIC again.



          Questionner ( @seifallah-azzabi )says: (moved up from comments to improve searchability)



          The first command gave me this result



          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)


          after running the second command, this is the result of



          mount | grep MAGIC 
          /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)


          @waltinator responds:



          For some reason (you're running the command from a root shell?), $(id -u) and $(id -g) returned root's UID and GID. I expected them to return your USER UID and GID. Or you have to umount first.



          Substitute your own UID and GID. getent passwd $USER | cut -d: -f3,4 to see them, or id.



          Rather than trying to remount on /media/sazzabi/MAGIC,



          (only once)



          mkdir -p $HOME/mnt/MAGIC


          Then,



          sudo umount /dev/sdb1 


          followed by



          sudo mount -o rw,user,users,nosuid,nodev,relatime,uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2 /dev/sdb1 $HOME/mnt/MAGIC
          # no "remount,", different mount point


          Then, you should have owner access to the files on $HOME/mnt/MAGIC/.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 7 at 5:10

























          answered Jan 6 at 21:57









          waltinatorwaltinator

          22k74169




          22k74169













          • The first command gave me this result /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:42













          • after running the second command, this is the result of mount | grep MAGIC /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:49











          • but nothing happened, I can't see my files

            – Seifallah Azzabi
            Jan 7 at 0:50













          • Thank you waltinator for your detailed answer, but same thing, I plugged the device, unmounted it, created the folder, mounted it, the result is the same : I can't see my files. Could it be a problem related to the MFT ? because I can see some files with a recovery programs, but it takes way too long to load a single file.

            – Seifallah Azzabi
            Jan 7 at 11:54











          • and by the way, when I ls -la on the root directory of the device, the folders are owned by sazzabi, but no file is listed

            – Seifallah Azzabi
            Jan 7 at 11:55



















          • The first command gave me this result /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:42













          • after running the second command, this is the result of mount | grep MAGIC /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)

            – Seifallah Azzabi
            Jan 7 at 0:49











          • but nothing happened, I can't see my files

            – Seifallah Azzabi
            Jan 7 at 0:50













          • Thank you waltinator for your detailed answer, but same thing, I plugged the device, unmounted it, created the folder, mounted it, the result is the same : I can't see my files. Could it be a problem related to the MFT ? because I can see some files with a recovery programs, but it takes way too long to load a single file.

            – Seifallah Azzabi
            Jan 7 at 11:54











          • and by the way, when I ls -la on the root directory of the device, the folders are owned by sazzabi, but no file is listed

            – Seifallah Azzabi
            Jan 7 at 11:55

















          The first command gave me this result /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

          – Seifallah Azzabi
          Jan 7 at 0:42







          The first command gave me this result /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

          – Seifallah Azzabi
          Jan 7 at 0:42















          after running the second command, this is the result of mount | grep MAGIC /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)

          – Seifallah Azzabi
          Jan 7 at 0:49





          after running the second command, this is the result of mount | grep MAGIC /dev/sdb1 on /media/sazzabi/MAGIC type fuseblk (rw,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user,uhelper=udisks2)

          – Seifallah Azzabi
          Jan 7 at 0:49













          but nothing happened, I can't see my files

          – Seifallah Azzabi
          Jan 7 at 0:50







          but nothing happened, I can't see my files

          – Seifallah Azzabi
          Jan 7 at 0:50















          Thank you waltinator for your detailed answer, but same thing, I plugged the device, unmounted it, created the folder, mounted it, the result is the same : I can't see my files. Could it be a problem related to the MFT ? because I can see some files with a recovery programs, but it takes way too long to load a single file.

          – Seifallah Azzabi
          Jan 7 at 11:54





          Thank you waltinator for your detailed answer, but same thing, I plugged the device, unmounted it, created the folder, mounted it, the result is the same : I can't see my files. Could it be a problem related to the MFT ? because I can see some files with a recovery programs, but it takes way too long to load a single file.

          – Seifallah Azzabi
          Jan 7 at 11:54













          and by the way, when I ls -la on the root directory of the device, the folders are owned by sazzabi, but no file is listed

          – Seifallah Azzabi
          Jan 7 at 11:55





          and by the way, when I ls -la on the root directory of the device, the folders are owned by sazzabi, but no file is listed

          – Seifallah Azzabi
          Jan 7 at 11:55


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1107501%2funable-to-access-data-on-flash-drive%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Questions related to Moebius Transform of Characteristic Function of the Primes

          List of scandals in India

          Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?