Grub2win is a grub2 boot loader that is installed and administered via windows. Good if you want to multiboot several systems without annoying windows!
When I replaced hdd, I simply did i full image backup. Removed hdd and installed ssd, restored from image backup. Last partition was expanded to fill the size of the new ssd. These step were run on linux on an external usb-stick. All systems, Windows inclusive, were succesfully moved to the new ssd ...
Put a line in your /etc/fstab file, specify ntfs3 as filesystem type, and you should be good to go.
A benefit of this is no need to list the device on the command line, because fstab has that information. stab. Neddy and others will perhaps recommend device id using something other than /dev/sda2 ...
I have configured the kernel only to use the new ntfs3 driver. It works excellent, but how do I tell "mount" to use this new driver by default? mount /dev/sda2 /tmp1 mount: /tmp1: unknown filesystem type 'ntfs' :(
This works, but -t ntfs3, must be written: mount -t ntfs3 /dev/sda2 /tmp1 mount -v ...
Well, comparing apples and oranges, because ntfs-3g runs in user mode (FUSE, file system in user mode) and ntfs3 runs in kernel mode. Naturally a file system driver is faster in-kernel...
But is ntfs3 as compatible as ntfs-3g is in a real life scenario? Ntfs3 is much better! I tested to write 800 ...
I run this script to clean the world: for i in `cat /var/lib/portage/world` do if emerge -p --depclean $i | grep "These are the packages that would be unmerged:">null then echo $i >>/var/lib/portage/world-new else echo "removing:" $i fi done mv /var/lib/portage/world /var/lib/portage/world ...
I'm trying compile gcc and I get /usr/lib/gcc/i686-pc-linux-gnu/10.3.0/../../../../i686-pc-linux-gnu/bin/ld: final link failed: No space left on device
I thought it meant space in /vat/tmp/portage so I mounted big enough space to it (hundreds of GiB) but no change.
Do you think grub2win might help that or is it just another way for the bootloader to see both OS's but from the Windows side? grub2win loads grub via the windows bootloader, I think. I tested it under Virtual Box. It worked fine. I got a menu where I could choose between Windows10 and a Linux ...