I was dumb and used FAT32 as filesystem. Now I want to download files larger than the size of 4GB, which is not possible for FAT32. I use a dual boot (Ubuntu 14.04 and Windows 10) and the HDD is accessed by both systems (I have two additional SSD partitions on which the systems are, but these partitions shall remain unchanged). I thought the easiest way of solving this problem is converting the filesystem from FAT32 into NTFS using Window's programm convert. And now my questions:
1) After having used "convert" how can I mount the HDD in Ubuntu again such that it is mounted at the same position as before permanently, i.e. automatically when I start the system (I think the HDD is currently mounted at /
)?
2) Do I have to remove any entries in the file fstab in order to tell my system the old HDD is not longer existent?
3) are there any other things I should consider and is this a suitable "strategy".
PS: my Linux level is very low, I would be glad if you could respect that, when answering :)
Thanks in advance
EDIT:
The content of my fstab file is as follows ("HDD" is the internal Hard Drive I am talking about):
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdb6 during installation
UUID=*********************************** / ext4 errors=remount-ro 0 1
# /HDD was on /dev/sda5 during installation
UUID=********* /HDD vfat utf8,umask=007,gid=46 0 1
# swap was on /dev/sdb5 during installation
UUID=***************************** none swap sw 0 0
defaults,nls=utf8,umask=000,uid=1000,windows_names
The windows_names prevents the use of characters not allowed in Windows. – oldfred Dec 15 '15 at 00:39windows_names
? Can there be data loss? – DonkeyKong Dec 15 '15 at 12:03which are the nine characters ” * / : < > ? \ | and those whose code is less than 0×20
I would expect Windows not to see a file with any of those characters. – oldfred Dec 15 '15 at 16:56