LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 07-29-2011, 01:22 PM   #1
sparrow3
LQ Newbie
 
Registered: Jun 2011
Location: Bracknell, United Kingdom
Posts: 5

Rep: Reputation: Disabled
privileges required to install software


I am about to install some software on Red Hat Linux.

I can understand all the instructions apart from the first.

It says

Log on to the UNIX system with the privileges required to install software. You can create an
account specifically for this purpose.

Caution: Do not install as root.

What does this mean exactly?
 
Old 07-29-2011, 01:33 PM   #2
MensaWater
LQ Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, CoreOS, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 7,831
Blog Entries: 15

Rep: Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669
It means the application does NOT require root access to run which is a good thing. Running apps as root is a good way to get your system hacked. The root user is the "super" user on UNIX/Linux so it override most security mechanisms on your server.

You can either run as a regular user (e.g. your non-root user account) or better yet create an application administrative user specifically for this app. We do the latter here for most applications as we have multiple people that might need to access the application administrative setup so could not run it as any of those individuals.

For example if your app was called GreatSoftware you might use useradd to create an account:
Code:
useradd -c "Great Software Admin" -d /opt/greatsw -n greatsw"
This creates a user called "greatsw" with a home directory of /opt/greatsw. You then login as the greatsw user (or do "su - greatsw" to switch to the greatsw user from whatever you're currently logged in as) then do the software install as the greatsw user.

In our environment we typically would first make a new filesystem for a new application to avoid having it fill up other directories (e.g. /opt might not be a separate filesystem so if Great Software filled up /opt it would actually fill up the root filesystem). We also use a predetermined range of user id numbers for such application accounts so would specify "-u <UIDnumber> in the useradd. We also would often want a functional group of users in the same group as the new adminstrative account so would add "g <GIDnumber> to have it in that same group.

Last edited by MensaWater; 07-29-2011 at 01:38 PM.
 
Old 07-29-2011, 03:39 PM   #3
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,623

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
you are going to have to provide a lot more information
Quote:
I am about to install some software on Red Hat Linux.
What software ?
WHAT version of RHEL ??????
Quote:
I can understand all the instructions apart from the first.
what instructions and for what ?
Quote:
Log on to the UNIX system
RHEL is NOT unix
IBM unix is unix
red hat is Linux
-- close but NOT THE SAME --
so WHAT is this "software"

Quote:
Caution: Do not install as root.
from this i am guessing that this unnamed software is some already build binary
for WHAT version of what operating system was it designed to be ran on ?
 
Old 07-30-2011, 11:30 AM   #4
sparrow3
LQ Newbie
 
Registered: Jun 2011
Location: Bracknell, United Kingdom
Posts: 5

Original Poster
Rep: Reputation: Disabled
Thank you for the comprehensive reply from MensaWater. I will give it a try on Monday when I am back at the Office with a user as suggested. I am testing with VMware so I will take a snapshot before I start so I can do no real harm. What about the line in the instructions "with the privileges required to install software" though - it made me think that the user had to be in some way special.

Thank you for the reply from "John VV". I was trying to install on Red Hat Linux version 4.1 I think - I will need to check when I am back in the Office on Monday to be sure. The software I have got to install is "Connectirect" which definitely stated it was supported on the version of Red Hat Linux that I had. The only instruction which worried me (the first) was "Log on to the UNIX system with the privileges required to install software. You can create an account specifically for this purpose. Caution: Do not install as root." - the bit that really worried me was "with the privileges required to install software" - I was thinking the user had to be in some way special and I had been trying to decide in what way special.
 
Old 07-30-2011, 07:27 PM   #5
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,623

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
Red Hat Linux version 4.1

That is a bit on the old side and 4.9 is current in the 4 series.( rhel6.1 is the current release)
So for 4.1 you must have a long term support contract from red hat so that backported security fixes can be installed on that older version of 4

contact your red hat support rep .
You ARE paying for that so ask them
http://www.redhat.com/support/
 
Old 08-01-2011, 04:36 AM   #6
sparrow3
LQ Newbie
 
Registered: Jun 2011
Location: Bracknell, United Kingdom
Posts: 5

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by John VV View Post
Red Hat Linux version 4.1

That is a bit on the old side and 4.9 is current in the 4 series.( rhel6.1 is the current release)
So for 4.1 you must have a long term support contract from red hat so that backported security fixes can be installed on that older version of 4

contact your red hat support rep .
You ARE paying for that so ask them
http://www.redhat.com/support/
I am back in the Office now. My 4.1 from memory was way off!

cat /etc/redhat-release gives

Red Hat Enterprise Linux AS release 4 (Nahant Update 8)

From what you say though that is still out of date! I will enquire about getting an update.
 
Old 08-01-2011, 01:21 PM   #7
MensaWater
LQ Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, CoreOS, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 7,831
Blog Entries: 15

Rep: Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669
RHEL 4 goes EOL as of February 2012.

Definitely need to plan on at least RHEL5 or better long term. However, what I wrote previously would also apply for RHEL4.
 
Old 08-01-2011, 02:16 PM   #8
alan99
Member
 
Registered: Mar 2010
Distribution: Debian
Posts: 180

Rep: Reputation: 31
Quote:
Originally Posted by sparrow3 View Post
Thank you for the comprehensive reply from MensaWater. I will give it a try on Monday when I am back at the Office with a user as suggested. I am testing with VMware so I will take a snapshot before I start so I can do no real harm. What about the line in the instructions "with the privileges required to install software" though - it made me think that the user had to be in some way special.

Thank you for the reply from "John VV". I was trying to install on Red Hat Linux version 4.1 I think - I will need to check when I am back in the Office on Monday to be sure. The software I have got to install is "Connectirect" which definitely stated it was supported on the version of Red Hat Linux that I had. The only instruction which worried me (the first) was "Log on to the UNIX system with the privileges required to install software. You can create an account specifically for this purpose. Caution: Do not install as root." - the bit that really worried me was "with the privileges required to install software" - I was thinking the user had to be in some way special and I had been trying to decide in what way special.
Perhaps that means choose a user who has group rights to /usr/local as that may be where the software will be wanting to install to.
 
Old 08-01-2011, 05:58 PM   #9
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,355

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
MensaWater's info in post #2 is the way to go
Also keep in mind his warning about EOL https://access.redhat.com/support/po...pdates/errata/

Last edited by chrism01; 08-01-2011 at 05:59 PM.
 
Old 08-01-2011, 08:41 PM   #10
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,642
Blog Entries: 4

Rep: Reputation: 3933Reputation: 3933Reputation: 3933Reputation: 3933Reputation: 3933Reputation: 3933Reputation: 3933Reputation: 3933Reputation: 3933Reputation: 3933Reputation: 3933
There are, really, two ways that you can "install software" on a Linux/Unix box:
  1. "Install a package." No thought-process required. (That is to say, "on your part." The good person who sweated bullets to build that package for you has already lost the appropriate number of hair-follicles on your behalf ... )
  2. "Do it yourself." (As they say on a classic-country radio station in my neck of the woods, "If you have a keyboard macro for ./configure && make && make install, you're one of us...")

It's a long-standing tradition among Linux/Unix shops that "local software" is installed into the directory /usr/local, and what I would please ask you to do next is to ... "Google It™."

Last edited by sundialsvcs; 08-01-2011 at 08:42 PM.
 
Old 08-02-2011, 10:15 AM   #11
MensaWater
LQ Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, CoreOS, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 7,831
Blog Entries: 15

Rep: Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669
Quote:
Originally Posted by sundialsvcs View Post
There are, really, two ways that you can "install software" on a Linux/Unix box:
  1. "Install a package." No thought-process required. (That is to say, "on your part." The good person who sweated bullets to build that package for you has already lost the appropriate number of hair-follicles on your behalf ... )
  2. "Do it yourself." (As they say on a classic-country radio station in my neck of the woods, "If you have a keyboard macro for ./configure && make && make install, you're one of us...")

It's a long-standing tradition among Linux/Unix shops that "local software" is installed into the directory /usr/local, and what I would please ask you to do next is to ... "Google It™."
You seem to be assuming the user meant one of the various FOSS offerings when he said "application". My assumption was that he was talking about something more canned from a 3rd party vendor (i.e. Oracle apps or something like that). Simply "installing a package" doesn't quite match what you do for such things and DIY isn't an option usually. My assumption was based on what he was being given as instructions in the first place. Of course my assumption could be invalid.

Also /usr/local may or may not be where such applications usually reside. For example putting Oracle in /usr/local isn't prohibited but it wouldn't be expected by most Oracle users. Other things like Nagios do expect to reside there but don't have to do so.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Authentication is required to install software packages For Knoppix jonnynitro138 Linux - Newbie 2 07-25-2011 02:03 AM
Privileges are required to change gconf system values kumpaka Linux - Networking 1 01-04-2011 07:47 AM
Don't have privileges to install necessary packages?!!I am root!!!! jason.rohde Fedora 6 07-31-2008 02:46 AM
You don't have the necessary privileges to install local packages alienclone Linux - Newbie 3 07-28-2008 06:35 AM
How to install gaim without root privileges? Sinha Linux - General 3 01-10-2006 09:26 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:19 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration