Create symbolic link on a USB stick drive
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
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?
usb directory symbolic-link
add a comment |Â
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?
usb directory symbolic-link
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
add a comment |Â
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?
usb directory symbolic-link
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?
usb directory symbolic-link
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
add a comment |Â
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
add a comment |Â
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
:Install the package
udftools
sudo apt-get install udftools
Create a partition table and one partition with
gparted
orgnome-disks
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
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).
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
add a comment |Â
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.
add a comment |Â
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
:Install the package
udftools
sudo apt-get install udftools
Create a partition table and one partition with
gparted
orgnome-disks
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
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).
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
add a comment |Â
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
:Install the package
udftools
sudo apt-get install udftools
Create a partition table and one partition with
gparted
orgnome-disks
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
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).
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
add a comment |Â
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
:Install the package
udftools
sudo apt-get install udftools
Create a partition table and one partition with
gparted
orgnome-disks
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
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).
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
:Install the package
udftools
sudo apt-get install udftools
Create a partition table and one partition with
gparted
orgnome-disks
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
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).
edited Apr 24 at 5:29
answered Apr 23 at 18:12
![](https://i.stack.imgur.com/lcww5.png?s=32&g=1)
![](https://i.stack.imgur.com/lcww5.png?s=32&g=1)
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
add a comment |Â
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
add a comment |Â
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.
add a comment |Â
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.
add a comment |Â
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.
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.
edited Apr 23 at 17:14
answered Apr 23 at 17:04
![](https://i.stack.imgur.com/IfEQx.jpg?s=32&g=1)
![](https://i.stack.imgur.com/IfEQx.jpg?s=32&g=1)
K7AAY
3,76721443
3,76721443
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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