Program permission (to install etc)


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Program permission (to install etc)
# 1  
Old 10-03-2007
Program permission (to install etc)

hi! all
i've setup my PC with FreeBSD 6.2 and i've created login ID for my friends
i would like to allow them to install program (since they're requesting to use bnc/psybnc) using their shell

however, they have encounter such error to install the program
Quote:
$ make menuconfig
Initializing Menu-Configuration[*] Running Conversion Tool for older psyBNC Data.
gcc:Permission denied
*** Error code 1

Stop in /usr/home/test/psybnc.
they have to sudo in order to run "make"

how is this possible for me to allow them to run the program by themself without assigning them to be in sudo group?

thanks all...
# 2  
Old 10-03-2007
Quote:
Originally Posted by rdns
how is this possible for me to allow them to run the program by themself without assigning them to be in sudo group?
They should install the program in a directory they are allowed to write into, such as one under their home directory.

However, as a system administrator, I suggest you ask people the programs they will want to run and you can decide which ones you install so they can all share them.
# 3  
Old 10-03-2007
hurm... i thougt it is gcc permission
the user cant even query the gcc version
Quote:
$ gcc --version
gcc: Permission denied
$
and i noticed this in gcc folder
Quote:
-rwxr-x--- 2 root compiler 187176 Apr 20 20:54 /usr/bin/gcc
how do i enable gcc permisson for them?
# 4  
Old 10-03-2007
chmod o+x /usr/bin/gcc

or add people to the compiler group.

Then have a look at the read permissions in /usr/include and /usr/lib
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Install some Linux program on Solaris

Hi I have a problem with install some Linux program on Solaris. I use Ubuntu on everyday. At my university My professor wants from me to install some program from Linux on Solaris. I try with many files, but all not run. I can't deal with it. Do you know how install .deb files on Solaris? Hmm... (3 Replies)
Discussion started by: Tsuisou
3 Replies

2. UNIX for Dummies Questions & Answers

Running program from local install?

Dear forum, This is my first post here, nice to meet you all. My question might be a beginner one, also it might have been answered before (I searched but found nothing). I am a new Unix user. I am using a terminal to connect to Ubuntu 12.04.2 LTS (GNU/Linux 3.2.0-48-generic x86_64);... (10 Replies)
Discussion started by: athina
10 Replies

3. UNIX and Linux Applications

Cannot compile/install gnu program

Hello, I'm trying to install ansifilter which is a program that translates ansi text to HTML. The idea is to install it on AIX 7.1 but is failing. All de appropriate gcc libraries and requirements for this software were installed successfully, but when I do the gmake I get the following... (4 Replies)
Discussion started by: bazajav
4 Replies

4. AIX

Cannot compile/install gnu program on AIX

Hello, I'm trying to install ansifilter which is a program that translates ansi text to HTML. The idea is to install it on AIX 7.1 but is failing. All de appropriate gcc libraries and requirements for this software were installed successfully, but when I do the gmake I get the following... (0 Replies)
Discussion started by: bazajav
0 Replies

5. UNIX for Advanced & Expert Users

Install gcc with 750 permission

Hi All, I need gcc with permission 750, while installation itself. or how can i change the permission without using chmod command. My requirement is User and Group only use the gcc. since i am having ldap users. Thanks in advance. (1 Reply)
Discussion started by: rajamohan
1 Replies

6. UNIX for Dummies Questions & Answers

Unable to run program, Permission denied

Hi All, I am working on Solaris Sparc 9 and I developed application and in that I want to open any file when any action is happened but when I am trying to do the same.I am getting the error -- "Error launching /test.txt", "", "Process.execAndWait", "java.io.IOException: Cannot run... (0 Replies)
Discussion started by: smartgupta
0 Replies

7. UNIX for Dummies Questions & Answers

permission to install software

Hello everyone, I want to install a software on an external hard disk. I used Fedora core 6 whose default shell is bash. As user I have changed to sh shell because in order to install I have to use the sh shell. I had changed permission on all the files using sh-3.1$ chmod +x... (6 Replies)
Discussion started by: sitij109
6 Replies

8. Programming

how I know owner of file and its permission through c program

Helo I havea particular file. how I know ownerof the file as well as file permission using c program. Regards, Amit (4 Replies)
Discussion started by: amitpansuria
4 Replies

9. Shell Programming and Scripting

start a program with other user's permission

I have some of programs in unix system which are to started with one_user say "xxxx". I have sudo permission if i start these programs with sudo it shows root permission. But i want these programs permession should be "xxxx". I tried "su user_name -c Program_name" but it is not... (3 Replies)
Discussion started by: srikanthus2002
3 Replies

10. UNIX for Dummies Questions & Answers

How to know what program is install on Unix server?

I would like to know how to check what program is install on the Unix system? like the add/remove inside the control panel can show what program installed. (4 Replies)
Discussion started by: zp523444
4 Replies
Login or Register to Ask a Question