1

I am using X11RDP v0.6. In the XRDP v0.5 multi-session was a choice by just changing the resolution. Anyway, this is not the problem...

I just want to know how to enable multi-session in X11RDP 0.6 in Ubuntu 12.04?

I already tried to mess up with the sesman.ini and xrdp.ini but it seems something in other place must be done.

Braiam
  • 67,791
  • 32
  • 179
  • 269
Maythux
  • 84,289

1 Answers1

1

check this wiki

you need to add ports for each session in /etc/xrdp/xrdp.ini

like this:

[globals]
bitmap_cache=yes
bitmap_compression=yes
port=3389
crypt_level=low
channel_code=1

# set empty username because VNC auth 
# doesn't actually use username, so no
# point in asking the user for one.

[xrdp1]
name=Active Local Login
lib=libvnc.so
username=
password=ask
ip=127.0.0.1
port=5900

[xrdp2]
name=Clean Session
lib=libvnc.so
username=
password=ask
ip=127.0.0.1
port=5901

and issue the following command for each session:

vncserver :1
kamil
  • 7,355
  • 7
  • 40
  • 61