![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| some questions about UNIX 5.0.6 , Help me please | mrr53 | SCO | 2 | 10-27-2007 02:53 AM |
| 2 Unix questions | kaka | UNIX for Dummies Questions & Answers | 8 | 10-20-2007 11:56 PM |
| New To Unix - Some Questions! | yahoo14 | UNIX for Dummies Questions & Answers | 1 | 06-08-2006 01:43 AM |
| Some UNIX Questions! | JoeTheMan | UNIX for Dummies Questions & Answers | 1 | 01-19-2006 01:30 AM |
| I have a few questions about Unix.. | SolidWing68 | UNIX for Dummies Questions & Answers | 1 | 08-11-2005 05:22 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
unix questions
Hi
I got asked over the phone for interview can anyone answer the following #1 What is the command to copy files from 1 Unix machine to another Unix machine, providing that the 2 machines are in the same network. I think its cp, what is the one machine to another machine thing #2 How to list dynamic dependencies of executable files or shared objects? #3 What is one of the disadvantages of using symbolic link? |
|
||||
|
Hi,
Let me try to answer your questions. #1 What is the command to copy files from 1 Unix machine to another Unix machine, providing that the 2 machines are in the same network. Ans: SCP should be the way to do it. #2 How to list dynamic dependencies of executable files or shared objects? Ans: ldd --> list dynamic dependencies of executable files or shared objects. Check out man page of ldd for more info. #3 What is one of the disadvantages of using symbolic link? Ans: I guess it is about softlink , then one disadvantage can be "it can be linked with the file which is not existing actually". If it is for Hardlink then one disadvantage would be "It can not cross file system". PS: Plz correct me if am wrong. ![]() |
|
||||
|
Hi,
To copy a file from another host use the command: rcp source_file destination_fileThe source file is given as: system_name:filenameWhen given as a relative pathname, the filename is interpreted relative to your home directory on the remote host. To copy a file from your home directory on another host to your current directory on your local host: rcp goya:notes part1.txtTo copy a file from a subdirectory in your account on a remote host to a subdirectory on your local host: rcp ubik:gnu/rcs/README tmp/gnu_READMETo copy a file from a remote host on which you have an account under another username: rcp joe@pollux:News/alt.hypertext tmp/hypertextThanks & RegardsVijay. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|