Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
i want to graphically login to a system, but i still didnot find a solution for that, i want to login from linux to linux, i know ssh but it is only text mode, also rlogin , it is also text mode , is there any command or application in linux to graphically login?
Distribution: Mandriva 2011 / Mageia 1 / Linux Mint 12 / CrunchBang Linux 10 Statler / Easy Peasy
Posts: 4,274
Rep:
Quote:
Originally Posted by sawaby
hi every body
i want to graphically login to a system, but i still didnot find a solution for that, i want to login from linux to linux, i know ssh but it is only text mode, also rlogin , it is also text mode , is there any command or application in linux to graphically login?
any idea would be appreciated
sawaby
You can either use the X forwarding method to log in via the greeter or use the TightVNC method to directly login to a desktop. Google either or both options for more info.
Note: This was only for his internal network, if you even think about using this from the internet make sure to tunnel through ssh. Make sure to lock desktop after n amount of inactivity as well.
When logging in to my Linux box at home from my Linux box here at work, I use the following:
ssh -X -l (username) (IP or Hostname)
for example:
ssh -X -l yournamehere yourbox.yoururl.com
From there, you can execute any X-Windows command and the remote window will display on your local display.
For instance, if you were to enter "dolphin" or "konqueror" (or whatever file manager you use) it will then display the gui filemanager on your local display.
You can also use the & if you want to still be able to use that cli and have the app run in the background...
ie: dolphin &
Last edited by ssarasin; 06-12-2008 at 11:42 AM.
Reason: Added some examples...
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.