-
Recent Posts
Recent Comments
Archives
Categories
Meta
Category Archives: *nix
SSH Proxy
Set up the tunnel with this command: ssh -D 8080 -f -C -q -N toor@example.com Explanation of arguments -D: Tells SSH that we want a SOCKS tunnel on the specified port number (you can choose a number between 1025-65536) -f: … Continue reading
Posted in *nix
Leave a comment
unattended-upgrades
$ sudo dpkg-reconfigure -plow unattended-upgrades
Posted in *nix
Leave a comment
vmbuilder kvm
vmbuilder kvm ubuntu -c vmbuilder.cfg –hostname=guest –ip=193.10.5.x –ssh-user-key=/home/user/user.key –dest=/home/user/kvm/guest –tmpfs=- –part=vmbuilder.partition $ cat vmbuilder.cfg [DEFAULT] tmpfs=- hostname = stark ip = 193.10.5.x gw = 193.10.5.1 dns = 130.242.80.14 part = vmbuilder.partition user = user name = user pass = changeme … Continue reading
Posted in *nix
Leave a comment
ZFS
sudo apt-get install python-software-properties sudo add-apt-repository ppa:zfs-native/ sudo apt-get update sudo apt-get install ubuntu-zfs modprobe zfs dmesg |grep ZFS
Posted in *nix
Leave a comment