New to Linux Management

Reply

Join Date: Apr 2007
Posts: 6
Reputation: NZChris is an unknown quantity at this point 
Solved Threads: 0
NZChris's Avatar
NZChris NZChris is offline Offline
Newbie Poster

New to Linux Management

 
0
  #1
Apr 29th, 2007
Hi there everyone

I am new to Linux and have suddenly had the management of a Linux server in a remote site dropped into my lap.

Can anyone tell me if there is a way for me to tell remotely what distro/version etc this server is. Currently my access to the site is through an RDC onto the Windows Server in the site so preferably I'd need something I can do from a Windows environment.

Related to this, is there a way I can do an RDC equivalent on a linux server?
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 1,749
Reputation: nanosani is an unknown quantity at this point 
Solved Threads: 54
Team Colleague
nanosani's Avatar
nanosani nanosani is offline Offline
Unauthenticated Liar

Re: New to Linux Management

 
0
  #2
May 6th, 2007
Most of the linux admins love the command console for their remote work. You can use Putty to login remotely to your server. But if you want to have the graphical user interface at your disposal, use vnc server.
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,153
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 530
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: New to Linux Management

 
0
  #3
May 6th, 2007
yes. PuTTY is available as a small windows client (1 small .exe file). You can use this for encrypted command line access to your server.

VNC on the other hand is more like remote desktop, but considering most servers wont have a GUI anyway then putty is generally what is used. There is a windows client available.
Last edited by jbennet; May 6th, 2007 at 4:15 pm.
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Apr 2007
Posts: 6
Reputation: NZChris is an unknown quantity at this point 
Solved Threads: 0
NZChris's Avatar
NZChris NZChris is offline Offline
Newbie Poster

Re: New to Linux Management

 
0
  #4
May 7th, 2007
Thanks heaps folks!

I have tried putty and had some success, which is a major step forward ...

Does anyone know if there is a VNC client that will run on a Windows box and give me access to the GUI (assuming there is one) of the Linux server.
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 1,749
Reputation: nanosani is an unknown quantity at this point 
Solved Threads: 54
Team Colleague
nanosani's Avatar
nanosani nanosani is offline Offline
Unauthenticated Liar

Re: New to Linux Management

 
0
  #5
May 7th, 2007
Here is the link to the VNC website. You can download the VNC server for your linux box and VNC client for your windows box.
Last edited by nanosani; May 7th, 2007 at 1:39 am.
Reply With Quote Quick reply to this message  
Join Date: May 2007
Posts: 146
Reputation: Stylish is an unknown quantity at this point 
Solved Threads: 14
Stylish's Avatar
Stylish Stylish is offline Offline
Junior Poster

Re: New to Linux Management

 
0
  #6
May 7th, 2007
For determining a distro there are generally a few things you can do from the command line.

# uname -a
It'll tell the kernel image, which can sometimes be matched online. (EL signifies RHEL kernels, for instance)

There is generally a release file in /etc/. I believe it is /etc/release.txt or something similar for Red Hat. SuSE also has one, but alas I forget the name at this point in time. Contained within will be the release version or version and in SuSE's case a minor version.

For GUI, if a GUI is even installed (find / -name 'X'), I strongly recommend NX. There are NX server and client RPMs available and a Windows client - all free. It is encrypted, spawns a new session and is more responsive than VNC (from my experience).
Last edited by Stylish; May 7th, 2007 at 1:49 am. Reason: release file
I NEED AN ADULT!
Reply With Quote Quick reply to this message  
Join Date: Jan 2007
Posts: 1,763
Reputation: DimaYasny will become famous soon enough DimaYasny will become famous soon enough 
Solved Threads: 85
Moderator
Featured Poster
DimaYasny DimaYasny is offline Offline
Posting Virtuoso

Re: New to Linux Management

 
0
  #7
May 7th, 2007
if I were you, I'd install webmin on the server, instead of trying to log into GUI. Much more secure and very convenient. You can d/l it for almost any distro out there
Real stupidity always beats Artificial Intelligence. (Terry Pratchett)

BA BizMg, MCSE, DCSE, Linux+, Network+
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,153
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 530
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: New to Linux Management

 
0
  #8
May 7th, 2007
by the way if its a debian or ubuntu based server (as opposed to a redhat one), you can use a command called apt to install the ssh server or VNC server.

on a debian system just do:

apt-get update

apt-get install (packagename)

Itt will download, install and configure it all for you as well as any dependencies.
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 1,749
Reputation: nanosani is an unknown quantity at this point 
Solved Threads: 54
Team Colleague
nanosani's Avatar
nanosani nanosani is offline Offline
Unauthenticated Liar

Re: New to Linux Management

 
0
  #9
May 7th, 2007
Originally Posted by DimaYasny View Post
if I were you, I'd install webmin on the server, instead of trying to log into GUI. Much more secure and very convenient. You can d/l it for almost any distro out there
Webmin is good but I'm not used to it .. I mostly prefer the CLI option.
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 1,749
Reputation: nanosani is an unknown quantity at this point 
Solved Threads: 54
Team Colleague
nanosani's Avatar
nanosani nanosani is offline Offline
Unauthenticated Liar

Re: New to Linux Management

 
0
  #10
May 7th, 2007
Originally Posted by jbennet View Post
by the way if its a debian or ubuntu based server (as opposed to a redhat one), you can use a command called apt to install the ssh server or VNC server.

on a debian system just do:

apt-get update

apt-get install (packagename)

Itt will download, install and configure it all for you as well as any dependencies.
The alternate of apt-get in redhat systems is yum .. you can use yum to install vnc and openssh from yum.

yum install vnc
yum install openssh
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Window and Desktop Managers Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC