Algo poco habitual en estos entornos
Tengo una carpeta ubicada en un disco:
/media/virtual/DATOS/clases
Quiero crear un acceso directo a este directorio "clases" en mi escritorio. Utilizo el comando "ln·
man ln
DESCRIPTION
In the 1st form, create a link to TARGET with the name
LINK_NAME. In the 2nd form, create a link to TARGET in the
current directory. In the 3rd and 4th forms, create links to
each TARGET in DIRECTORY. Create hard links by default, sym‐
bolic links with --symbolic. By default, each destination
(name of new link) should not already exist. When creating
hard links, each TARGET must exist. Symbolic links can hold
arbitrary text; if later resolved, a relative link is inter‐
preted in relation to its parent directory.
-s
-s, --symbolic
make symbolic links instead of hard links
Cómo hacerlo
Requiere estar montado el disco para que funcione
Tengo una carpeta ubicada en un disco:
/media/virtual/DATOS/clases
Quiero crear un acceso directo a este directorio "clases" en mi escritorio. Utilizo el comando "ln·
man ln
DESCRIPTION
In the 1st form, create a link to TARGET with the name
LINK_NAME. In the 2nd form, create a link to TARGET in the
current directory. In the 3rd and 4th forms, create links to
each TARGET in DIRECTORY. Create hard links by default, sym‐
bolic links with --symbolic. By default, each destination
(name of new link) should not already exist. When creating
hard links, each TARGET must exist. Symbolic links can hold
arbitrary text; if later resolved, a relative link is inter‐
preted in relation to its parent directory.
-s
-s, --symbolic
make symbolic links instead of hard links
Cómo hacerlo
ln -s /media/virtual/DATOS/clases ~/Escritorio
Requiere estar montado el disco para que funcione
Comentarios
Publicar un comentario