From the machine that you wish to connect from, run the command below with the user that you will connect with to the remote machine:
In my example of command below; The user used was root.
Rename folder by removing 7 first characters in bash
I had the need to remove from several folders that the same level the first 5 characters recursively.
for i in **; do [[ -d "$i" ]] || continue; mv "$i" "$(echo $i | sed -e 's/^.......//')";done
Htpc Manager on Synology NAS
I had a quick look over this interface that integrate some common tool as Sabnzbd, Sicxkbeard and XBMC (also some others).
If you wish to run this interface on your Syno NAS:
– From another machine running linux, GIT is needed to download Htpc Manager; However you can copy the files from to any others machines and run this interface as soon as Python is present.
git clone git://github.com/styxit/HTPC-Manager.git
- once the download is done. Copy the entire folder onto your NAS; In my case I did copy it on the volume1 of my NAS.
cp -r /volume1/share/HTPC-Manager/ /volume1/@htpc
- Now, navigate into the folder, once there; verify if the python is well found; run this command start it:
/usr/local/htpc/env/bin/python /volume1/@htpc/HTPC-Manager/Htpc.py
Port scan using bash
Checking the opened port for any remote IP on your network or others.