Desmontar /opt cuanto esta busy UNIX
# cd /
# umount /opt (device busy)
Determinar que procesos esta usando /opt
# cd /
# fuser -cu /opt
# kill -9 PID1 PID2
# umount /opt
Alternativa para desmontar un fs
# cd /
# fuser -ck /opt
# umount /opt
Forzar:
# cd /
# umount -f /opt
# umount /opt (device busy)
Determinar que procesos esta usando /opt
# cd /
# fuser -cu /opt
# kill -9 PID1 PID2
# umount /opt
Alternativa para desmontar un fs
# cd /
# fuser -ck /opt
# umount /opt
Forzar:
# cd /
# umount -f /opt
0 Response to Desmontar /opt cuanto esta busy UNIX
Publicar un comentario