element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Raspberry pi 2 how to use as a thin client
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 11 replies
  • Answers 2 answers
  • Subscribers 709 subscribers
  • Views 2361 views
  • Users 0 members are here
  • raspberry_pi
Related

Raspberry pi 2 how to use as a thin client

medi
medi over 10 years ago

Raspberry pi 2 how to use as a thin client of windows 7

 

what application use in windows 7 so that multiple raspberry pi 2 can remote access.

 

how to make windows 7 as a server of thin client raspberry. 

 

if i'm accessing windows 7 PC through raspberry pi 2 then no one can work on that windows 7 system

  • Sign in to reply
  • Cancel
Parents
  • Problemchild
    0 Problemchild over 10 years ago

    Vivek, if you are using Windows 10 I would say Enrico is right, if it's Rasbian you may be able to download or compile a version of VNc/or Rdesktop or something. Either way I wouldnt expect it to be quick or the best way of achieving your end goal.

    What are you intending to use the system for when you have connected it up to the windows 7 box?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Robert Peter Oakes
    0 Robert Peter Oakes over 10 years ago in reply to Problemchild

    There is NO windows desktop for the PI, of any version

     

    Windows 10 IoT on the PI is an appliance based application core, not a desktop and therefor does not even have a true browser or any other desktop apps (Think Toaster, Alarm System, Heating Controller etc)

     

    any app written for the PI, either under Raspbian or Windows 10 IoT that leverages APIs on a remote machine via say TCP/IP can access a server based app on ANY windows based host if the host supports the protocol too. it is just a case of programming it. Remote take over of the PC is a different matter, this requires a client app on the PI that can access the PC running the other half of the app. Open VNC is such an app i believe but it is not available to run on Windows 10 IoT, but there is plenty of support on Linux

     

    Hope this helps clarify

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • rew
    0 rew over 10 years ago in reply to Robert Peter Oakes

    He said he wants to use the 'pi as a "thin client" for the windows machine. This is entirely possible.

     

    A certain company in Redmond makes lots crappy software, but they've made a few good things. The design of the NTFS filesystem and the design and implementation of the rdesktop protocol.

     

    This allows you to use a desktop on a Windows (or other OS) machine at a different screen than the physical one. It works quite well: it works reasonably fast over pretty lousy links.

     

    At first, I would suggest that you get your pi up and running a normal desktop environment. Tell it to boot to graphical mode using raspi-config or something like that. Next use "sudo apt-get install rdesktop" to install the rdesktop app.

     

    then start a terminal (I don't know where to find things using the menus, so bear with me.), and type: rdesktop -u <username> <windowsserver>

     

    Now you should be able to log into your windows7 machine.

     

    Next, you should be able to make a little script that you can run from the command line:

     

    #!/bin/sh

    X &

    sleep 2

    rdesktop ....

     

    and start that from /etc/rc.local , but before you reboot: disable the "graphical startup" again.

     

    Now, there is only one problem left. That certain company in Redmond, as far as I know has not made that Windows7 machine able to handle more than one client at a time (or a client and one at the physical screen). You may need special paid-for add ons and/or special licences from Redmond.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Problemchild
    0 Problemchild over 10 years ago in reply to rew

    Yep as I said but we have little or no direction from the question author to what they want or meant so really we have already reached the impasse.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Problemchild
    0 Problemchild over 10 years ago in reply to rew

    Yep as I said but we have little or no direction from the question author to what they want or meant so really we have already reached the impasse.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube