-
Began Watching hard drive options for a raspberry pi 2 backup server
I've been wanting to build a backup server for my Mint desktop as well as for my Debian media server for a while now. To save money I purchased a … -
Replied To a Post in hard drive options for a raspberry pi 2 backup server
It sounds like you already have the Pi, but I got a cubieboard for this purpose because it has an actual SATA port. I've got a 1TB 2.5" drive, powered … -
Gave Reputation to rubberman in What is SSH commands for this: run 20 times, break 2 seconds, and repeated
As per andy1973's question, there is no ssh in the provided code. The wget command has nothing to do with ssh. -
Began Watching What is SSH commands for this: run 20 times, break 2 seconds, and repeated
I am using centos Please help what is SSH commands to do this: run a command 20 times, break 2 seconds, and repeated again so like this // run 20 … -
Replied To a Post in What is SSH commands for this: run 20 times, break 2 seconds, and repeated
Seems like @rch1231 has what OP is looking for. Here's an alternative that I like, using the 'seq' command as the counter: #!/bin/bash while true; do for i in $(seq … -
Began Watching software for backup of client
I want a software that can give a back up of any client computer, from my server is there ? what software? and I want a software that I know … -
Replied To a Post in software for backup of client
ITPT: Check out R1Soft (Idera Server Backup) or Crashplan. I don't know of any one piece of software that will do backups AND notify you of hardware changes on the … -
Began Watching Mysql on ubuntu
i downloaded mysql-5.6.17-linux-glibc2.5-i686.tar.gz for Ubuntu 13.04 what next step to install it on ubuntu -
Replied To a Post in Mysql on ubuntu
Apt is what makes Ubuntu (and Debian) awesome! You should be able to get MySQL running with a single command: `sudo apt-get install mysql-server mysql-client ` Unless there's a really … -
Began Watching Scripting
#ss4 #Usage: ss4 <filename> chmod 744 $1 $1 Hi this is my script , after executing it i am getting error as "./ss4: line 6: ss1: command not found" HELP … -
Replied To a Post in Scripting
You could also just call the interpreter first. For instance, if we know that "$1" is a shell script: `/bin/sh $1` or `/bin/bash $1` I hope rohan1111 gets back to … -
Began Watching Is there a way to organize bash_profile across different platforms
I want to have one .bash_profile works on multiple platform, ubuntu, debian, redhat, cygwin, osx. So how should I organize .bash_profile? It can be multiple files in some subdir Let … -
Replied To a Post in Is there a way to organize bash_profile across different platforms
Most options for .bash_profile that are cross-platform compatible, though you may need to script something to detect paths for different OS's. What kind of profile options are you looking for? …
The End.