Quote:
|
Originally Posted by mndar
Can yout tell me how to setup a remote user account ?
|
You must somehow have access to the remote machine, either physical or logging in remotely, eg using SSH, in order to setup the vnc server or do anyhting else. A user account on the remote machine, plus the remote machine root's password are mandatory.
If there are no users, but you know the root's password, then try connecting as root with ssh. It may not be possible. It depends of the SSH server configuration, but you can try. For example:
Code:
# ssh my.remote.machine
Once logged in as root, you can add users with
useradd. For example:
Code:
# useradd mndar
# passwd mndar
Quote:
|
Originally Posted by mndar
Can client computer connect and use X even if the host computer has not started X ?
|
An X session is started through VNC for a certain user. The general idea is the following:
-There is your user account on the remote machine.
-You start a VNC server instance for this user.
-The VNC server starts the X session for this user
-You can connect remotely to this X session using the VNC protocol. In other words you use vncviewer.