You are not logged in.

#1 2009-02-27 21:03:21

playdafunkimuzic
Member
Registered: 2008-10-25
Posts: 220

What program would allow me to remote into my arch desktop

I don't want just access to files, I want to be able to actually control this computer from another machine. Thanks.

(From a windows pc)

Last edited by playdafunkimuzic (2009-02-27 21:09:20)

Offline

#2 2009-02-27 21:09:18

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: What program would allow me to remote into my arch desktop

ssh

There's a page in the wiki. If you want something else, there's a thread somewhere on the forum about remote desktop applications. You can find it with the forum search.


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#3 2009-02-27 21:11:06

playdafunkimuzic
Member
Registered: 2008-10-25
Posts: 220

Re: What program would allow me to remote into my arch desktop

Hm, i mean actually get my desktop to pull up and be able to control it, from even a windows pc

Offline

#4 2009-02-27 21:13:10

cschep
Member
Registered: 2006-12-02
Posts: 124
Website

Re: What program would allow me to remote into my arch desktop

VNC

It's not very fast, especially over the internet, but it works.

Also if you install an X server on the windows pc, you can forward graphical applications from your arch box to the windows pc over ssh. It's a bit more complicated, but definitely technically superior.

Offline

#5 2009-02-27 21:20:23

brisbin33
Member
From: boston, ma
Registered: 2008-07-24
Posts: 1,796
Website

Re: What program would allow me to remote into my arch desktop

i do just this, maybe i'll write a wiki when i've got time... here's the main points.

in arch:
   install and setup openssh
   install x11vnc

in windows:
   install putty
   under Connection > SSH > Tunnels, tunnel Source: 5900 to Destination: 127.0.0.1:5900
   install TightVNC Viewer
   use putty to ssh into your arch box and issue this:
   x11vnc -nopw -ncache 10 -display :0 -localhost
   Open TightVNC and connect to 127.0.0.1

now your tunnelling your vnc traffic through the secure ssh tunnel (secure!) and your vnc server only accepts connection from the local machine (doubly secure!!).

have fun

Last edited by brisbin33 (2009-02-27 21:21:18)

Offline

#6 2009-02-27 21:21:00

playdafunkimuzic
Member
Registered: 2008-10-25
Posts: 220

Re: What program would allow me to remote into my arch desktop

x11vnc does the trick. thanks smile

Offline

#7 2009-02-27 21:28:45

JawsThemeSwimming428
Member
From: USA
Registered: 2008-03-09
Posts: 149

Re: What program would allow me to remote into my arch desktop

Installed this in Mepis and it worked great.


http://www.nomachine.com/

Offline

#8 2009-02-28 07:01:42

toad
Member
From: if only I knew
Registered: 2008-12-22
Posts: 1,775
Website

Re: What program would allow me to remote into my arch desktop

Out of interest, have you lot tried freeNX?

Always found it to be extremely responsive, similar to sitting in front of your pc even via a slow connection (18kbit upstream).


never trust a toad...
::Grateful ArchDonor::
::Grateful Wikipedia Donor::

Offline

#9 2009-02-28 16:17:52

beretta
Member
Registered: 2008-04-21
Posts: 133

Re: What program would allow me to remote into my arch desktop

Does anyone know of a TightVNC equivalent for macosx?

Offline

#10 2009-02-28 21:56:31

brisbin33
Member
From: boston, ma
Registered: 2008-07-24
Posts: 1,796
Website

Re: What program would allow me to remote into my arch desktop

i use "chicken of the vnc" on my mac; goofie name but it's about the same as Tight and i enjoy it.  the default leopard screenshare app used to connect to my x11vnc service but it stopped working and after i got chicken [sweet sentence...] i gave up on trying to fix it.

Offline

#11 2009-02-28 22:44:15

Ranguvar
Member
Registered: 2008-08-12
Posts: 2,549

Re: What program would allow me to remote into my arch desktop

I dislike VNC. I just use X forwarding in SSL. All you need for it to work in Windoze and Mac is an X server (there are some guides out there). For Windows, I use Xming. I see XQuartz is an open-source X server for the Mac. It's a flexible approach, too (have a virtual desktop of the remote machine, or all the remote machine's windows as native windows, etc.).

Last edited by Ranguvar (2009-02-28 22:50:59)

Offline

#12 2009-03-01 00:58:41

pauldonnelly
Member
Registered: 2006-06-19
Posts: 776

Re: What program would allow me to remote into my arch desktop

I'd tunnel X over SSH for this, using a rootless server (programs appear on the desktop rather than in a "X server" window). More integrated with your desktop than some alternatives.

Offline

#13 2009-03-01 06:44:19

toad
Member
From: if only I knew
Registered: 2008-12-22
Posts: 1,775
Website

Re: What program would allow me to remote into my arch desktop

ssh -X is unbearably slow for me sad What kind of upstream speed do you need for it to function properly?


never trust a toad...
::Grateful ArchDonor::
::Grateful Wikipedia Donor::

Offline

#14 2009-03-01 07:19:41

venky80
Member
Registered: 2007-05-13
Posts: 1,002

Re: What program would allow me to remote into my arch desktop

i have a  NAS (running FTP)(internal ip 192.168.0.11) >>ROUTER (internet gateway ip 192.168.0.1)>>my arch machine in external network
how can i access my NAS?
I can never really understand tunneling, is it necessary to forward port in the router or is it not etc etc...just confused sad

can i ssh into it even though the NAS just runs normal ftp?

Last edited by venky80 (2009-03-01 07:20:20)


Acer Aspire V5-573P Antergos KDE

Offline

#15 2009-03-01 07:49:35

fijam
Member
Registered: 2009-02-03
Posts: 244
Website

Re: What program would allow me to remote into my arch desktop

venky80 wrote:

can i ssh into it even though the NAS just runs normal ftp?

No. Also, it may be unwise to expose ftp to the world. If, however, you want to do that, you need to forward any port you like on the router to port 21 at 192.168.0.11. Then you just need to connect to your public IP at the specified port.

What kind of NAS is that? I personally run Debian on my NAS and I use SCP to transfer files and an opendns daemon so I do not have to worry about public IP.

Offline

#16 2009-03-01 08:40:52

mclang
Member
From: Finland
Registered: 2005-10-24
Posts: 79

Re: What program would allow me to remote into my arch desktop

toad wrote:

Out of interest, have you lot tried freeNX?

I have used freeNX a few times. Not for any serious work mind you, but only for testing to see if it is any good... Worked for me like a charm though, and was enough fast even with my slow home connection.


Duettaeánn aef cirrán Cáerme Gláeddyv. Yn á esseáth.

Offline

#17 2009-03-01 10:25:49

SIGTERMer
Member
From: South Sura, Kuwait
Registered: 2009-01-24
Posts: 41
Website

Re: What program would allow me to remote into my arch desktop

toad wrote:

ssh -X is unbearably slow for me sad What kind of upstream speed do you need for it to function properly?

try

ssh -XC

it enables compression in both ways

Offline

#18 2009-03-01 10:47:39

toad
Member
From: if only I knew
Registered: 2008-12-22
Posts: 1,775
Website

Re: What program would allow me to remote into my arch desktop

Thanks for the feedback on freeNX - I believe there is a wiki page for it as well so might give it a go.

I tried ssh -XC. On calling up firefox I get "Error: no display specified" and on konqueror I get "konqueror: cannot connect to X server" - meaning I've got some reading to do hmm


never trust a toad...
::Grateful ArchDonor::
::Grateful Wikipedia Donor::

Offline

#19 2009-03-01 11:14:34

SIGTERMer
Member
From: South Sura, Kuwait
Registered: 2009-01-24
Posts: 41
Website

Re: What program would allow me to remote into my arch desktop

toad wrote:

Thanks for the feedback on freeNX - I believe there is a wiki page for it as well so might give it a go.

I tried ssh -XC. On calling up firefox I get "Error: no display specified" and on konqueror I get "konqueror: cannot connect to X server" - meaning I've got some reading to do hmm

can you forward anything throughssh?

try running xclock over ssh:

xclock

anyways, make sure that there are no xauth errors. (used to be my problem with X and ssh).
if you receive an error wining about locking an authority file. just delete the .Xauthority file in your home directory (on the server). or better yet, rename it:

mv /home/username/.Xauthority /home/username/.Xauthority_backup

then try logging into X over ssh. the .Xauthority file should be automatically written and you should be able to forward X.
of course if that didn't work, you could rename the backup file to it's original name smile

SIGTERMer

Last edited by SIGTERMer (2009-03-01 11:15:56)

Offline

#20 2009-03-01 12:41:46

Nezmer
Member
Registered: 2008-10-24
Posts: 559
Website

Re: What program would allow me to remote into my arch desktop

toad wrote:

Thanks for the feedback on freeNX - I believe there is a wiki page for it as well so might give it a go.

I tried ssh -XC. On calling up firefox I get "Error: no display specified" and on konqueror I get "konqueror: cannot connect to X server" - meaning I've got some reading to do hmm

If you can't forward anything , try ssh -XYC .


English is not my native language .

Offline

#21 2009-03-01 15:59:38

R00KIE
Forum Fellow
From: Between a computer and a chair
Registered: 2008-09-14
Posts: 4,734

Re: What program would allow me to remote into my arch desktop

"ssh -XYC" will do the trick as will doing "xhost +" on the local machine although this is very insecure I guess.


R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K

Offline

#22 2009-03-01 19:25:19

toad
Member
From: if only I knew
Registered: 2008-12-22
Posts: 1,775
Website

Re: What program would allow me to remote into my arch desktop

No such luck with ssh -XYC

I haven't checked my sshd_config and ssh_config yet - I'll trawl the wiki and start from scratch (you KNOW it makes sense).

I've had nomachineNX working sometime before - wicked, but a pain to set up. So things to look into:

ssh
freeNX

And what in the world is NAS?


never trust a toad...
::Grateful ArchDonor::
::Grateful Wikipedia Donor::

Offline

#23 2009-03-01 21:17:00

Hrod beraht
Member
Registered: 2008-09-30
Posts: 186

Re: What program would allow me to remote into my arch desktop

toad wrote:

And what in the world is NAS?

Network Attached Storage. Generally a single-purpose small computer connected to a network that provides storage for other computers on the network. Some hard-drives even have Ethernet functionality built-in.

Bob

Offline

#24 2009-03-01 21:27:31

toad
Member
From: if only I knew
Registered: 2008-12-22
Posts: 1,775
Website

Re: What program would allow me to remote into my arch desktop

Ta Hrod beraht, wikipedia gave two possible disambiguations...

Got ssh to work, it was my sshd_config file. I must say, the C flag does to wonders to the speed...

Am now attempting freeNX but am having trouble with authentication (using my own keys). Posted here:

http://bbs.archlinux.org/viewtopic.php?id=66415

for all those able/willing to point me and the OP in the right direction smile

EDIT:

I suppose the holy grail is now how to turn the computer on via the internet. Then you can go off on holiday with the box turned off and switch it on from half way round the world (or your mate's). I've never been able to do that...

Last edited by toad (2009-03-01 21:29:11)


never trust a toad...
::Grateful ArchDonor::
::Grateful Wikipedia Donor::

Offline

#25 2009-03-01 22:52:16

fijam
Member
Registered: 2009-02-03
Posts: 244
Website

Re: What program would allow me to remote into my arch desktop

toad wrote:

I suppose the holy grail is now how to turn the computer on via the internet. Then you can go off on holiday with the box turned off and switch it on from half way round the world (or your mate's). I've never been able to do that...

Ha! That is indeed a very interesting problem. It's actually possible to achieve with WakeOnLan but there are several conditions which have to be met (mostly regarding your router/gateway).

In a nutshell, your router has to be able to forward the "magic packet" to your powered down PC. Some routers can't do that at all (they just drop external broadcast packets), some will mangle it rendering it useless, some have a configuration option for enabling it (hidden in obscure telnet interfaces wink) while some just work.

If you have a dynamic IP you also need to know it. Again, some routers can be configured to use services like dyndns.com and bind your dynamic IP to a domain name. Alternatively, you can set one of your computers in the network with a dyndns client and hope you can "catch" the domain in the window of time between the last dyndns update (before the pc is turned off) and the IP change.

And everything is google-able smile Good luck.

Offline

Board footer

Powered by FluxBB