Category: Tools

Official Repos for btsync (Resilio)
article #973, updated 3117 days ago

For Debian-based and RPM:

http://t-e.cc/install-btsync-on-ubuntu-14-04-from-official-repo/

Categories:      

==============

Recommended DropBox replacement
article #967, updated 3126 days ago

This one’s new and comes recommended, I have not tested it yet:

https://www.pcloud.com/cloud-storage-pricing-plans.html

Categories:      

==============

syncthing on CentOS 7 and multiple Fedora versions
article #948, updated 3197 days ago

After scouting a rather large number of potential sources, this one is working extremely well; download the .repo file for your OS and put it with the rest, and you’re in with yum or dnf!

https://copr.fedorainfracloud.org/coprs/decathorpe/syncthing/

Categories:      

==============

Write an ISO to USB stick using 'dd' in Linux
article #942, updated 3213 days ago

A great command in Linux is:

dd bs=4M if=file.iso of=/dev/sd<letter> status=progress && sync

where <letter> is the letter for your flash drive. Do be careful finding it, because your hard drive(s) and CD/DVD drive(s) are also among these; you can get the list with ls /dev/sd*, and also all mounted drives can be listed with mount.

Also, it does have to be run as root, so sudo as a prefix may be very helpful.

Categories:      

==============

SSH login without password
article #356, updated 3239 days ago

Here’s a bash script! Works very nicely. Once run on one side and specifying a destination, one does not need a password to open that SSH link in the future.

#!/bin/bash
echo "setup-autossh by Jonathan E. Brickman, jeb@ponderworthy.com"
if [ $# = 0 ]; then
	read -p "Please enter the SSH destination in the format user@host : " sshdest
elif [ $# = 1 ]; then
	sshdest=$1
else
	echo "Usage: setup-autossh [user@destination]"
	exit 1
fi
if [ ! -f ~/.ssh/id_rsa ]; then
	echo "Creating RSA key for authorization..."
	ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa
fi
echo "Copying authorized RSA key to $sshdest ..."
remotecmd="cat > authorized_keys ; mkdir -p .ssh ; cat authorized_keys >> .ssh/authorized_keys ; rm authorized_keys"
cat ~/.ssh/id_rsa.pub | ssh $sshdest $remotecmd

Categories:      

==============

Windows Updates offline
article #34, updated 3278 days ago

There are now multiple alternatives to the bundled Windows update system. First of all, the original, AutoPatcher, appears to be in the midst of a well-deserved renaissance:

http://www.autopatcher.net/

And we also have WSUSOffline:

http://www.wsusoffline.net/

And there are quite a few more too, not tested by this writer as of yet!

Categories:      

==============

File and folder synchronization, local, SSH, and mobile
article #919, updated 3286 days ago

FreeFileSync is a great piece of work, it synchronizes files and folders between local drives, over SSH, and to mobile devices via MTP over USB.

Categories:      

==============

Advanced IP Scanner works very well
article #911, updated 3298 days ago

For detecting devices on your LAN:

http://www.advanced-ip-scanner.com/

Categories:      

==============

Create bootable CDs/DVDs for Win7, Win8, Win10
article #889, updated 3353 days ago

For Windows 10: http://win10se.cwcodes.net/

For Windows 8: http://w8pese.cwcodes.net/

For Windows 7: http://reboot.pro/topic/12427-win7pe-se-release/

Categories:      

==============

Share keyboard and mouse between multiple PCs, across Windows Mac and Linux
article #882, updated 3366 days ago

Courtesy of the amazing Jared Dexter:

http://www.synergy-project.org/

Categories: