C Board  

Go Back   C Board > Community Boards > Tech Board

Reply
 
LinkBack Thread Tools Display Modes
Old 07-10-2005, 11:23 PM   #1
Novice Programmer
 
Pyroteh's Avatar
 
Join Date: Jan 2005
Location: Alaska
Posts: 82
Can't login to Fedora

I just installed Fedora Core 3... I know theres the 4th version out... but I can't log in... everytime I enter my username and password it says that the administrator has disabled my account..... can anyone help?
__________________
Pyroteh
Pyroteh is offline   Reply With Quote
Old 07-10-2005, 11:39 PM   #2
Registered User
 
Bajanine's Avatar
 
Join Date: Dec 2001
Location: The most peaks over 10,000 feet!
Posts: 388
Have you forgotten you admin password too?
__________________
"A government big enough to give you everything you want, is big enough to take away everything you have." - Thomas Jefferson
MSVS 2008 Pro / DevPartner / CB NightlyBuilds / MinGW / Cygwin
Bajanine is offline   Reply With Quote
Old 07-10-2005, 11:43 PM   #3
Novice Programmer
 
Pyroteh's Avatar
 
Join Date: Jan 2005
Location: Alaska
Posts: 82
no... I know my admin password.... its pretty much the same as my username password... but how do I log in as admin? just username:admin and pass: my password?
__________________
Pyroteh
Pyroteh is offline   Reply With Quote
Old 07-11-2005, 01:38 AM   #4
Registered User
 
Join Date: Sep 2004
Posts: 720
username: root
__________________
Quote:
i seem to have GCC 3.3.4
But how do i start it?
I dont have a menu for it or anything.
misplaced is offline   Reply With Quote
Old 07-11-2005, 02:58 AM   #5
Novice Programmer
 
Pyroteh's Avatar
 
Join Date: Jan 2005
Location: Alaska
Posts: 82
ok... now I'm in under the username:root... what do I do about the username that I created durring setup?
__________________
Pyroteh
Pyroteh is offline   Reply With Quote
Old 07-11-2005, 03:43 AM   #6
...
 
kermit's Avatar
 
Join Date: Jan 2003
Posts: 1,190
while you are in root, open a shell and use the following command

Code:
passwd <username>
where <username> would be your regular user account name that you cannot access right now. You will be promted for your new UNIX passord - enter it and then it you will be asked to enter it again - then you should be good to go.
kermit is offline   Reply With Quote
Old 07-11-2005, 04:41 AM   #7
Registered User
 
Join Date: Sep 2004
Posts: 720
in root, you have control over EVERYTHING...you can use root every time you log in, but it's dangerous.....one bad command and your system is wiped clean.....it's recommended that you only login as root when you need to.i suggest that you read up on file permissions and what not. people typically login in with their 'not-so-priviledged" user account for daily computing use. root is mainly for maintanence and what-nots. it will probably take some time to learn when you NEED to login as root, but that kind of knowledge comes with the knowledge of linux itself...don't worry though.... you can always use the command "su" to login as super-user
__________________
Quote:
i seem to have GCC 3.3.4
But how do i start it?
I dont have a menu for it or anything.

Last edited by misplaced; 07-11-2005 at 04:46 AM.
misplaced is offline   Reply With Quote
Old 07-11-2005, 06:08 AM   #8
Novice Programmer
 
Pyroteh's Avatar
 
Join Date: Jan 2005
Location: Alaska
Posts: 82
ok soo... I did the
Code:
passwd <username>
thing... and it still wouldn't let me in.... said something about my user folder being non existant?
__________________
Pyroteh
Pyroteh is offline   Reply With Quote
Old 07-11-2005, 08:31 AM   #9
Banned
 
Join Date: Jun 2005
Posts: 594
You could try :

adduser username //to readd your user

then

passwd //to set a password for the new user
ILoveVectors is offline   Reply With Quote
Old 07-11-2005, 08:39 AM   #10
Registered User
 
major_small's Avatar
 
Join Date: May 2003
Posts: 2,787
Quote:
Originally Posted by Pyroteh
ok soo... I did the
Code:
passwd <username>
thing... and it still wouldn't let me in.... said something about my user folder being non existant?
well, did you create a user folder when you created your user? and did you create your user to use that folder?

if not, login as root make a folder for your user account (if you didn't already do that), and use this command:
Code:
usermod -d <folder_you_just_created> <user_name> 
note: I've never used fedora before, but I think this is pretty much the same for most linux distros...
__________________
Join is in our Unofficial Cprog IRC channel
Server: irc.phoenixradio.org
Channel: #Tech


Team Cprog Folding@Home: Team #43476
Download it Here
Detailed Stats Here
More Detailed Stats
52 Members so far, are YOU a member?
Current team score: 1223226 (ranked 374 of 45152)

The CBoard team is doing better than 99.16% of the other teams
Top 5 Members: Xterria(518175), pianorain(118517), Bennet(64957), JaWiB(55610), alphaoide(44374)

Last Updated on: Wed, 30 Aug, 2006 @ 2:30 PM EDT

Last edited by major_small; 07-11-2005 at 08:44 AM.
major_small is offline   Reply With Quote
Old 07-11-2005, 07:29 PM   #11
Novice Programmer
 
Pyroteh's Avatar
 
Join Date: Jan 2005
Location: Alaska
Posts: 82
Am I doing this right? >>here<<
__________________
Pyroteh

Last edited by Pyroteh; 07-11-2005 at 08:12 PM.
Pyroteh is offline   Reply With Quote
Old 07-12-2005, 04:18 AM   #12
Pursuing knowledge
 
confuted's Avatar
 
Join Date: Jun 2002
Posts: 1,916
No. You want the user to have a directory in /home. For example, if you wanted to make me a user with a directory:

mkdir /home/confuted/
adduser confuted
passwd
usermod -d /home/confuted confuted

I think that's right.
__________________
Away.
confuted is offline   Reply With Quote
Old 07-12-2005, 06:47 AM   #13
Novice Programmer
 
Pyroteh's Avatar
 
Join Date: Jan 2005
Location: Alaska
Posts: 82
and that did it!!! hehe.. I don't have to login through root... ^.^ sweet thx guys!!
__________________
Pyroteh
Pyroteh is offline   Reply With Quote
Old 07-12-2005, 02:06 PM   #14
Pursuing knowledge
 
confuted's Avatar
 
Join Date: Jun 2002
Posts: 1,916
Now, save your files for the user (star office documents, jpgs, etc) in the user's directory in /home. Don't put them elsewhere.
__________________
Away.
confuted is offline   Reply With Quote
Old 07-13-2005, 01:13 AM   #15
Novice Programmer
 
Pyroteh's Avatar
 
Join Date: Jan 2005
Location: Alaska
Posts: 82
Quote:
Originally Posted by confuted
Now, save your files for the user (star office documents, jpgs, etc) in the user's directory in /home. Don't put them elsewhere.

yeah... I already figured that out hehe....
__________________
Pyroteh
Pyroteh is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
unable to login to facebook zykostar C# Programming 3 06-02-2009 06:04 AM
Login brietje698 C++ Programming 3 10-07-2007 09:51 AM
Having problems with a login script... Junior89 C++ Programming 6 01-06-2006 12:05 PM
login script - URGENT!!! linzeeuk C Programming 5 05-05-2003 02:26 PM
how to automate novel login process without interaction using saved account id passwo Unregistered Windows Programming 7 07-19-2002 11:49 AM


All times are GMT -6. The time now is 08:46 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22