Linking Directories...


 
Thread Tools Search this Thread
Special Forums UNIX Desktop Questions & Answers Linking Directories...
# 1  
Old 09-08-2002
Question Linking Directories...

Hi there,

I am very new to UNIX. Currently, I am running Mac OS X. I set up a FTP server on my computer so that I can transfer files back and forth between my computer at home and at work. All my data and files are located in a directory in another drive, but when I log in, I would be in my home directory, which is another drive. I am trying to create a directory (link) in my home directory, which when I double click on it or cd to it, it would bring me to the directory located in the other drive.

I can do that under Mac OS X environment with no problem, but then, I think file structure with 'alias' is different from the Mac and the rest of the computing world. Because when I try to FTP to my account or using the Network Neighbourhood connecting from Windows, that 'alias' is a file instead of a shortcut to a directory.

Any suggestion for linking these directories would help. Thanks. Smilie
# 2  
Old 09-08-2002
read 'man ln'. You want to create a soft link to the other drive within your own directory.
cerberusofhate
# 3  
Old 09-10-2002
Re: Linking Directories...

Quote:
Originally posted by floppiless

I am very new to UNIX. Currently, I am running Mac OS X. I set up a FTP server on my computer so that I can transfer files back and forth between my computer at home and at work. All my data and files are located in a directory in another drive, but when I log in, I would be in my home directory, which is another drive. I am trying to create a directory (link) in my home directory, which when I double click on it or cd to it, it would bring me to the directory located in the other drive.
I would abandon FTP alltogether. Passwords in FTP are sent clear text and anybody with a sniffer on your work network can pull your username and password.

Take a look at using OpenSSH on your box so that you can use sftp (secure ftp) and scp (secure copy) to move files from work to home so that your username and password cannot be compromised so easily.

With secure copy, you can copy from/to any sub-dir that you have access to. It's quick and fairly painless once you learn the command line syntax.
# 4  
Old 09-14-2002
Make sure that OpenSSH is up to date (at least 3.4) Smilie
bsdjunkie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Giving read write permission to user for specific directories and sub directories.

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. This is for Solaris. Please help. (1 Reply)
Discussion started by: blinkingdan
1 Replies

2. UNIX for Dummies Questions & Answers

List the directories, having given pattern in the directories name, sorted by creation date

It is for HP-Unix B.11.31. Requirement: 1. List the directories, having given pattern in the directories name, sorted by creation date. Example: Directories with name "pkg32*" or "pkg33*" 2. On the output of 1. list the directories by creation date as sort order, with creation date... (2 Replies)
Discussion started by: Siva SQL
2 Replies

3. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

4. UNIX for Dummies Questions & Answers

Using grep command to find the pattern of text in all directories and sub-directories.

Hi all, Using grep command, i want to find the pattern of text in all directories and sub-directories. e.g: if i want to search for a pattern named "parmeter", i used the command grep -i "param" ../* is this correct? (1 Reply)
Discussion started by: vinothrajan55
1 Replies

5. Shell Programming and Scripting

How to list all the directories, sub directories in a mount along with size in ascending order?

Hi , I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In a particular mount, have to list all the directories and sub directories along with size of the directory and sub directory in ascending order. Please help me in this regard and many... (4 Replies)
Discussion started by: nmakkena
4 Replies

6. Shell Programming and Scripting

Script for parsing directories one level and finding directories older than n days

Hello all, Here's the deal...I have one directory with many subdirs and files. What I want to find out is who is keeping old files and directories...say files and dirs that they didn't use since a number of n days, only one level under the initial dir. Output to a file. A script for... (5 Replies)
Discussion started by: ejianu
5 Replies

7. Shell Programming and Scripting

check if multiple directories exist else create missing directories

Hi , I 'm trying to check if multiple directories exist on a server, if not create the missing ones and print " creating missing directory. how to write this in a simple script, I have made my code complex if ; then taskStatus="Schema extract directory exists, checking if SQL,Count and... (7 Replies)
Discussion started by: ramky79
7 Replies

8. UNIX for Dummies Questions & Answers

is linking possible?

how would i link 2 files together? is it the same as copying? (1 Reply)
Discussion started by: trob
1 Replies

9. Programming

Linking problem while linking to shared library

Hi I'm getting ld: fatal: option -h and building a dynamic executable are incompatible ld: fatal: Flags processing errors When I run ld -shared -L/usr/dt/lib -lDtSvc -o builtin.so Workspace.o after running gcc -fPIC -I/usr/X11R6/include -I/usr/dt/include -c Workspace.c I'm... (6 Replies)
Discussion started by: laho
6 Replies
Login or Register to Ask a Question