LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-15-2022, 11:18 AM   #1
subscrive
Member
 
Registered: Feb 2022
Posts: 72

Rep: Reputation: 12
Desktop sharing software


Currently I use teamviewer to "manage" my devices.
Devices include,
1. couple of android phones
2. chromebook
3. linux laptop
4. win10 laptop

Does anyone have any better (and preferably opensource) solution, such that I can have a single account running on all these devices and view desktops remotely from any device to any device?

Thx.
 
Old 03-15-2022, 12:27 PM   #2
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,679
Blog Entries: 4

Rep: Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947
Linux uses a fundamentally different GUI strategy than Windows does. In Linux (XWindows/XOrg), there is actually a client/server protocol in which a
"server process" sends drawing commands to a "client process" which actually draws the screen. This makes it extremely easy to run efficient GUI sessions over a network ... even with a "headless" server that has no graphics card. (On your computer, both processes are running at the same time on the same machine, but there are still two of them.)

Windows, on the other hand, "has to schlep bitmaps around" in a much more complicated and inefficient proprietary "rdesktop" protocol.

Last edited by sundialsvcs; 03-15-2022 at 12:28 PM.
 
Old 03-15-2022, 01:05 PM   #3
uteck
Senior Member
 
Registered: Oct 2003
Location: Elgin,IL,USA
Distribution: Ubuntu based stuff for the most part
Posts: 1,177

Rep: Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501
You can install Tailscale on all these devices which creates a mesh VPN, so you can easily access them from just about anywhere. Once they are connected you can use SSH, RDP, or just about anything else the connection can handle.
 
Old 03-15-2022, 04:22 PM   #4
cyent
Member
 
Registered: Aug 2001
Location: ChristChurch New Zealand
Distribution: Ubuntu
Posts: 398

Rep: Reputation: 87
There are a bunch of "vnc" based viewers / servers. https://en.wikipedia.org/wiki/Virtual_Network_Computing

https://en.wikipedia.org/wiki/Compar...sktop_software

Last edited by cyent; 03-15-2022 at 04:28 PM.
 
2 members found this post helpful.
Old 03-24-2022, 08:24 AM   #5
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,730

Rep: Reputation: 7973Reputation: 7973Reputation: 7973Reputation: 7973Reputation: 7973Reputation: 7973Reputation: 7973Reputation: 7973Reputation: 7973Reputation: 7973Reputation: 7973
Quote:
Originally Posted by subscrive View Post
Currently I use teamviewer to "manage" my devices.
Devices include,
1. couple of android phones
2. chromebook
3. linux laptop
4. win10 laptop

Does anyone have any better (and preferably opensource) solution, such that I can have a single account running on all these devices and view desktops remotely from any device to any device?

Thx.
The question I'd ask is "why do you need a full desktop?". Using SSH gives you the ability to do pretty much everything, and if you enable X forwarding, you can then run X applications.
 
1 members found this post helpful.
Old 03-24-2022, 09:19 AM   #6
ozanbaba
Member
 
Registered: May 2003
Location: İzmir
Distribution: Slackware64 15.0 Multilib
Posts: 778

Rep: Reputation: 135Reputation: 135
Quote:
Originally Posted by subscrive View Post
Currently I use teamviewer to "manage" my devices.
Devices include,
1. couple of android phones
2. chromebook
3. linux laptop
4. win10 laptop

Does anyone have any better (and preferably opensource) solution, such that I can have a single account running on all these devices and view desktops remotely from any device to any device?

Thx.
RealVNC might help you. I dont know how it would work in detail but There's a lot of VNC technologies out there which may help you.
 
Old 03-24-2022, 04:39 PM   #7
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,679
Blog Entries: 4

Rep: Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947Reputation: 3947
VNC is indeed an excellent and versatile choice. Fairly efficient, too, not that this really matters anymore.
 
Old 03-25-2022, 03:39 AM   #8
subscrive
Member
 
Registered: Feb 2022
Posts: 72

Original Poster
Rep: Reputation: 12
(Will continue to update)

Not free for Home use
1. https://www.realvnc.com/en/connect/pricing/

Not available on all my required devices/OSes
1. https://sourceforge.net/projects/tig...stable/1.12.0/
2. https://github.com/LibVNC/libvncserver/releases
3. https://virtualgl.org/Documentation/OSSupport
4. https://www.realvnc.com/en/
5. https://uvnc.com/downloads/ultravnc.html
6. https://www.tightvnc.com/faq.php

Last edited by subscrive; 03-25-2022 at 03:55 AM.
 
Old 03-27-2022, 03:06 AM   #9
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by TB0ne View Post
The question I'd ask is "why do you need a full desktop?". Using SSH gives you the ability to do pretty much everything, and if you enable X forwarding, you can then run X applications.
Totally.
And in 7 years of running a server I have never required it to have a GUI, so even -X is useless to me.
And it's possible to "manage" devices other than GNU/Linux over the command line. Makes much more sense that way.

OP has now found out that no single GUI solution will service all their devices.
I wonder if SSH can? Certainly for Chromebooks? Via Termux on Android? And is there SSH for Windows?
 
Old 04-07-2022, 04:45 AM   #10
IrphanGired
LQ Newbie
 
Registered: Mar 2022
Location: New York
Posts: 4

Rep: Reputation: 5
I have an experience with the RealVNC, It's working excellent. You can easily access devices with security.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Desktop sharing (remote desktop) Ubuntu Mate 14.10 taylorkh Ubuntu 5 06-03-2015 10:31 AM
VNC desktop sharing cross platfrom and from different desktop types ajohn Linux - Software 11 07-28-2013 02:45 AM
ubuntu-desktop vs. kubuntu-desktop vs. xubuntu-desktop vs. lubuntu-desktop vs. unity Kenny_Strawn Ubuntu 18 05-13-2011 09:20 AM
File sharing and internet sharing mullet Linux - Networking 1 10-14-2003 01:30 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:21 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration