02-13-2019, 01:56 AM
In-case you're running a low-risk machine (for example a VirtualBox client),
and you want to skip entring the root-password each time (https://www.freecinema2022.gq/forums/insta...n#msg41818) ,
after you add a user to the vboxsf group,
you can write a batch-file in your Desktop folder with this content:
so the only thing you have to do is double-click it to make the shared-folders appeared,
after each reboot.
and you want to skip entring the root-password each time (https://www.freecinema2022.gq/forums/insta...n#msg41818) ,
after you add a user to the vboxsf group,
you can write a batch-file in your Desktop folder with this content:
Code:
#!/bin/bash
echo "MySudoPass" | sudo -S systemctl start vboxadd-service.service
echo "MySudoPass" | sudo -S systemctl enable vboxadd-service.service
after each reboot.