Red Hat / Fedora :: Possible To Make Install With Just Admin Rights
May 25, 2010
I have moved to a new place and they expect me to work without root access to my machine, but I need to compile and make some software. However I get the following error:
mkdir: cannot create directory '/usr/local/ope': Permission denied
chmod: cannot access '/usr/local/ope': No such file or directory
mkdir: cannot create directory '/usr/local/ope': No such file or directory
chmod: cannot access '/usr/local/ope/bin': No such file or directory
make[1]: *** [/usr/local/ope/bin] Error 1
make[1]: Target '_installall' not remade because of errors.
I have been allegedly been given admin rights - but do I need root to do this?
View 4 Replies
ADVERTISEMENT
Jul 1, 2011
I would like to install a more modern version of GNU utils (coreutils) on a debian linux system where I have no admin rights. Is there a way to do that?
The rationale is that I need a more modern version to the one installed in the system where I intend to run my analysis. I am trying to use "sort -R" or "shuf" to randomize lines in a big text file.
View 1 Replies
View Related
Sep 30, 2010
I am using linux mint and have installed Netbeans on it but whenever I run netbeans from accounts other than root it throws an error for not having permission to start glassfish server of netbeans. I also tried running this application using run as administrator option but then the application does not start.
So is there a way to assign netbeans admin rights permanently so that whenever I start this application from other accounts I should not face this error?
View 2 Replies
View Related
Apr 30, 2010
I cant change my user settings (password, login screen settings etc) after upgrading to 10.4 on my desktop pc. It says I don't have rights. I'm the only user, no other profiles. Otherwise seems to be working fine!
View 1 Replies
View Related
Oct 22, 2010
I am only user on this ubuntu 10.10 install. I have admin rights but when I try to change some settings via Ubuntu tweak unlock or alter user and groups via advanced tab I never get the option to enter my password. I have added a new user 'tempuser' via safe mode and this user is administrator too but everything works fine from this user..
Results from $ grep admin /etc/group
lpadmin:105:heath,tempuser
admin:119:firstuser,tempuser,heath
Results from groups
admin adm dialout fax cdrom floppy tape audio dip video plugdev fuse lpadmin sambashare
I am thinking of making a fresh install if I cant sort this but would like to fix if possible.
View 9 Replies
View Related
May 4, 2011
I've got a Dell laptop with a dual boot with Ubuntu and Windows 7, but I want windows 7 to be the default OS. I can't seem to find anything on Ubuntu with any information. I had a look at some forums and it said I need to go into admin, but I don't think I have it. Does anyone know how to get Admin rights and how to change the default OS?
View 4 Replies
View Related
Feb 2, 2010
I am semi new to linux and i was getting the hang of it until just recently. I'm trying to do some web design using php and mysql. In my reference material (the all in one desktop reference {for dummies}). At some point I needed to do something in /var/www but I ran into a permissions problem so I typed:
Code:
chgrp -v -r guy0203 /var/www
405 chgrp -v -R guy0203 /var/www
406 chown -v -R guy0203 /var/www
Afterwards in some subsequent step it suggested putting the files in /usr/src/mysql. Since I didn't have that folder I used mkdir and created it. Then I tried adding the files I needed to that folder and got denied on the grounds of not having permissions once again. So tried something like this:
Code:
451 chmod 777 /usr/
452 sudochmod 777 /usr/
453 sudo chmod 777 /usr/
It was a 755 originally but I couldn't copy those commands. It turns out as that I had two terminals open in different desktops. one of them was a root terminal. It was at this point that realized that I was in that root terminal and decided I was done 'learning' for the day. I decided to listen to some music (which is located in my windows partion) and ran into a problem. The prompt that pops up to normally asks me for my admin PW to mount the drive. Now just vibrates like an incorrect entry was received, says authentication error and says I am not authorized to mount that drive then I went back to terminal to fix it, and when I tried to elevate myself to SU:
I got this:
Code:
guy0203@guy0203-laptop:~$ sudo su
sudo: must be setuid root
guy0203@guy0203-laptop:~$
I don't know what to do now but I think I totally killed this OS. If so is there anyway to save things if I have to reinstall?
View 9 Replies
View Related
Jan 10, 2011
I created a custom linux distro that originated from ubuntu server and I installed time-admin and want to change the time without admin rights. Is this possible?
View 1 Replies
View Related
Feb 4, 2011
I have OpenVPN setup and running on my home server (Lucid Lynx). I move around alot and use Portable OpenVPN to connect to my home server. The problem is a lot of the computers I use I do not have admin rights to install the necessary routes to connect. So my question is this. Can OpenVPN be configured to use PPTP protocol? Because I have PortableVPN on my U3 flash drive and that VPN client does not need admin rights to run. If OpenVPN cannot do this, and from my understanding of its archetecture it cannot, but I must admit i am no authority on the matter. Can you suggest a workable solution, ie. install and setup this server software and use this portable client software.
View 1 Replies
View Related
Jul 14, 2011
I have created a new user using sudo adduser "user1" from the root .but this user does not have full admin rights...How to give full access to this user1?
View 3 Replies
View Related
Jul 16, 2009
I'm having a bit of a problem after joining Ubuntu 9.04 to my company's Windows Domain. I can log in and use sudo just fine but I don't have access to certain things in my menu (i.e. "Add/Remove Software") and I can't open the User Manager. I manually edited the /etc/group file as root and added my username (username@domain) to the appropriate groups but still no luck.
View 2 Replies
View Related
Jan 8, 2011
One of the feature in my application involve changing of hardware setting. This require the user to be root or have administrative right.Before my application enable that feature, I want it to check whether the user is "root" or not, or whether user use "sudo" command to run the application or not, or whether the user has administrative rights or not.What are the codes or library that can do this?
NOTE: Sometimes, advanced linux user may set the user id of root to something else other than 0. So, getuid() may not be helpful in this case.
View 4 Replies
View Related
Feb 12, 2011
I'm a new Ubuntu user and a Python programmer, it's the first time that I use Python in Ubuntu so it's a bit confusing me. If I want to save a Module or something in a specified map, I get 'Errno 13', it says that I don't have permission to edit, do thing in that map. And this is also for importing files with Python. I logged in from Terminal with 'sudo -i' and closed Terminal, but the problem keeps repeating. How do I login as Admin or Root and stay as Admin or Root? I need right to edit/read files as well as root and normal user.
An example:
Python file:
test.py ->
test = open('/a.txt', 'w')
test.write('Test - Test - Test')
test.close
When I execute this, I get in the Python IDLE the 'Errno 13' problem and below the 'Errno 13' it says that I don't have permission. Who know how to stay logged in as root, even if the user has not logged in or isn't this possible, if it isn't then I just want to get files moving, editing/erasing etc.
View 9 Replies
View Related
Jul 23, 2010
i have a ubuntu server box with samba 3 as domain controller with all windows 7 clients.i am wanting all users to have local admin rights so they can install programs etc.
View 1 Replies
View Related
Dec 4, 2009
how to make a admnistrator account and change normal user role admin role i want to modify file system
View 3 Replies
View Related
Apr 10, 2010
I think I've installed MediWiki as you can see (I Just follow some steps from a site...)but whateveI done (Disabling SELinux) making /var/www/html/wiki/ and var/www/html/wiki/readable to my current user (even I make my regular user the owner of all directory and files in these folderes) but nothing happenthen according to some advice I changed the permission to 644 but I become worse and now I don't have the previous picture (on that at least the wiki theme could be seen sth ) but now I encountering this error message:
Code:
Forbidden
You don't have permission to access /wiki/ on this server.
[code]....
View 9 Replies
View Related
Sep 2, 2010
how would i make an existing user on kubuntu 8.10 an administrator with root access?
View 3 Replies
View Related
Jan 23, 2010
I try to install my printer again after reinstall ubuntu 9.04. ("downgraded from 9.10"). Instead of asking for the local-user-login password, as it does for other system changes, it asks for a root password that I never had. What happened? How can I set this right?I made a printscreen.
View 3 Replies
View Related
May 20, 2010
It seems xdg-su is unable to accept my admin/root password whenever I try to install a new AIR application or make an upgrade.Upon every attempt to add my admin/root password I get an error: "su: Authentication failure". In the end: "Error# 5100"!I have recently upgraded to Lucid, but the problem has arisen back in Karmic.
View 1 Replies
View Related
May 5, 2010
i cant change rights of a folder although am connected as root, i typed : chmod 777 cdromand it said : read only acess
View 7 Replies
View Related
Sep 25, 2009
I cannot debug or resolve on a Fedora Core 8 machine. The problem exists in a Fedora 11 machine as well. I have a script that changes the default gw (I have 2 providers) if the link is down. The script runs very well when I call it from the terminal, however when I try to set a cron job to run it, it hangs in the middle of the script. I don't have any idea of what is happening, or how to debug but it seems to hang when running a command like: route add default gw [ip]
I can publish the script here, but it's fair an simple and the algorithm is:
- start
- Find out the current GW
- Find out the alternative GW
- Ping the current GW and capture the result
- if we have a fail then change the default gw to the alternative Gw and send an email, else do nothing
- end
The cron job is run as root, so I don't think this is a rights problem.
View 1 Replies
View Related
Apr 27, 2011
I am novice user of linux. I need to know how to configure firewall so my system cant be compromised...In windows my system was greatly compromised. keyloggers were installed without my approval and my desktop was taken on remote.What should I do so without my knowledge no software can be installed and i can close all ports and only open which ever port is required to open. What should i do so my desktop cant be taken on remote?How do I configure user rights? So only root and one admin can install softwares and no one else.
View 5 Replies
View Related
May 11, 2010
What is it? How do I remove a user's rights from accessing the interactive shell?
View 1 Replies
View Related
Mar 21, 2011
I did an upgrade install. So, I didn't get the prompt to make one. How to change the admin password? I think I know how I can change my username and password.
View 9 Replies
View Related
Aug 6, 2010
Recently got a VPS and installed Ubuntu Server 9 (32bit) When i go to install basic pages like php my admin with commands like..sudo apt-get install phpmyadmin I get a error like this:
root@PkNGssbkpT:/# sudo apt-get install phpmyadmin Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run `apt-get -f install' to correct these:
The following packages have unmet dependencies:
[Code]...
View 1 Replies
View Related
Sep 25, 2010
I had set a password for root/administrator mode. But when again it asked to register a user, I didn't registered any user (left all fields blank) and pressed on "next".After a reboot, now its asking to log in but there is no username except the "other" option. When I'm clicking on other option its showing a field to put a Username (I tried to leave it blank, used root,admin,etc etc etc but no luck) then another box is coming and asking for password, its not taking that password which I set as root password.
View 3 Replies
View Related
Jun 26, 2010
What is the easiest way to make it so that these transferred files will not be completely locked out and require me to go and change them one by one sohat i can access them without having to go root. Also the "apply to all subfolders and files" doesn't work. Also trying to set the SELinux rule to "userspace" doesn't do anything else. Basically i was trying to do just that transfer my $home folder over to fedora but now it's being a bit odd towards me with making everything require root access and not letting me read/write all files and folders within them.
View 3 Replies
View Related
Feb 28, 2011
I'm new to Linux (had some basic Unix experience in 1995 era). (Teenager) gave me HP2133 mini notebook running SUSE Linux Enterprise Desktop 10. Everything checks good (hardware and software), even wireless networking. Problem is she apparently created Admin/root password but says cannot remember. I cannot even set correct date time... yast is asking for root privilege:
Command: /sbin/yast2 time
Is there anything I can do to re-establish administrator privilege?
View 6 Replies
View Related
May 2, 2010
i installed a mail server in RHEL 5 with postfix, dovecot, openwebmail, but i failed to install chpasswd 2.2-4 i have ./configure, make, make install, but nothing happens can any one help me with some documentetion for chpasswd for changing password for mail account
View 5 Replies
View Related
Apr 6, 2011
I just discovered that using the web interface to CUPS on my localhost I cannot apparently, authenticate. The dialog pops up, but will not accept my root user name or any other. I tried using lppasswd to create add root, but it just keeps failing. Don't remember having this problem with F12, but I recently upgraded to F14...
View 2 Replies
View Related