Ubuntu :: Somehow Lost Ability To Gain Admin Rights

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


ADVERTISEMENT

Ubuntu :: Lost Admin Rights After Updating To 10.4?

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

General :: Gain Access Rights To USB Hard-drive?

May 31, 2009

When booting PartImage from a USB SysRescCD, at the PartImage 'root@sysresccd / root %' prompt, I try each of the following three commands:- touch /media/partimage- chown root /media/partimage- chmod 666 media/partimageAnd each time, I receive the following error message: 'Changing permissions of 'media/partimage': Read-only file system.'The attempt is denied.How can I grant PartImage root access rights to this directory?

View 2 Replies View Related

Ubuntu Security :: 10.10 - No Admin Rights For Administrator

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

Ubuntu :: How To Get Admin Rights And Change Default OS

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

Ubuntu :: Time On Custom Distro Without Admin Rights?

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

Ubuntu Servers :: Portable OpenVPN Without Admin Rights?

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

General :: Assigning Admin Rights To Apps?

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

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 View Related

Server :: Giving AD User Local Admin Rights In Ubuntu

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

General :: How To Give Full Admin Rights To New User?

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

Ubuntu :: Admin / Root Rights Login To Edit And Read Files

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

Programming :: C++ Codes To Check Whether User Is Root Or Has Admin Rights

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

Server :: Windows 7 Local Admin Rights Using A Samba 3 Domain Controller?

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

General :: How Can I Install A More Modern Version Of GNU Utils (coreutils) On Debian Linux With No Admin Rights?

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

Ubuntu :: Installed XP-SP3 On Second HD, Lost Ability To Boot?

Sep 6, 2010

I've been running Jaunty on my drive D: with XP Professional on a separate partition. Today I formatted a different drive, C:, which had previously shown up in GRUB as XP Home Edition, and placed a new XP Professional on it.

Now when both HDs are connected, C: boots without GRUB starting, and when I disconnect C:, the GRUB on D: starts, but cannot find the XP Professional NTDLR. I don't want to take up too much of anyone's time here with this; I'm mostly just curious as to what may have happened?

View 9 Replies View Related

Ubuntu :: 10.10 - Lost Ability To Mount USB Drives

Apr 17, 2011

I've been using 10.10 for almost a year with no problems. Then last week I plugged in my MP3 player (ONDA vx777le) and it did not automount as it usually does. I have since found that any USB stick will not mount any more either. They show up in lsusb

Code:
ken@ken-desktop:~$ lsusb
Bus 005 Device 002: ID 046d:c517 Logitech, Inc. LX710 Cordless Desktop Laser
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub .....

I also see this in messages when I plug it in:
Code:
Apr 17 01:40:21 ken-desktop kernel: [24379.152035] usb 1-4: new high speed USB device using ehci_hcd and address 14
I'm assuming This happened with some update but I don't know what one.

View 1 Replies View Related

Apple :: Lost Ability To Boot Into Ubuntu After Repartition / What To Do?

Jan 21, 2010

I wanted to update to the latest ubuntu but was short a couple of gigs in my linux partition. So i created a Gparted Live bootdisk and repartitioned my hard drive: i took 5 gigs from my mac os partition and moved it to the linux partition...

After that i could no longer see any boot option aside from Mac OS when starting the computer with the option key held down. So i thought maybe rEFIt might be the solution (i have no idea what i'm doing really) and installed refit. I'm not sure what that achieved - i can still only see one boot option (mac os - although it's now named 'refit'...)

View 1 Replies View Related

Ubuntu :: 10.04 - Lost Ability To Move Application Window

Dec 4, 2010

I use Xubunt 10.04, today when login, I found:

1)I lost ability to move application window. eg, The firefox window is stuck and anchored at the upper left corner. I can still resize by dragging the lower right corner. I notice the upper right corner resize tab disappears. If open another application, it is again anchored at upper left corner and cannot be moved.

2)under Settings>Xfce Setting Manager> Window Manager, all the icons are gone. Same inside Window ManagerTweaks. I used "xfce4-panel" in terminal, it doesn't help.

View 6 Replies View Related

Fedora Installation :: Lost Ability To Boot Into Ubuntu On Another Partition

Nov 10, 2010

I wanted to experiment with Fedora 14.

The machine has Windows XP and Ubuntu 9.10.

Before today when I turned the machine on there was a black screen with many Linux kernels to choose from and Windows.

I created another for Fedora and installed it on there - the Ubuntu root partition is still there.

When I boot now, there is a blue Fedora screen with just it and Windows.

To make matters worse Fedora doesn't work with my graphics card (Matrox). I would like to get Fedora working but still want to have the ability to use Ubuntu again.

What do I need to change to be able to boot into Ubuntu again and how do I do it?

View 2 Replies View Related

Ubuntu Networking :: Suddenly Lost Ability To View Webpages

Apr 3, 2010

I should have poked around a little harder but I remember that I was experimenting with an ssh proxy when a the hotel. Apparently when I setup the proxy settings in Chrome I must have clicked the "set system wide" button and set every browser to browse through the proxy. I even had to enter a password to change that setting. I thought I changed it back after experimenting but apparently I did not. Today I just started my Ubuntu 9.04 laptop to find that I can not browse web pages. I tried multiple browsers including Chrome, Firefox and Epiphany. Each one gives me the same error message:

Epiphany:
"www.google.com" dropped the connection.
The server dropped the connection before any data could be read. The server may be busy or you may have a network connection problem. Try again later.

Firefox:
Connection Interrupted.
The connection to the server was reset while the page was loading. The network link was interrupted while negotiating a connection. Please try again.

Chrome:
This webpage is not available.
The webpage at [URL] might be temporarily down or it may have moved permanently to a new web address.

So now most of you are ready to ask me to check my connection using ifconfig etc. But here is the rub: I can download updates, install software using apt-get, ssh, scp, download files with wget, ping web sites and browse the net using the text browser Links (so pretty much everything else works.) I cant figure out what has happened. The last time I used my laptop was this past weekend in a hotel using their wireless and then connecting using a captive portal. And everything worked fine.

My only theory is the hotels captive portal might have messed up something but what that is is beyond me. I tried using both wired and wireless connections and still the same thing. Re booting does nothing. So in order to surf the web I have to use my virtual box Windows XP image. So here I am typing this message in Firefox on windows XP in a virtual machine on my Ubuntu laptop that for some reason will not let me view websites.

View 7 Replies View Related

Ubuntu Multimedia :: Upgraded To 9.10 And Lost The Ability To Use Scanner With VueScan

Jan 28, 2011

Just upgraded to 9.10 and lost the ability to use my scanner with VueScan. No help at their site or the Avasys Corp. site, where downloads of the "driver" refuse to load due to various conflicts. Has anyone gotten VueScan to work with 9.10 and how on earth did you do it? (Scanner is an Epson Perfection V500 Photo.)

View 7 Replies View Related

Ubuntu :: Lost Ability To Suspend And Hibernate - MKV Video Run Slowly

Mar 28, 2011

I have recently downloaded Ubuntu 10.10 and installed it onto my laptop, alongside with pre-installed Windows XP. I'm very happy with Ubuntu and find it a lot better than many other operating systems. However, I have stumbled across a problem recently: I don't seem to be able to suspend ("sleep") the laptop and neither can I hibernate it. These options worked so far and if I remember correctly, this started when I updated my kernel to 2.6.38. Since then, I've lost the options to sleep and hibernate, and when I close my laptop lid, I get a message "Unable to suspend".

Also, a side question - why does video run so slowly on Ubuntu using VLC? This happens to me when watching .mkv videos. Many frames get skipped and there are visible artifacts, in fact, so much that the video can barely be watched. Actual FPS drops below 1, so one frame stays on screen several seconds. I tried tweaking the options, choosing different demuxers, codecs and graphics output. This happens only while running on batteries and works fine under Windows, I have no idea why. Under Windows the video is played using Media Player Classic and ffdshow, if it makes any difference.

View 6 Replies View Related

Ubuntu Multimedia :: Lost Ability To Convert WMF Graphics After Upgrade To 11.04

Jul 12, 2011

I have a very large graphics library that I use regularly, but all files are in WMF format. Prior to upgrading to Ubuntu 11.04 (was previously on 10.04), these files would preview in Nautilus, and GIMP would automatically convert them when they were opened.

Now, these files no longer preview in Nautilus, nor do they open and convert in GIMP. Package libwmf0.2-7 is installed.

View 3 Replies View Related

Ubuntu :: Lost Wireless WPA2 Connection And Ability To See USB After Update

Jan 3, 2010

I'm relatively new to Linux. My netbook ran updates yesterday for Ubuntu and now I am unable to reconnect to wireless network connection. I am using WPA2 encrypted security. I am able to connect via wired LAN. Also, when I went to connect using USB mobile connection, I get an error "unable to mount location". I get the same error if I try to connect my external CD drive. I am using Ubuntu 8.04 with Gnome desktop (2.22.3) on a Dell Mini 9.My wireless device is using Broadcom STA Wireless driver for an 802.11 wireless card.

View 1 Replies View Related

General :: Lost Ability To Start Ubuntu After I Installed Mepis

Dec 24, 2010

I installed Mepis to a separate partion (shares swap) and now the option to use, originally installed, Ubuntu does not appear at start up. Is there a way get this option back?

View 6 Replies View Related

General :: Lost Wireless WPA2 Connection / Ability To See USB After Update

Jan 1, 2010

I'm relatively new to Linux.My netbook ran updates yesterday for Ubuntu and now I am unable to reconnect to wireless network connection.I am using WPA2 encrypted security.I am able to connect via wired LAN. Also, when I went to connect using USB mobile connection, I get an error "unable to mount location". I get the same error if I try to connect my external CD drive. I have tried to force mount but no luck.

View 17 Replies View Related

CentOS 5 Networking :: Lost The Ability To Ping/ssh/http Remote Server?

Dec 21, 2010

Some time yesterday, I lost the ability to ssh my remote server, or even visit any webpages it hosts.

I've explored hosts.deny, /var/log/secure and even turned iptables off to see if it would fix anything. To no avail. Here's what my ssh login attempt looks like:

Quote:
localhost ~ $ ssh -vv x.x.x.x
OpenSSH_5.2p1, OpenSSL 0.9.8l 5 Nov 2009
debug1: Reading configuration data /etc/ssh_config
debug2: ssh_connect: needpriv 0

[Code]....

View 5 Replies View Related

Fedora :: Logout And Cancel Are Only Options In KDE Menu / Lost Ability To Do A Shutdown Or Restart?

Dec 16, 2008

I have lost my ability in KDE Menus to do a shutdown or restart. My only option is to logoff or cancel. This started occurring about 2 weeks ago, possibly 2 KDE workspace updates ago. I have been assuming it would get fixed with an update but so far it has not.

I am running Fedora 10 x86_64, kernel = 2.6.27.7-134.fc10.x86_64, and the KDE version is:

kde-filesystem.noarch 4-20.fc10 installed
kde-settings.noarch 4.1-4.20081031svn.fc10 installed
kde-settings-kdm.noarch 4.1-4.20081031svn.fc10 installed
code....

I have 3 different systems all running the same OS and KDE versions and it is happening on all 3 systems. All systems have the "Offer Shutdown Options" selected in Session Manager. I have even turned this option off, rebooted, and then back on to try to jumpstart it but that did not work.

Additionally, I have tried deleting the contents of the /tmp directory while in single-user mode and also the .kde under my home directory. This made no difference.

Another symptom I am noticing is that any desktop widgets that I create all get moved to the upper left-hand corner of the display whenever I reboot and log back in. Any extra shortcut widgets that I add to the panel are also gone the next time I log in.

Again, these same symptoms are occurring on 3 different machines.

These symptom do not occur after a fresh install of FC 10. It is breaking during one of the yum updates but I have not narrowed it down yet as to which update is causing this to happen.

View 3 Replies View Related

Fedora :: Kerberos Admin Password Lost?

Aug 3, 2010

I just took a job and the admin password for the AFS is missing. How do I find/reset this password? I have the root password for the machine it is installed on.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved