So I am giving Linux a try to see if I can use it as my main OS and just run windows in a VM when I need it. I currently have Linux Mint installed on a NVMe 512GB drive. I also have a 2TB SSD that I have always used for virtual machines. When I installed Linux, I basically did a manual partition of the NVMe drive and did nothing for the SSD 2TB, later I figured out the commands to create a GPT partition table and format it a a ext4 file system. I want it to be mounted as /VirtualMachines. There are a few problems. First off it keeps automatically mounting under the /media/username/ GUID folder, which I don’t want. Second, after un mounting that, I can mount it as /VirtualMachines as root but I think I have to mount it a way where my user has read and write permissions.
To mount it as root I use:
mount /dev/sda1 /VirtualMachines
But that leads to the problem of not having read/write access as my user, so I tried what is below in the screen shot:
I am not sure why it would mount fine and then not with user and group id
I am not 100% sure what a superblock is, but I wondered if the fsck command might find something so:
Any ideas? I think once I figure out the right mount command I can put it in the fstab file.
To mount it as root I use:
mount /dev/sda1 /VirtualMachines
But that leads to the problem of not having read/write access as my user, so I tried what is below in the screen shot:
I am not sure why it would mount fine and then not with user and group id
I am not 100% sure what a superblock is, but I wondered if the fsck command might find something so:
Any ideas? I think once I figure out the right mount command I can put it in the fstab file.