Skip to content

Tag: remote-access

Why does this not kill remote process?

The follow command works in a local terminal: But this command doesn’t work remotely: …even though script.py on remote belongs to john, the user we are ssh as. I can ping successfully and other commands are successful. Answer You need to escape the pipes to cause them to be passed to the ssh comma…

open file from remote host with Kate

Is it possible to open a file from a remote host with Kate like you can with vim: vim scp://root@cc3//var/log/dp.log? I’ve tried the following but neither option seems to work: kate scp://root@cc3//var/log/dp.log & and kate fish://root@cc3//var/log/dp.log & Answer By design, Kate interacts with …

Running qt creator via remote desktop

We are developing a software using QT creator. The software is meant to run on windows and on an ARM mini-computer running Debian. To test the software on the mini-computer, we logged in on the mini computer using ssh and an exported display. Some programs like Inkscape run fine, but we can’t get to run…

linux connect to remote sybase and backup/dump

I am on a CentOS machine and connected to a remote Sybase service through freetds/isql. I have no problem connecting to the remote database through isql. I’d like to dump the database to my localhost (my CentOS machine). From the isql prompt, I cannot do this with the ‘backup database’ comma…

How to use Maven in a remote Linux server?

I have an extracted file of maven in my remote. I am trying to add the environment variables using these commands: When I execute mvn -version, I get this particular error : How do I run my Maven commands on Putty which I am using to access my remote Linux server? Answer Your user (z222189) doesn’t have…

process a file remotely using ssh

I have this report.tex file which I convert to pdf as follows: These commands are placed in a file called linux_build This works great. However, this works on my Linux machine and most of my work I do on my Mac I checked out MacTex which is enormous (> 4GB) so I decided to process the latex file remotely (…