Help, never used Redhat before.
metomeya
New
Hey I'm troubleshooting some computer problems in an office. No problem for me, thats what I do, until i found out there server is in Redhat Linux.
I still thought no problem, until i found out that operating system (atleast that version) is command line! NOT a graphical interface.
I thought REDHAT was a graphical (GUI? spelling) OS. After i logged in with the username and password I get something like [root@somethingelse]. Is it like old school windows where I had to launch the graphical part of the OS? Or is it call command line?
If so, where is a good website for learning redhat linux command lines? I need to create file sharing accounts, and email accounts.
thanks
I still thought no problem, until i found out that operating system (atleast that version) is command line! NOT a graphical interface.
I thought REDHAT was a graphical (GUI? spelling) OS. After i logged in with the username and password I get something like [root@somethingelse]. Is it like old school windows where I had to launch the graphical part of the OS? Or is it call command line?
If so, where is a good website for learning redhat linux command lines? I need to create file sharing accounts, and email accounts.
thanks
0
Comments
Im no help for deadrat but im sure google is .
As far as command lines go, nearly all Linuxes including RedHat ship with bash as the default shell (command line). Unless the guy that set this machine up for you is uber-hardcore, the shell is probably still bash. Short-Media has a decent bash primer here. Of course, this won't tell you exactly how to accomplish the tasks you want but it should help you understand the basics.
Getting back to your main problem, I take it from your surprised reaction to finding a Linux server that it's providing file sharing and e-mail for a Windows network? If so, is the file sharing configured as Windows File and Printer sharing or some other kind? What kind of e-mail server does it provide (POP, IMAP, Exchange, etc)? Just like Windows, there are multiple software packages that provide similar functionality so we're going to need to figure out what you're using.
-drasnor
Don't log in as root. Log in as a normal level user and then su ... by typing
su -
and then it will prompt for the root password
For those who are not so up on *nix, it's a safe way of making sure you don't make any accidental distructive moves!
As long as you have a user account in the wheel group you can use su to gain temporary root priveleges and perform system administration tasks. If root is the only user on your system you should seriously consider adding normal users. Type 'man useradd' in your terminal to get the skinny on how that works.
-drasnor