WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Total newbie use TCL for RDP and nothing else  (Read 2600 times)

Offline ekapco

  • Newbie
  • *
  • Posts: 5
Total newbie use TCL for RDP and nothing else
« on: February 01, 2013, 03:25:32 AM »
Help please,

Can anyone guide me through how to install Tiny Core Linux to automatically start RDP to windows 2008 server ???

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline Lee

  • Hero Member
  • *****
  • Posts: 645
    • My Core wiki user page
Re: Total newbie use TCL for RDP and nothing else
« Reply #2 on: February 01, 2013, 07:43:12 AM »
1. load the rdesktop extension and set it to load onboot.

2. use the command rdesktop --help to get a list of the command line options and script a connection.  You can set the window geometry, domain, user, password and host for a completely automatic login - though it is considered bad form to put passwords in a script.

3. invoke your script at startup using the ~/.X.d functionality.
32 bit core4.7.7, Xprogs, Xorg-7.6, wbar, jwm  |  - Testing -
PPR, data persistence through filetool.sh          |  32 bit core 8.0 alpha 1
USB Flash drive, one partition, ext2, grub4dos  | Otherwise similar

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11261
Re: Total newbie use TCL for RDP and nothing else
« Reply #3 on: February 01, 2013, 08:59:13 AM »
Hi ekapco
If you have NLA (Network Level Authorization) enabled on your server, you'll want to use  FreeRDP.tcz  instead. As far as
I know, none of the other packages in the repo can handle NLA. Create a text file in  /home/tc/.X.d  containing:
Code: [Select]
xfreerdp -u Rich -p PASSWORD --plugin cliprdr --plugin rdpdr --data disk:msrb:/home/tc/msrbcusips/templates disk:raw:/home/tc/msrbcusips/buffer -- x.x.x.x &It doesn't matter what you call the file, the command in it will automatically be executed once the GUI is up.
The  x.x.x.x  is your IP address. This part deserves some explanation:
Code: [Select]
--data disk:msrb:/home/tc/msrbcusips/templates disk:raw:/home/tc/msrbcusips/buffer --It maps two of my local directories to the server so I can access them using Windows Explorer.
/home/tc/msrbcusips/templates  will be listed in Windows Explorer as  msrb
/home/tc/msrbcusips/buffer  will be listed in Windows Explorer as  raw
This allows me to drag/drop files inside the server window between the two machines.

As far as installing Tinycore itself, that question belongs under  TCB Q&A Forum. First, go to  http://tinycorelinux.net/
and read the installation instructions. Then, if you get stuck, ask a specific question.

Offline ekapco

  • Newbie
  • *
  • Posts: 5
Re: Total newbie use TCL for RDP and nothing else
« Reply #4 on: February 19, 2013, 02:01:53 AM »
Thnks,

but I would like to use Remmina, cause I Need two RDP possibilities.
Starting a new post.