En mi máquina Ubuntu 11.10, uso vbox (que nuevamente es un Ubuntu con código fuente). Para realizar una actualización diaria de un código, seguido de las pruebas, debe montar este cuadro con cada reinicio. Intenté cambiar etc / fstab y también intenté marcarlo pero no está funcionando. ¿Podría alguien ayudarme por favor? ¿Puede un script de bash ser la solución?
bash
ubuntu-11.10
automount
Fagun Bhavsar
fuente
fuente
/etc/init.d/S99mymount
Con lo siguiente dentro:#!/bin/sh #place return here in your file # mounting the vbox: sshfs <username>@<ipaddress>:/home /media/box & # <-- Don't forget the "&" otherwise other system stuff won't start until this returns !!! #place return here in your file exit 0 #place return here in your file
Este script se ejecutará en el inicio de su máquina automáticamente.