|
When connecting to remote hosts via ssh, I frequently want to bring a file on that system to the local system for viewing or processing. Is there a way to copy the file over without (a) opening a new terminal/pausing the ssh session (b) authenticating...
Started by Nick on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
-X or -Y) as you:
It uses a fixed port....
You can add any other ssh variables you use (e.g .
Zyxel.png from remote to local host:
antti@local:~$ zssh remote Press ^@ (C-Space) to enter file be defined on the remote host.
|
|
I use wine + teamviewer on fedora to remote to windows host. The teamviewer is work fine but the performance of wine is so bad. It make my CPU high. Is there any linux tool for remote desktop to windows and any windows tool for remote to linux desktop...
Answer Snippets (Read the full thread at serverfault):
For example, you could run a VNC server on your Linux box and connect from Windows... .
To do the opposite (i.e., connect to a Linux desktop from Windows) there are several options .
You can use rdesktop to establish an RDP session from Linux to a Windows system .
|
|
I have two virual machines on Host 2008 server.
If i operate the VM full screen from HOST OS then cursor moves slow but i use the remote desktop connection only to that machine then its normal.
what should i do
Started by Mirage on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
With remote desktop, it's using an optimized protocol to send information back, not the host.....
It's not quite, it's emulating a video card.
To the host (or remote) and passing that directly along to the local video drivers.
|
Ask your Facebook Friends
|
Hi All,
I am new to Java Development and using the VisualVm for the first time. I am facing some problem in Connecting a Remote Host from the VisualVm interface.
I have JDK 1.6 running in the remote host and also started jstatd server on the same. When...
Answer Snippets (Read the full thread at stackoverflow):
But I've never personally.
I've read that Netbeans has remote profiling support.
It does for me.
|
|
Hi Guys,
Currently I and two two friends are working on a small project. We are currently hosting the SVN ourselves.
My question specifically relates to whether we should
1) Move to a private hosted solution - unfuddle or github 2) Continue hosting locally...
Started by Tony on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If the....
While your concerns are generally valid any time you consider using a hosted solution for confidential data, it's very unlikely that there will be any practical problem if you use one of the reputable third-party hosting companies.
|
|
I am trying to use the following command:
$ scp remoteusername@host:$HOME/fileiwanttocopy /my/local/comp
I woould like for home to be evaluated on the remote host instead of my computer (which it is doing now) i've tried it with and without quotes.
Started by Derrick on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
If you would like....
To copy a file from the home directory on another machine, use:
scp remoteusername@host:fileiwanttocopy /my/local/comp
Note that the filename after ':' does not start with a '/', so it is relative from the home directory by default .
|
|
With regards to handling a TCP/IP connection using the TcpClient class, is there an alternative for checking whether the remote host has closed the connection other than waiting for the NetworkStream.Read method to return a 0?
Started by Lopper on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
An example how to use it:
struct tcp_keepalive { ....
You can use IOControlCode.KeepAliveValues on the TcpClient.Client to guarantee that a keep-alive check is made at least on the specified interval and then check the TcpClient.Client.Connected property .
|
|
I've got an ASP.NET web application and a .NET webservice which is used by the web application. These applications are hosted on a remote server I don't have remote shell access to. When the web application invokes the web method in the webservice, I ...
Started by Xiaosu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It sounds like it could be a resouces issue on the hosted server - is it a virtual machine or shared hosting solution? it could be that you are being throttled by the hosting provider in terms of CPU or memory that could mean the ....
|
|
I am configuring a Windows web server on a remote host. Obviously I need to use terminal services, but what can I do to make it as secure as possible. The Hosting company also needs access to the server when there are issues and so I need to provide access...
Started by zsharp on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
As a best practice "admin" "root" or "administrator" shouldn't be used over any external connection that isn't properly encrypted
1 - Put it behind a VPN or if someone has SSH access... .
My recommendation would be to put it behind a firewall with VPN access .
|
|
I have SVN hosted and want to convert to Git and put it back into the hosted repository as Git.
I am on windows.
I have been using Tortoise Git since I've been using Tortoise SVN and love it.
And so I've set out to created a Git clone from the SVN. And...
Started by Angela on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
A non-standard layout for the repository git svn clone svn://url git remote add origin _path_to_remote_git_repository_ git push origin master
Since you are converting to Git, you may not need the extra.
|