do not connect as root - ever.
for sue you do not use sudo, but you use `sux`command to launch X apps as root.
Main Topics
Browse All TopicsHow do I enable remote connections, connect as root, and x11 forwarding for Suse 11 Enterprise Server?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I'm still not getting the whole picture here. :(
I am getting a black blip when connecting to suse. I'm lost...
Using xming and the SUSE GUI,
1. What specific steps do I take within suse to prepare for remote connection via xming to it's gdm dashboard?
2. What specific steps do I take within xming to get it to connect?
Business Accounts
Answer for Membership
by: rindiPosted on 2009-08-05 at 01:17:37ID: 25021105
Never connect as root, that is unsafe. Rather use a normal user account to connect to the server and then use sudo if your application requires root access.
Install openssh on your server. Then make sure your sshd_config file has the following entries:
X11Forwarding yes
# Authentication
PermitRootLogin no
When you connect to this use the following syntax:
ssh -Y UserName@IPOfServer
After that when you start a tool that is GUI based, that tool is started as a window on your PC. If you need to start that tool as root, then just start it with sudo, like this:
sudo krusader
Make sure the user's name or one of the groups the user is a member of is added in the /etc/sudoers file (I usually use the wheel group for this, as that is a superuser group). The entry in sudoers for wheel would look like this:
%wheel ALL=(ALL) ALL
Also make sure port 22 isn't blocked by the server's firewall
With SUSE you can probably set this all up automatically through Yast, without having to edit the files manualy.