|
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 a windows xp machine which is hosting a portable ubuntu instance. When I access the xp machine via remote desktop client, the portable ubuntu applications are not starting up. They fail with the error 'DISPLAY environment variable not set'. Is ...
Answer Snippets (Read the full thread at stackoverflow):
Try the following in your Ubuntu shell:
setenv DISPLAY host_name:0.0
try using rdesktop..
|
Ask your Facebook Friends
|
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.
|
|
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,
I've been using ssh to log-in to a remote server I rent for several years. Last week I got a message from them saying they upgraded my account and server. Now when I go to login, I get this message from ssh
@ WARNING: POSSIBLE DNS SPOOFING DETECTED...
Started by interstar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Afterwards, you should just ssh to your server like you normally do and it will prompt you with a new... .
You'll need to edit your /home/myaccount/.ssh/known_hosts file and remove the entry that matches the IP address or hostname of your old server.
|
|
I just a moment ago saw a request for finding the MAC adress of a remote host. An answer was that the MAC address is always sent as part of the TCP/IP protocol.
How would I go about retrieving this information from an ASP.NET C# application?
See: Reference...
Started by jAST on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If your remote device is SNMP.
Connections you currently have through your NIC (wireless or wired) .
|
|
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.
|
|
How to write a bash command for accessing a remote MySQL server?
If I try
mysql -host 10.1.1.20 -port 3306 -u root -p 1234
it prompts the password and after I type in the password it considers 1234 as a database name and claims that there's no such database...
Started by Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
As Geoff Fritz said, you can use the --password= syntax, but that's insecure... .
In scripts, I prefer the explicit, long-form options, as they're more self-documenting .
In fact, use the "--database=" syntax, as well.
Try the "--pasword=" syntax, instead.
|
|
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 .
|