Page 1 of 1

Poppy as Thin Client

Posted: Wed 01 Oct 2014, 13:30
by lcamanni
Good morning,

i'm new to poppy and i found it very useful for my organization.
I'm trying to re-use old machines as thin client and i've found a guide to set-up it in a proper mode.
I've inserted the following lines into .xinitrc file to start up remote desktop as puppy boot up:

rm -f /etc/.XLOADED

mount -r /dev/cdrom /mnt/cdrom

/usr/bin/rdesktop -a 16 -u "" -f -d DOMAIN -r sound -r disk:D=/mnt/cdrom SEVERIP

/usr/X11R7/bin/wmpoweroff

It works fine but i wanted the machine power off as i log-off from remote desktop session so i inserted the last line.
As i log off the machine doesn't power off but it presents puppy desktop.
Any ideas?

Regards

Luca

Posted: Wed 01 Oct 2014, 13:53
by rcrsn51
I looked at this issue a long time ago and I believe that there are two possible solutions. First, try the command

Code: Select all

nohup wmpoweroff &

Posted: Wed 01 Oct 2014, 16:35
by lcamanni
rcrsn51 wrote:I looked at this issue a long time ago and I believe that there are two possible solutions. First, try the command

Code: Select all

nohup wmpoweroff &

Thank you,it works

Luca