Sponsored Content
Full Discussion: How to install Unix
Top Forums UNIX for Dummies Questions & Answers How to install Unix Post 98831 by hrach_gulzadyan on Sunday 12th of February 2006 12:24:01 AM
Old 02-12-2006
Data How to install Unix

[B][B]Can [B][B]anyone tell me how to install Unix.

Last edited by hrach_gulzadyan; 02-12-2006 at 02:00 AM.. Reason: Can not install unix
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Can we install Unix in PC or imac?

I'm a beginner in Unix OS. I really want to know what kind of hardware I need in order to install the Unix OS.(I know Linx can be installed in both Mac & PC, but not Unix) Thanks to let me ask such question here. (1 Reply)
Discussion started by: Mutsu
1 Replies

2. UNIX for Dummies Questions & Answers

Unix Install

Hi I'm a newbie here and, in Unix. I bought a book to learn the code. I have been in different websites to find information on how to install Red Hat Linux 7.2 on my system, but I may not understand what's going on. All I see on the sites is ftp sites for download but when you click on the links... (1 Reply)
Discussion started by: Millienc
1 Replies

3. UNIX for Dummies Questions & Answers

can i install UNIX beside Windows XP???

Hi guys i'm new here .. and actually i wanna anyone answer my question it's simple the question is " can i setup or install UNIX beside windows XP?" i need answer plz thanks :) (11 Replies)
Discussion started by: M_Hafez
11 Replies

4. UNIX for Dummies Questions & Answers

How to install Unix on my pc

Hi guys, I have used Unix while I was a student but want to install it on my pc. My question is How do I install UNIX on my pc which has Windows XP already installed and running? I have a bootable Unix 6.0 CD. thanks (6 Replies)
Discussion started by: asif iqbal
6 Replies

5. UNIX for Dummies Questions & Answers

How do I install Unix?

Hi, Im completely new to Unix installations, but have done some unix work so some commands are not new to me. But I would like to start my own Unix FTP server, but I have no clue where to start. I have a computer that i soon format the HD on (Was Windows,Intel computer), so I want to use... (3 Replies)
Discussion started by: helpMeGetStarte
3 Replies

6. UNIX for Dummies Questions & Answers

How do I install things on Unix?

I am really confused as to how to install a piece of software on Unix especially after having worked with Windows for over 10 years. I see the tar.gz, tar.gz2 and rpm packages. How do I install these things? Do I have to be a root to do this? If its only the root, then how do users generally... (4 Replies)
Discussion started by: Legend986
4 Replies

7. UNIX for Dummies Questions & Answers

Looking to install Unix on my Mac

I know how to install Unix or Linux on my Mac using bootcamp, I installed the Ubuntu distribution of Linux on my Mac. Basically I'm looking for advice on what OS I should learn with. I am fiercely interested in programming, and am learning C++ and Python at the moment. Anyways, everyone has... (5 Replies)
Discussion started by: Micolejr2
5 Replies

8. UNIX for Dummies Questions & Answers

Please Help I Can't Install Unix On My Machine

Hi everybody; How are you? I have a machine with these components motherboard Gigabyet processor Intel RAM Kingstone 1GB HDD Westerndigital 160GB DVD ASUS I use this machine for labs, I was running WinXP I am now taking one of Sun's exams, I formated the HDD and get... (3 Replies)
Discussion started by: katilina
3 Replies

9. UNIX for Dummies Questions & Answers

How to install Unix??

Hi Experts, I am a new born trying to start learning UNIX so please be patient. I have downloaded Free BSD 9.0 Release i386 All recently.Upon extracting it I found four Disc Image File. FreeBSD-9.0-RELEASE-i386-bootonly FreeBSD-9.0-RELEASE-i386-disc1 FreeBSD-9.0-RELEASE-i386-dvd1... (1 Reply)
Discussion started by: RishabhK
1 Replies

10. UNIX for Beginners Questions & Answers

Install git on UNIX

How can I install git on unix using wget? (7 Replies)
Discussion started by: Akash BHardwaj
7 Replies
install(1M)						  System Administration Commands					       install(1M)

NAME
install - install commands SYNOPSIS
/usr/sbin/install -c dira [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -f dirb [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -n dirc [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -d | -i [-m mode] [-u user] [-g group] [-o] [-s] dirx... /usr/sbin/install [-m mode] [-u user] [-g group] [-o] [-s] file [dirx]... DESCRIPTION
install is most commonly used in ``makefiles'' (see make(1S)) to install a file in specific locations, or to create directories within a file system. Each file is installed by copying it into the appropriate directory. install uses no special privileges to copy files from one place to another. The implications of this are: o You must have permission to read the files to be installed. o You must have permission to copy into the destination directory. o You must have permission to change the modes on the final copy of the file if you want to use the -m option. o You must be super-user if you want to specify the ownership of the installed file with the -u or -g options. If you are not the super-user, the installed file is owned by you, regardless of who owns the original. Note that if the ROOT environment variable is set, each of the default directory paths are prefixed by its value (for example, $ROOT/bin and so on). install prints messages telling the user exactly what files it is replacing or creating and where they are going. If no options or directories (dirx ...) are given, install searches a set of default directories ( /bin, /usr/bin, /etc, /lib, and /usr/lib, in that order) for a file with the same name as file. When the first occurrence is found, install issues a message saying that it is overwriting that file with file, and proceeds to do so. If the file is not found, the program states this and exits. If one or more directories (dirx ...) are specified after file, those directories are searched before the default directories. This version of install (/usr/sbin/install) is not compatible with the install binaries in many versions of Unix other than Solaris. For a higher degree of compatibility with other Unix versions, use /usr/ucb/install, which is described in the install(1B) man page. OPTIONS
The following options are supported: -c dira Install file in the directory specified by dira, if file does not yet exist. If it is found, install issues a message saying that the file already exists, and exits without overwriting it. -f dirb Force file to be installed in given directory, even if the file already exists. If the file being installed does not already exist, the mode and owner of the new file is set to 755 and bin , respectively. If the file already exists, the mode and owner is that of the already existing file. -n dirc If file is not found in any of the searched directories, it is put in the directory specified in dirc. The mode and owner of the new file is set to 755 and bin, respectively. -d Create a directory. Missing parent directories are created as required as in mkdir -p. If the directory already exists, the owner, group and mode is set to the values given on the command line. -i Ignore default directory list, searching only through the given directories (dirx ...). -m mode The mode of the new file is set to mode. Set to 0755 by default. -u user The owner of the new file is set to user. Only available to the super-user. Set to bin by default. -g group The group id of the new file is set to group. Only available to the super-user. Set to bin by default. -o If file is found, save the ``found'' file by copying it to OLDfile in the directory in which it was found. This option is use- ful when installing a frequently used file such as /bin/sh or /lib/saf/ttymon, where the existing file cannot be removed. -s Suppress printing of messages other than error messages. USAGE
See largefile(5) for the description of the behavior of install when encountering files greater than or equal to 2 Gbyte ( 2^31 bytes). ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ SEE ALSO
chgrp(1), chmod(1), chown(1), cp(1), install(1B), make(1S), mkdir(1), attributes(5), largefile(5) SunOS 5.11 3 Nov 2005 install(1M)
All times are GMT -4. The time now is 11:39 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy