167k views
5 votes
Using the command line, create a symbolic link to the /etc in the /root/Desktop folder.

1 Answer

3 votes

Answer:

ln -s /etc /root/Desktop

Step-by-step explanation:

ln is the command to create links and -s is the flag to create symbolic links between element1 and element2

Example:

ln -s /etc /root/Desktop

Create a symbolic link between folder etc and folder Desktop

User Matt Sach
by
5.3k points