Create symbolic link on a USB stick drive

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
2
down vote

favorite












I want to create a symbolic link of a file, such that both the source file and its symbolic link are inside my USB stick drive. I have tried two method as follows:



1- Right click and then "Make Link". The result is an error that says:




The target doesn't support symbolic links.




2- In the terminal, I use:



ln -s "USB_DIRECTORY/test.txt" "USB_DIRECTORY/testLink.txt"


The result is the following error:




Operation not permitted




Is there a way to create symbolic links in a USB stick drive?







share|improve this question
















  • 1




    What file system is there? (Maybe it is not a linux file system.)
    – sudodus
    Apr 23 at 16:28






  • 2




    Source and destination filesystems need to support symbolic links. FAT filesystems do not. I dont think NTFS symbolic links are POSIX compliant.
    – Bruni
    Apr 23 at 16:30







  • 1




    My USB is formatted as FAT32. Which file system is suitable for a USB stick that first, supports the symbolic link and second, can be used in any operating system (including Linux, Windows, and Mac)?
    – Unique
    Apr 23 at 16:39















up vote
2
down vote

favorite












I want to create a symbolic link of a file, such that both the source file and its symbolic link are inside my USB stick drive. I have tried two method as follows:



1- Right click and then "Make Link". The result is an error that says:




The target doesn't support symbolic links.




2- In the terminal, I use:



ln -s "USB_DIRECTORY/test.txt" "USB_DIRECTORY/testLink.txt"


The result is the following error:




Operation not permitted




Is there a way to create symbolic links in a USB stick drive?







share|improve this question
















  • 1




    What file system is there? (Maybe it is not a linux file system.)
    – sudodus
    Apr 23 at 16:28






  • 2




    Source and destination filesystems need to support symbolic links. FAT filesystems do not. I dont think NTFS symbolic links are POSIX compliant.
    – Bruni
    Apr 23 at 16:30







  • 1




    My USB is formatted as FAT32. Which file system is suitable for a USB stick that first, supports the symbolic link and second, can be used in any operating system (including Linux, Windows, and Mac)?
    – Unique
    Apr 23 at 16:39













up vote
2
down vote

favorite









up vote
2
down vote

favorite











I want to create a symbolic link of a file, such that both the source file and its symbolic link are inside my USB stick drive. I have tried two method as follows:



1- Right click and then "Make Link". The result is an error that says:




The target doesn't support symbolic links.




2- In the terminal, I use:



ln -s "USB_DIRECTORY/test.txt" "USB_DIRECTORY/testLink.txt"


The result is the following error:




Operation not permitted




Is there a way to create symbolic links in a USB stick drive?







share|improve this question












I want to create a symbolic link of a file, such that both the source file and its symbolic link are inside my USB stick drive. I have tried two method as follows:



1- Right click and then "Make Link". The result is an error that says:




The target doesn't support symbolic links.




2- In the terminal, I use:



ln -s "USB_DIRECTORY/test.txt" "USB_DIRECTORY/testLink.txt"


The result is the following error:




Operation not permitted




Is there a way to create symbolic links in a USB stick drive?









share|improve this question











share|improve this question




share|improve this question










asked Apr 23 at 16:22









Unique

95111




95111







  • 1




    What file system is there? (Maybe it is not a linux file system.)
    – sudodus
    Apr 23 at 16:28






  • 2




    Source and destination filesystems need to support symbolic links. FAT filesystems do not. I dont think NTFS symbolic links are POSIX compliant.
    – Bruni
    Apr 23 at 16:30







  • 1




    My USB is formatted as FAT32. Which file system is suitable for a USB stick that first, supports the symbolic link and second, can be used in any operating system (including Linux, Windows, and Mac)?
    – Unique
    Apr 23 at 16:39













  • 1




    What file system is there? (Maybe it is not a linux file system.)
    – sudodus
    Apr 23 at 16:28






  • 2




    Source and destination filesystems need to support symbolic links. FAT filesystems do not. I dont think NTFS symbolic links are POSIX compliant.
    – Bruni
    Apr 23 at 16:30







  • 1




    My USB is formatted as FAT32. Which file system is suitable for a USB stick that first, supports the symbolic link and second, can be used in any operating system (including Linux, Windows, and Mac)?
    – Unique
    Apr 23 at 16:39








1




1




What file system is there? (Maybe it is not a linux file system.)
– sudodus
Apr 23 at 16:28




What file system is there? (Maybe it is not a linux file system.)
– sudodus
Apr 23 at 16:28




2




2




Source and destination filesystems need to support symbolic links. FAT filesystems do not. I dont think NTFS symbolic links are POSIX compliant.
– Bruni
Apr 23 at 16:30





Source and destination filesystems need to support symbolic links. FAT filesystems do not. I dont think NTFS symbolic links are POSIX compliant.
– Bruni
Apr 23 at 16:30





1




1




My USB is formatted as FAT32. Which file system is suitable for a USB stick that first, supports the symbolic link and second, can be used in any operating system (including Linux, Windows, and Mac)?
– Unique
Apr 23 at 16:39





My USB is formatted as FAT32. Which file system is suitable for a USB stick that first, supports the symbolic link and second, can be used in any operating system (including Linux, Windows, and Mac)?
– Unique
Apr 23 at 16:39











2 Answers
2






active

oldest

votes

















up vote
2
down vote



accepted










Try UDF



UDF is a free file system, that works with Linux and Windows.



There are problems in MacOS. I have no Apple computer, but I have read that MacOS can manage UDF. However, recent tests by @Unique, the OP, indicates that it does not work. There are different versions (of UDF), and we must conclude that the version described here is not supported by MacOS.



UDF supports linux symbolic links.



There is a detailed description how to install it in this AskUbuntu link:



Full compatibility with Linux, Windows and MacOS




  • UDF probably lacks tools to repair the file system,



    • FOSS

    • Maybe it is possible to find repair tools in Windows via this link: fsck tools for UDF, and there is some tool available as source code

    • Can be created in Ubuntu

    • Compatible with linux style links.

    • Compatible with linux style permissions. You can create and modify permissions of individual files (which is not possible with FAT and NTFS).

    • A UDF partition will not be prompted for formatting by Windows 10 (while the linux ext4 file system is affected, and can be destroyed by mistake).


    • How to create and use UDF: Using the UDF as a successor of FAT for USB sticks



      So, to use it, assuming your USB stick is /dev/sdx:




      1. Install the package udftools



        sudo apt-get install udftools


      2. Create a partition table and one partition with gparted or gnome-disks



      3. Wipe the first mibibyte of the target partition with the risky dd (double-check the command line!)



        sudo dd if=/dev/zero of=/dev/sdx1 bs=1M count=1



      4. Run mkudffs,



        sudo mkudffs -b 512 --media-type=hd --lvid=my-label /dev/sdx1


      Wipe the first mibibyte of the partition to erase the previous file system information (or other remaining data), to prevent you USB stick from being detected as a FAT after it has been formatted with UDF.



      The -b 512 is to force a file system block size equal to the USB stick's physical block size, as required by the UDF specification. Adapt it if you have the luck of having a USB stick with a more appropriate block size.



      After that, your USB stick will be usable for reading and writing with GNU/Linux and the other free operating systems of course, but also with current versions of Windows (read-only with the outdated version XP) and with MacOS.





From Wikipedia




Universal Disk Format (UDF) is a profile of the specification known as
ISO/IEC 13346 and ECMA-167 and is an open vendor-neutral file
system for computer data storage for a broad range of media. In
practice, it has been most widely used for DVDs and newer optical disc
formats, supplanting ISO 9660. Due to its design, it is very well
suited to incremental updates on both recordable and (re)writable
optical media. UDF is developed and maintained by the Optical Storage
Technology Association (OSTA).







share|improve this answer


















  • 1




    After doing these instructions, I am able to create symbolic links on Linux, but unfortunately, the MacOs High Sierra does not mount the USB stick.
    – Unique
    Apr 23 at 20:12






  • 1




    @Unique, I have read that MacOS can manage UDF, but there are different versions (of UDF), and it is possible that this version is not supported by MacOS, which is too bad. I will modify the answer.
    – sudodus
    Apr 24 at 5:20










  • @everybody, who runs both Ubuntu and MacOS (various versions), Please make a partition with the UDF file system in a USB pendrive and test if MacOS can manage it (mount the partition, write and read files).
    – sudodus
    Apr 24 at 5:32

















up vote
1
down vote













FAT32, unlike NTFS, does not support symlinks, as per https://www.linuxquestions.org/questions/blog/the-dsc-472367/not-even-linux-can-create-symlinks-on-fat32-36281/ and https://superuser.com/questions/216332/is-there-anything-like-a-link-or-shared-mount-point-for-fat32-folders-in-linux-a



Therefore, if you want symlinks on a Windows-readable drive, use NTFS.



Mac OS X requires additional work to enable writing to a USB flash drive as per http://osxdaily.com/2013/10/02/enable-ntfs-write-support-mac-os-x/ and https://techsviewer.com/write-ntfs-drives-macos-high-sierra/ but is able to read NTFS natively.






share|improve this answer






















    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',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    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%2f1027513%2fcreate-symbolic-link-on-a-usb-stick-drive%23new-answer', 'question_page');

    );

    Post as a guest






























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    2
    down vote



    accepted










    Try UDF



    UDF is a free file system, that works with Linux and Windows.



    There are problems in MacOS. I have no Apple computer, but I have read that MacOS can manage UDF. However, recent tests by @Unique, the OP, indicates that it does not work. There are different versions (of UDF), and we must conclude that the version described here is not supported by MacOS.



    UDF supports linux symbolic links.



    There is a detailed description how to install it in this AskUbuntu link:



    Full compatibility with Linux, Windows and MacOS




    • UDF probably lacks tools to repair the file system,



      • FOSS

      • Maybe it is possible to find repair tools in Windows via this link: fsck tools for UDF, and there is some tool available as source code

      • Can be created in Ubuntu

      • Compatible with linux style links.

      • Compatible with linux style permissions. You can create and modify permissions of individual files (which is not possible with FAT and NTFS).

      • A UDF partition will not be prompted for formatting by Windows 10 (while the linux ext4 file system is affected, and can be destroyed by mistake).


      • How to create and use UDF: Using the UDF as a successor of FAT for USB sticks



        So, to use it, assuming your USB stick is /dev/sdx:




        1. Install the package udftools



          sudo apt-get install udftools


        2. Create a partition table and one partition with gparted or gnome-disks



        3. Wipe the first mibibyte of the target partition with the risky dd (double-check the command line!)



          sudo dd if=/dev/zero of=/dev/sdx1 bs=1M count=1



        4. Run mkudffs,



          sudo mkudffs -b 512 --media-type=hd --lvid=my-label /dev/sdx1


        Wipe the first mibibyte of the partition to erase the previous file system information (or other remaining data), to prevent you USB stick from being detected as a FAT after it has been formatted with UDF.



        The -b 512 is to force a file system block size equal to the USB stick's physical block size, as required by the UDF specification. Adapt it if you have the luck of having a USB stick with a more appropriate block size.



        After that, your USB stick will be usable for reading and writing with GNU/Linux and the other free operating systems of course, but also with current versions of Windows (read-only with the outdated version XP) and with MacOS.





    From Wikipedia




    Universal Disk Format (UDF) is a profile of the specification known as
    ISO/IEC 13346 and ECMA-167 and is an open vendor-neutral file
    system for computer data storage for a broad range of media. In
    practice, it has been most widely used for DVDs and newer optical disc
    formats, supplanting ISO 9660. Due to its design, it is very well
    suited to incremental updates on both recordable and (re)writable
    optical media. UDF is developed and maintained by the Optical Storage
    Technology Association (OSTA).







    share|improve this answer


















    • 1




      After doing these instructions, I am able to create symbolic links on Linux, but unfortunately, the MacOs High Sierra does not mount the USB stick.
      – Unique
      Apr 23 at 20:12






    • 1




      @Unique, I have read that MacOS can manage UDF, but there are different versions (of UDF), and it is possible that this version is not supported by MacOS, which is too bad. I will modify the answer.
      – sudodus
      Apr 24 at 5:20










    • @everybody, who runs both Ubuntu and MacOS (various versions), Please make a partition with the UDF file system in a USB pendrive and test if MacOS can manage it (mount the partition, write and read files).
      – sudodus
      Apr 24 at 5:32














    up vote
    2
    down vote



    accepted










    Try UDF



    UDF is a free file system, that works with Linux and Windows.



    There are problems in MacOS. I have no Apple computer, but I have read that MacOS can manage UDF. However, recent tests by @Unique, the OP, indicates that it does not work. There are different versions (of UDF), and we must conclude that the version described here is not supported by MacOS.



    UDF supports linux symbolic links.



    There is a detailed description how to install it in this AskUbuntu link:



    Full compatibility with Linux, Windows and MacOS




    • UDF probably lacks tools to repair the file system,



      • FOSS

      • Maybe it is possible to find repair tools in Windows via this link: fsck tools for UDF, and there is some tool available as source code

      • Can be created in Ubuntu

      • Compatible with linux style links.

      • Compatible with linux style permissions. You can create and modify permissions of individual files (which is not possible with FAT and NTFS).

      • A UDF partition will not be prompted for formatting by Windows 10 (while the linux ext4 file system is affected, and can be destroyed by mistake).


      • How to create and use UDF: Using the UDF as a successor of FAT for USB sticks



        So, to use it, assuming your USB stick is /dev/sdx:




        1. Install the package udftools



          sudo apt-get install udftools


        2. Create a partition table and one partition with gparted or gnome-disks



        3. Wipe the first mibibyte of the target partition with the risky dd (double-check the command line!)



          sudo dd if=/dev/zero of=/dev/sdx1 bs=1M count=1



        4. Run mkudffs,



          sudo mkudffs -b 512 --media-type=hd --lvid=my-label /dev/sdx1


        Wipe the first mibibyte of the partition to erase the previous file system information (or other remaining data), to prevent you USB stick from being detected as a FAT after it has been formatted with UDF.



        The -b 512 is to force a file system block size equal to the USB stick's physical block size, as required by the UDF specification. Adapt it if you have the luck of having a USB stick with a more appropriate block size.



        After that, your USB stick will be usable for reading and writing with GNU/Linux and the other free operating systems of course, but also with current versions of Windows (read-only with the outdated version XP) and with MacOS.





    From Wikipedia




    Universal Disk Format (UDF) is a profile of the specification known as
    ISO/IEC 13346 and ECMA-167 and is an open vendor-neutral file
    system for computer data storage for a broad range of media. In
    practice, it has been most widely used for DVDs and newer optical disc
    formats, supplanting ISO 9660. Due to its design, it is very well
    suited to incremental updates on both recordable and (re)writable
    optical media. UDF is developed and maintained by the Optical Storage
    Technology Association (OSTA).







    share|improve this answer


















    • 1




      After doing these instructions, I am able to create symbolic links on Linux, but unfortunately, the MacOs High Sierra does not mount the USB stick.
      – Unique
      Apr 23 at 20:12






    • 1




      @Unique, I have read that MacOS can manage UDF, but there are different versions (of UDF), and it is possible that this version is not supported by MacOS, which is too bad. I will modify the answer.
      – sudodus
      Apr 24 at 5:20










    • @everybody, who runs both Ubuntu and MacOS (various versions), Please make a partition with the UDF file system in a USB pendrive and test if MacOS can manage it (mount the partition, write and read files).
      – sudodus
      Apr 24 at 5:32












    up vote
    2
    down vote



    accepted







    up vote
    2
    down vote



    accepted






    Try UDF



    UDF is a free file system, that works with Linux and Windows.



    There are problems in MacOS. I have no Apple computer, but I have read that MacOS can manage UDF. However, recent tests by @Unique, the OP, indicates that it does not work. There are different versions (of UDF), and we must conclude that the version described here is not supported by MacOS.



    UDF supports linux symbolic links.



    There is a detailed description how to install it in this AskUbuntu link:



    Full compatibility with Linux, Windows and MacOS




    • UDF probably lacks tools to repair the file system,



      • FOSS

      • Maybe it is possible to find repair tools in Windows via this link: fsck tools for UDF, and there is some tool available as source code

      • Can be created in Ubuntu

      • Compatible with linux style links.

      • Compatible with linux style permissions. You can create and modify permissions of individual files (which is not possible with FAT and NTFS).

      • A UDF partition will not be prompted for formatting by Windows 10 (while the linux ext4 file system is affected, and can be destroyed by mistake).


      • How to create and use UDF: Using the UDF as a successor of FAT for USB sticks



        So, to use it, assuming your USB stick is /dev/sdx:




        1. Install the package udftools



          sudo apt-get install udftools


        2. Create a partition table and one partition with gparted or gnome-disks



        3. Wipe the first mibibyte of the target partition with the risky dd (double-check the command line!)



          sudo dd if=/dev/zero of=/dev/sdx1 bs=1M count=1



        4. Run mkudffs,



          sudo mkudffs -b 512 --media-type=hd --lvid=my-label /dev/sdx1


        Wipe the first mibibyte of the partition to erase the previous file system information (or other remaining data), to prevent you USB stick from being detected as a FAT after it has been formatted with UDF.



        The -b 512 is to force a file system block size equal to the USB stick's physical block size, as required by the UDF specification. Adapt it if you have the luck of having a USB stick with a more appropriate block size.



        After that, your USB stick will be usable for reading and writing with GNU/Linux and the other free operating systems of course, but also with current versions of Windows (read-only with the outdated version XP) and with MacOS.





    From Wikipedia




    Universal Disk Format (UDF) is a profile of the specification known as
    ISO/IEC 13346 and ECMA-167 and is an open vendor-neutral file
    system for computer data storage for a broad range of media. In
    practice, it has been most widely used for DVDs and newer optical disc
    formats, supplanting ISO 9660. Due to its design, it is very well
    suited to incremental updates on both recordable and (re)writable
    optical media. UDF is developed and maintained by the Optical Storage
    Technology Association (OSTA).







    share|improve this answer














    Try UDF



    UDF is a free file system, that works with Linux and Windows.



    There are problems in MacOS. I have no Apple computer, but I have read that MacOS can manage UDF. However, recent tests by @Unique, the OP, indicates that it does not work. There are different versions (of UDF), and we must conclude that the version described here is not supported by MacOS.



    UDF supports linux symbolic links.



    There is a detailed description how to install it in this AskUbuntu link:



    Full compatibility with Linux, Windows and MacOS




    • UDF probably lacks tools to repair the file system,



      • FOSS

      • Maybe it is possible to find repair tools in Windows via this link: fsck tools for UDF, and there is some tool available as source code

      • Can be created in Ubuntu

      • Compatible with linux style links.

      • Compatible with linux style permissions. You can create and modify permissions of individual files (which is not possible with FAT and NTFS).

      • A UDF partition will not be prompted for formatting by Windows 10 (while the linux ext4 file system is affected, and can be destroyed by mistake).


      • How to create and use UDF: Using the UDF as a successor of FAT for USB sticks



        So, to use it, assuming your USB stick is /dev/sdx:




        1. Install the package udftools



          sudo apt-get install udftools


        2. Create a partition table and one partition with gparted or gnome-disks



        3. Wipe the first mibibyte of the target partition with the risky dd (double-check the command line!)



          sudo dd if=/dev/zero of=/dev/sdx1 bs=1M count=1



        4. Run mkudffs,



          sudo mkudffs -b 512 --media-type=hd --lvid=my-label /dev/sdx1


        Wipe the first mibibyte of the partition to erase the previous file system information (or other remaining data), to prevent you USB stick from being detected as a FAT after it has been formatted with UDF.



        The -b 512 is to force a file system block size equal to the USB stick's physical block size, as required by the UDF specification. Adapt it if you have the luck of having a USB stick with a more appropriate block size.



        After that, your USB stick will be usable for reading and writing with GNU/Linux and the other free operating systems of course, but also with current versions of Windows (read-only with the outdated version XP) and with MacOS.





    From Wikipedia




    Universal Disk Format (UDF) is a profile of the specification known as
    ISO/IEC 13346 and ECMA-167 and is an open vendor-neutral file
    system for computer data storage for a broad range of media. In
    practice, it has been most widely used for DVDs and newer optical disc
    formats, supplanting ISO 9660. Due to its design, it is very well
    suited to incremental updates on both recordable and (re)writable
    optical media. UDF is developed and maintained by the Optical Storage
    Technology Association (OSTA).








    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Apr 24 at 5:29

























    answered Apr 23 at 18:12









    sudodus

    20.2k32666




    20.2k32666







    • 1




      After doing these instructions, I am able to create symbolic links on Linux, but unfortunately, the MacOs High Sierra does not mount the USB stick.
      – Unique
      Apr 23 at 20:12






    • 1




      @Unique, I have read that MacOS can manage UDF, but there are different versions (of UDF), and it is possible that this version is not supported by MacOS, which is too bad. I will modify the answer.
      – sudodus
      Apr 24 at 5:20










    • @everybody, who runs both Ubuntu and MacOS (various versions), Please make a partition with the UDF file system in a USB pendrive and test if MacOS can manage it (mount the partition, write and read files).
      – sudodus
      Apr 24 at 5:32












    • 1




      After doing these instructions, I am able to create symbolic links on Linux, but unfortunately, the MacOs High Sierra does not mount the USB stick.
      – Unique
      Apr 23 at 20:12






    • 1




      @Unique, I have read that MacOS can manage UDF, but there are different versions (of UDF), and it is possible that this version is not supported by MacOS, which is too bad. I will modify the answer.
      – sudodus
      Apr 24 at 5:20










    • @everybody, who runs both Ubuntu and MacOS (various versions), Please make a partition with the UDF file system in a USB pendrive and test if MacOS can manage it (mount the partition, write and read files).
      – sudodus
      Apr 24 at 5:32







    1




    1




    After doing these instructions, I am able to create symbolic links on Linux, but unfortunately, the MacOs High Sierra does not mount the USB stick.
    – Unique
    Apr 23 at 20:12




    After doing these instructions, I am able to create symbolic links on Linux, but unfortunately, the MacOs High Sierra does not mount the USB stick.
    – Unique
    Apr 23 at 20:12




    1




    1




    @Unique, I have read that MacOS can manage UDF, but there are different versions (of UDF), and it is possible that this version is not supported by MacOS, which is too bad. I will modify the answer.
    – sudodus
    Apr 24 at 5:20




    @Unique, I have read that MacOS can manage UDF, but there are different versions (of UDF), and it is possible that this version is not supported by MacOS, which is too bad. I will modify the answer.
    – sudodus
    Apr 24 at 5:20












    @everybody, who runs both Ubuntu and MacOS (various versions), Please make a partition with the UDF file system in a USB pendrive and test if MacOS can manage it (mount the partition, write and read files).
    – sudodus
    Apr 24 at 5:32




    @everybody, who runs both Ubuntu and MacOS (various versions), Please make a partition with the UDF file system in a USB pendrive and test if MacOS can manage it (mount the partition, write and read files).
    – sudodus
    Apr 24 at 5:32












    up vote
    1
    down vote













    FAT32, unlike NTFS, does not support symlinks, as per https://www.linuxquestions.org/questions/blog/the-dsc-472367/not-even-linux-can-create-symlinks-on-fat32-36281/ and https://superuser.com/questions/216332/is-there-anything-like-a-link-or-shared-mount-point-for-fat32-folders-in-linux-a



    Therefore, if you want symlinks on a Windows-readable drive, use NTFS.



    Mac OS X requires additional work to enable writing to a USB flash drive as per http://osxdaily.com/2013/10/02/enable-ntfs-write-support-mac-os-x/ and https://techsviewer.com/write-ntfs-drives-macos-high-sierra/ but is able to read NTFS natively.






    share|improve this answer


























      up vote
      1
      down vote













      FAT32, unlike NTFS, does not support symlinks, as per https://www.linuxquestions.org/questions/blog/the-dsc-472367/not-even-linux-can-create-symlinks-on-fat32-36281/ and https://superuser.com/questions/216332/is-there-anything-like-a-link-or-shared-mount-point-for-fat32-folders-in-linux-a



      Therefore, if you want symlinks on a Windows-readable drive, use NTFS.



      Mac OS X requires additional work to enable writing to a USB flash drive as per http://osxdaily.com/2013/10/02/enable-ntfs-write-support-mac-os-x/ and https://techsviewer.com/write-ntfs-drives-macos-high-sierra/ but is able to read NTFS natively.






      share|improve this answer
























        up vote
        1
        down vote










        up vote
        1
        down vote









        FAT32, unlike NTFS, does not support symlinks, as per https://www.linuxquestions.org/questions/blog/the-dsc-472367/not-even-linux-can-create-symlinks-on-fat32-36281/ and https://superuser.com/questions/216332/is-there-anything-like-a-link-or-shared-mount-point-for-fat32-folders-in-linux-a



        Therefore, if you want symlinks on a Windows-readable drive, use NTFS.



        Mac OS X requires additional work to enable writing to a USB flash drive as per http://osxdaily.com/2013/10/02/enable-ntfs-write-support-mac-os-x/ and https://techsviewer.com/write-ntfs-drives-macos-high-sierra/ but is able to read NTFS natively.






        share|improve this answer














        FAT32, unlike NTFS, does not support symlinks, as per https://www.linuxquestions.org/questions/blog/the-dsc-472367/not-even-linux-can-create-symlinks-on-fat32-36281/ and https://superuser.com/questions/216332/is-there-anything-like-a-link-or-shared-mount-point-for-fat32-folders-in-linux-a



        Therefore, if you want symlinks on a Windows-readable drive, use NTFS.



        Mac OS X requires additional work to enable writing to a USB flash drive as per http://osxdaily.com/2013/10/02/enable-ntfs-write-support-mac-os-x/ and https://techsviewer.com/write-ntfs-drives-macos-high-sierra/ but is able to read NTFS natively.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Apr 23 at 17:14

























        answered Apr 23 at 17:04









        K7AAY

        3,76721443




        3,76721443



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1027513%2fcreate-symbolic-link-on-a-usb-stick-drive%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            pylint3 and pip3 broken

            Missing snmpget and snmpwalk

            How to enroll fingerprints to Ubuntu 17.10 with VFS491