-
Recent Posts
Recent Comments
Archives
Categories
Meta
Author Archives: dennis
OSX Camera lost
When camera cant be found anymore in OSX try this sudo killall VDCAssistant sudo killall AppleCameraAssistant
Posted in Uncategorized
Leave a comment
OSX not enough diskspace
For some reason timemachine (sometimes) leaves a bunch of local thin snapshots on the disk which causes an error when trying to backup for example iphone to disk (using iTunes). Last time I had about 230G of available disk space … Continue reading
Posted in Uncategorized
Leave a comment
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
kvm console
Direct terminal access via Serial Console It is possible to access a KVM Guest directly using the Serial Console interface, in which case setting up bridged networking, SSH, and similar is not necessary. Access via the Serial Console provides … Continue reading
Posted in Uncategorized
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
Find new files
How to find new files in current folder this case last 7 days and print it in a nice format find . -type f -ctime -7 -printf “%Tx %TH:%TM %f\n” | sort
Posted in Uncategorized
Leave a comment