Use qdel to delete all my jobs at once, not one at a time
Found the answer buried in an old supercluster.org thread: qselect -u <username> | xargs qdel Worked flawlessly.
Found the answer buried in an old supercluster.org thread: qselect -u <username> | xargs qdel Worked flawlessly.
Use the config setting “DynamicForward” Here is a quick example of what it should look like: Host example.com User username DynamicForward 8080 If the DynamicForward option is only given a port number, then it will bind to localhost:port. You can add a specific IP to get it to bind to an address other than the … Read more
This turned out to be very simple, complete guide is here Using SSH Forwarding In essence, you need to create a ~/.ssh/config file, if it doesn’t exist. Then, add the hosts (either domain name or IP address in the file and set ForwardAgent yes) Sample Code: Host example.com ForwardAgent yes Makes SSH life a lot … Read more
Note that some incomplete answers might lead to security flaws. Using ssh -Y means here having fake xauth information which is bad! ssh -X should work since XQuartz, once enabled, uses xauth. The only problem is that ssh is looking for xauth in /usr/X11R6/bin and on macOS with XQuartz it is in /opt/X11/bin Secure solution: … Read more
On server Install rsub: wget -O /usr/local/bin/rsub \https://raw.github.com/aurora/rmate/master/rmate chmod a+x /usr/local/bin/rsub On local Install rsub Sublime3 package: On Sublime Text 3, open Package Manager (Ctrl-Shift-P on Linux/Win, Cmd-Shift-P on Mac, Install Package), and search for rsub and install it Open command line and connect to remote server: ssh -R 52698:localhost:52698 server_user@server_address after connect to server … Read more
OSXFUSE seems to work. I just downloaded the two OSXFUSE and SSHFS packages from http://osxfuse.github.com (the links are on the right hand side), and ran: sshfs user@host:/dir /mnt/somelocaldirectory EDIT: if you want a GUI, you might want to try sshfs-gui, though I haven’t tried it myself. Personally, I’d use Cyberduck, though it doesn’t technically do … Read more
You need an scp client. Putty is not one. You can use WinSCP or PSCP. Both are free software.
Press the following three keys: Enter ~ (tilde) . (period) This is the “disconnect” function as described in the ESCAPE CHARACTERS section of the ssh man page.