Tagged Questions
-1
votes
0answers
32 views
NFS vs SSH -YC - Which one is faster? [closed]
I frequently need to remotely run some programs installed on my server --like hspice or matlab. I used to mount the required nfs directories on my local machine (via etc/fstab). Recently, for some ...
-2
votes
1answer
42 views
remote access a Linux server and change user with shell [closed]
I'm trying to write a Linux shell that can do the following works:
client: Linux OS, a text file AFILE.
server: Linux OS, it can only be connected through SSH using account A, there's also an ...
-1
votes
1answer
47 views
How to redirect output of ssh.exec_command to a file in Python paramiko module?
I want to run a python script say test.py on a Linux target machine (which has a python interpreter) and capture the output of the command in a text file as the part of another python script invoke.py ...
0
votes
0answers
38 views
Is it possible to power on a remote computer using SSH? [closed]
Anyone knows if it is possible (and if so, how) to power on a remote pc using SSH? I have a pc running linux (rhel5) and I can communicate with another pc running linux using SSH, so I can ...
0
votes
0answers
48 views
File permissions get overwritten when editing file remotely in ubuntu
I use Ubuntu for development (12.10 currently). I usually work on files by mounting remote resource in nautilus by SSH. Files on the remote server are owned by different user and my user account is ...
0
votes
1answer
86 views
How to display the execution result in remote linux screen(command input via ssh)?
everyone :
I need ssh to connect remote linux ,I already know how to run and display a GUI program in remote linux .It can be done by :
ssh username@ip
export DISPLAY=:0.0
firefox &
however ...
0
votes
1answer
220 views
copy file to a vagrant remote environment
I'm worknig on a remote codebase via vagrant development environment and I use sshfs for mounting the remote point on my localhost as below:
sshfs hostname:vagrant_remotemountpoint mountpoint
To ...
0
votes
3answers
205 views
Execute remote bash with ssh together with a local script, that, when ends, will kill the remote execution
I logged with ssh on the server with public key (no password).
This are the command that I would like to automatize with a bash:
ssh user@ip
cd path
./bash0.sh parameter1 paramter2 & <-- ...
-1
votes
1answer
60 views
How to verify multiple application logs on more than one linux servers remotely [closed]
I am looking for a easy way to check application logs on multiple servers. How can I search for error string in multiple Linux application servers remotely?
e.g.
Need to search a string pattern in ...
1
vote
1answer
193 views
How to connect to remote mysql database
i have viewed all the related question and answers but still having problem to connect to remote mysql database.
what i have done so far is..
1
CREATE USER 'root'@'192.168.1.100' IDENTIFIED BY ...
-1
votes
1answer
105 views
start kde from ssh [closed]
I have a program that I need for job desktop. I need to start computer (without monitor) with Linux(Kubuntu), connect with ssh from another computer and start kde. I don't need to see desktop. I only ...
0
votes
2answers
145 views
Remote commands execution and file acces in Linux and Windows
Suppose I have a server application installed in a few Linux and Windows machines. Now I would like to control it remotely. That is, I would like to start and stop the application, update the ...
0
votes
1answer
196 views
Python Lib to excute remote windows commands from a linux Box without using ssh
This a very basic requirement of our project.
I need to run Windows command from a linux box, without using ssh, as not all the windows boxes have ssh installed by default.
I was searching for ...
-2
votes
2answers
74 views
Open graphic applications when connected by CLI terminal [closed]
I have to connect to remote Windows host through Putty with SSH or telnet. That means I can launch all command-line programs (e.g. dir, type etc.).
I'm connecting from a Windows host. The remote host ...
0
votes
0answers
158 views
How to execute a remote Windows Server program/process from a Solaris (Unix) machine?
I need to launch a Windows Server 2008 process (.bat) from a shell script located in a Solaris platform.
This remote execution should be done as close as possible the way you can perform a remote ...
1
vote
1answer
113 views
Remote IDE on Red Hat Enterprise Linux Server release 5.5
I have this version of Linux server:
-bash-3.2$ cat /proc/version
Linux version 2.6.18-194.11.1.el5 (mockbuild@hs20-bc2-3.build.redhat.com) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Tue ...
7
votes
2answers
572 views
Bash: start remote python application through ssh and get its PID
I'm creating a little bash script to copy new files from a windows machine to a remote linux centos server (i run this script using the git-shell) then i want to restart the python application thats ...
0
votes
1answer
126 views
linux: How to disconnect Remote user access?
I am designing an application to access remote screen using vncviewer through QProcess in Qt.
( I am using vino-server at remote desktop)
After login to the remote screen (in fullscreen mode), i want ...
0
votes
3answers
120 views
populate Html table with remote files
I want to create a HTML page that will have a table that will populate itself with info from 2 .txt files that are on a remote Linux Server.
or populate a html page on that remote server with the same ...
0
votes
0answers
60 views
How to use the webUI for Heritrix remotely
Hello I have been playing with Heritrix, and would like to include it on a website/allow remote web access to it.
I have a Linux based server where I have a hosted webpage, and I have built a ...
1
vote
1answer
203 views
Qt::How to identify/detect if the system is Remotely access by other system in Linux
I am developing an application in ubuntu to access the other system remotely through QT. Both system are running some Qt applications.I want to check / make changes to the other system remotely using ...
1
vote
0answers
34 views
Is it possible to enable networking from a remote location? [closed]
I stopped networking in a remote Linux server firing the following command from Putty:
sudo /etc/init.d/networking stop
Is there a way to restart networking remotely?
0
votes
1answer
2k views
Can't remotely connect to VirtualBox guest via VRDP
At work, I have a desktop computer running Ubuntu 11.04 with VirtualBox installed. I want to run a Red Hat virtual machine (guest) on the work desktop computer (host).
On my laptop at home, I ssh'ed ...
0
votes
2answers
242 views
SSH multiple terminal MAC [closed]
I have to log in remotely to do my work. Is there any way I can log into the same machine and have more than one terminal in my laptop? I can SSH multiple time but it's not efficient.
1
vote
4answers
395 views
How to connect remote Linux box through PHP in windows environment
I'm on a Windows XP machine, with Wamp installed. Currently, I am using putty to connect my remote Linux boxes.
I want to execute Linux commands through php shell_exec() method (cp, ls, ...).
Does ...
0
votes
3answers
275 views
Command Line Control over a network
Is there any way to remote into another PC and use it's command line with full access?
I'm trying to develop a server that will have complete control over all of its clients via the command line.
It ...
2
votes
2answers
905 views
How to provide “reverse ssh” to a shell?
Scenario:
Many embedded devices (running Linux) out in the fields, behind routers so NAT'd and we can't make connections to them.
We need for a support person to be able to initiate a terminal/shell ...
2
votes
3answers
7k views
ERROR 2003 (HY000): Can't connect to MySQL server (111)
This question is related to the following questions:
Can't connect to MySQL server error 111
Trying to connect to remote MySQL host (error 2003)
I am configuring a new MySQL (5.1) server on my ...
0
votes
1answer
706 views
Linux file synchronization between computers
I'm looking for a software which will allow me to synchronize files in specyfic folders between my linux boxes. I have searched a lot of topics and what I've found is Unison. It looks prety good but ...
1
vote
0answers
104 views
Remote Access Linux Box - udp hole punch?
I was wondering if someone could help me shed some light on a particular problem I'm trying to solve.
The general idea is that I have a web application running on localhost (linux machine). I'd ...
0
votes
2answers
284 views
Opening multiple terminal with remote access
I am using remotely logged in to my work server through SSH. I have to work on terminal and it will be helpful if I can pull up multiple terminal to access multiple directories and files. How can I do ...
0
votes
1answer
532 views
How to access an open terminal session
I would like to know if it is possible on any OS to be able to remotely connect to a terminal prompt session which is already open as it gets quite annoying when switching to the iPad using the prompt ...
-1
votes
2answers
327 views
Linux to Linux GUI Remote [closed]
I wants to access GUI of Linux machine from another Linux machine.
I can access its terminal using "ssh username@IP_Address" command but i wants the access of its GUI.
0
votes
1answer
429 views
Free software to command line login to Windows from Linux [closed]
I have a feeling the answer to this is "it's not possible", as I have googled a fair bit already. However, as I do cross platform development I would like to simultaneously work on my Linux laptop in ...
2
votes
1answer
4k views
Remotely shutdown/reboot Linux boxes without SSH?
I need to remotely shutdown and reboot Linux (Ubuntu) machines without logging into them (otherwise simple commands can do the job). The machines are just cheap PCs so there are no special power ...
2
votes
1answer
738 views
Knowing if a remote port forward was successful?
I am trying to setup some reverse ssh tunnels so I can access my home network by bouncing off some server with a public IP.
When I run this command:
ssh -R :[port_XX]:localhost:22 some_user@my_server
...
0
votes
2answers
297 views
Apache, Linux and Remote Commands Like 'Ping'
I need to contact a server (perhaps Apache) running on a Linux box and have it return the following results. I am new to networking, but can write code in Java, PHP and maybe a little C.
I need to ...
1
vote
1answer
429 views
Copying and executing local files to a remote server with windows and linux using java
What I'm attempting to do is copy a number of files from one host machine to a remote server using java and after the copy is made, I'll execute those files that I transferred. The host machine may ...
0
votes
0answers
346 views
How to map/mount a directory on my VPS to a location on my Windows 7 box at home? [closed]
How can I map/mount a folder on my Ubuntu Server development VPS (hosted elsewhere on the great Interwebnets) to a drive/folder on my Windows 7 box at home?
Preferably in a secure/encrypted manner ...
1
vote
1answer
895 views
How can I run an application on a remote machine by ssh?
How can I run an application on a remote machine via ssh?
I tried using JSCH, this way:
Properties props = new Properties();
props.put("StrictHostKeyChecking", "no");
String host = ...
0
votes
2answers
108 views
Remote Linux Server setup plan
I have an old computer with formatted drive lying around collecting dust, now I want to instal a linux like OS (any suggestions?) on it and install a web server, preferrably Lighttpd. I want to set ...
1
vote
3answers
1k views
How to check programmatically the OS of remote host?
I need to check if remote host is Windows or Unix/Linux.
I can't assume that it has web server configured.
All I can do is to try to connect to several TCP or UDP services.
Which TCP services (TCP ...
1
vote
2answers
400 views
Edit files on server with Eclipse
I'm trying to figure out how to do this with Eclipse. We currently run SVN and everything works great, but I'd really like to cut my SSH requests in half and use Eclipse to modify some files directly ...
1
vote
3answers
224 views
Library for remote file access in linux?
Im working on a program to access files from remote hosts. Basically what i want to do is logging in remote Windows/Linux host with valid credentials, check what files exist in a specific folder, read ...
2
votes
3answers
607 views
how to read list of running processes on a remote computer in C++
What can be done to know and list all running processes on a remote computer?
One idea is to have a server listening to our request on the remote machine and the other one is to use ssh.
The problem ...
0
votes
8answers
9k views
Remote X Display with Fedora 10 running KDM and XFCE
I am developing a JSF web application on a Windows box using Emacs as my editor but I far prefer to use Emacs in a Linux environment. In the (somewhat distant) past it was a no-brainer to use a ...


