Sponsored Content
Full Discussion: UNIX Training
Top Forums UNIX for Dummies Questions & Answers UNIX Training Post 43521 by syrixx on Tuesday 18th of November 2003 04:06:10 PM
Old 11-18-2003
Question UNIX Training

Hello all, I am probably the newest newb in here and would really appreciate some (as much as possible) help on learning UNIX. If anyone is familiar with any non boot camp schools in the NY area, preferrably instructor-led, please refer me to a link or list them in a reply. Also, any information on books, recommended OS usage and anything to get started would be much obliged. Thanks in advance.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX Fundamentals - Training

Does anyone know of some companies in the United States, preferably close to Utah that teach a crash course like for a week on UNIX fundamentals? I have looked everywhere on the net for such places, but have yet to find such a company. Thank you in advance. (1 Reply)
Discussion started by: quintak
1 Replies

2. Post Here to Contact Site Administrators and Moderators

Unix Familiarisation Training

As a civilian Admin clerk with a government dept I have been asked to locate a training firm who provides Unix familiarisation training - this request has come from a dept which includes Air Traffic Controller & Radio Technicians. I am not personally familiar with Unix and have been unable to... (1 Reply)
Discussion started by: Heather K-Ryan
1 Replies

3. UNIX for Dummies Questions & Answers

Unix training Video's

Hello any body knows a website that can Purchase and download Video training for unix ?? (1 Reply)
Discussion started by: wickedsoul
1 Replies

4. UNIX for Dummies Questions & Answers

UNIX Training?

At work I have to restart applications and install upgrades to applications running on Solaris 10. Its pretty basic stuff but I have little experience of Unix so it can be a bit hairy at times. Work have offered to send me on some training but I have to select the course/training. I'm not... (2 Replies)
Discussion started by: Sepia
2 Replies

5. UNIX for Dummies Questions & Answers

Unix Training-where, when etc.

I'm being asked to go and take a training course in Advanced Unix and Perl. The main reason is the amount of information needed to get up to speed a short period of time, which is what we're limited on. Travel is fine. Can anyone suggest a good resource for researching the where and when for... (1 Reply)
Discussion started by: gavineq
1 Replies

6. UNIX for Dummies Questions & Answers

training unix set up for a p.c.

I'm looking for a free unix download(for a p.c. which I think is running xp) to simulate or mirror a unix operating system to teach a friend basic unix skills for an interview. I saw the solaris link, but couldn't really tell if it would work on a p.c. And I don't want to mess with his operating... (9 Replies)
Discussion started by: mmtemp
9 Replies

7. UNIX for Dummies Questions & Answers

UNIX/solaris training

I am new to UNIX and somewhat familiar with Solaris. Can you suggest any good (simple English) books that can help me with understanding and learning UNIX? (1 Reply)
Discussion started by: iamnew2solaris
1 Replies

8. UNIX for Dummies Questions & Answers

Basic UNIX Training

I'm wondering where a good place to start is for basic UNIX training. Due to a shift of responsibilities at work, I am now the admin for a product called AutoSys. I have close to zero knowledge in the subject area. :wall: (3 Replies)
Discussion started by: Cjw_55106
3 Replies

9. Shell Programming and Scripting

Unix online training

Hi, I am very new to unix shell scripting.I want to learn shell scripting to a moderate level. could any one of you suggest me who can give an online training on unix shell scripting . I am opting for online training as I am working in day hours . If any experts here are giving any online... (2 Replies)
Discussion started by: prabhu_kumar
2 Replies
LN(1)							    BSD General Commands Manual 						     LN(1)

NAME
link, ln -- make links SYNOPSIS
ln [-Ffhinsv] source_file [target_file] ln [-Ffhinsv] source_file ... target_dir link source_file target_file DESCRIPTION
The ln utility creates a new directory entry (linked file) which has the same modes as the original file. It is useful for maintaining mul- tiple copies of a file in many places at once without using up storage for the ``copies''; instead, a link ``points'' to the original copy. There are two types of links; hard links and symbolic links. How a link ``points'' to a file is one of the differences between a hard and symbolic link. The options are as follows: -F If the target file already exists and is a directory, then remove it so that the link may occur. The -F option should be used with either -f or -i options. If none is specified, -f is implied. The -F option is a no-op unless -s option is specified. -h If the target_file or target_dir is a symbolic link, do not follow it. This is most useful with the -f option, to replace a symlink which may point to a directory. -f If the target file already exists, then unlink it so that the link may occur. (The -f option overrides any previous -i options.) -i Cause ln to write a prompt to standard error if the target file exists. If the response from the standard input begins with the char- acter 'y' or 'Y', then unlink the target file so that the link may occur. Otherwise, do not attempt the link. (The -i option over- rides any previous -f options.) -n Same as -h, for compatibility with other ln implementations. -s Create a symbolic link. -v Cause ln to be verbose, showing files as they are processed. By default, ln makes hard links. A hard link to a file is indistinguishable from the original directory entry; any changes to a file are effectively independent of the name used to reference the file. Hard links may not normally refer to directories and may not span file sys- tems. A symbolic link contains the name of the file to which it is linked. The referenced file is used when an open(2) operation is performed on the link. A stat(2) on a symbolic link will return the linked-to file; an lstat(2) must be done to obtain information about the link. The readlink(2) call may be used to read the contents of a symbolic link. Symbolic links may span file systems and may refer to directories. Given one or two arguments, ln creates a link to an existing file source_file. If target_file is given, the link has that name; target_file may also be a directory in which to place the link; otherwise it is placed in the current directory. If only the directory is specified, the link will be made to the last component of source_file. Given more than two arguments, ln makes links in target_dir to all the named source files. The links made will have the same name as the files being linked to. When the utility is called as link, exactly two arguments must be supplied, neither of which may specify a directory. No options may be sup- plied in this simple mode of operation, which performs a link(2) operation using the two passed arguments. COMPATIBILITY
The -h, -i, -n and -v options are non-standard and their use in scripts is not recommended. They are provided solely for compatibility with other ln implementations. The -F option is FreeBSD extention and should not be used in portable scripts. SEE ALSO
link(2), lstat(2), readlink(2), stat(2), symlink(2), symlink(7) STANDARDS
The ln utility conforms to IEEE Std 1003.2-1992 (``POSIX.2''). The simplified link command conforms to Version 2 of the Single UNIX Specification (``SUSv2''). HISTORY
An ln command appeared in Version 1 AT&T UNIX. BSD
February 14, 2006 BSD
All times are GMT -4. The time now is 09:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy