Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question
In Linux, create a soft/symbolic link called mysoftlink from file kevintest.txt.
Answer
ln -s kevintest.txt mysoftlink
^^ Note the order, first the original file, then the link

Question
In Linux, create a soft/symbolic link called mysoftlink from file kevintest.txt.
Answer
?

Question
In Linux, create a soft/symbolic link called mysoftlink from file kevintest.txt.
Answer
ln -s kevintest.txt mysoftlink
^^ Note the order, first the original file, then the link
If you want to change selection, open document below and click on "Move attachment"

15. Symbolic and Hard Links
reference to another file. It can even contain a reference to a directory. In either case, programs operating on the link will actually see the file or directory it points to. Try 5 mkdir mydir <span>ln -s mydir mydir2 ls -al . touch ./mydir/file1 touch ./mydir2/file2 ls -al ./mydir ls -al ./mydir2 The directory mydir2 is a symbolic link to mydir2 and appears as though it is a replica of the original.

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.