Category Archives: Reference

Short references for personal… reference. Basically a howto for the tech-savvy.

Removing a WIFI-network in Windows 8

After having to look this up a third time, I found a post on Vonnie’s blog about it. I made a copy here. In short, Microsoft fucked up and you’re left with the command line to do this, unless the wireless network is in range. The following commands list all the WIFI networks you have […]

Shrinking a vmdk with VMware Player

It seems VMware has removed the GUI for the disk shrink feature in VMware Tools, but the good news is it’s still available from the console. The following command will shrink the disk image for drive C: “C:\Program Files\VMware\VMware Tools\VMwareToolboxCmd.exe” disk shrink c:\

Cygwin auto started sshd service as single user on Windows 8

On a single user desktop, you might want to run cygwin sshd autostarted as a specific user, without privilege separation. Here’s a short reference: Disable UAC Open a Cygwin terminal ssh-host-config Select “no” on privilege separation Enter nothing, [], as the value of CYGWIN for the daemon Select “yes” to use a different username than […]

Disable UAC in Windows 8

While Windows 7 let you disable UAC by simply typing “UAC” into the search field on the start menu and disabling it from the UAC options that show up, Windows 8 made it a bit more complicated. In short, press Windows+R, type secpol.msc, go to “Local Policies => Security Options” and set “User Account Control: […]

Creating .deb-Packages With Checkinstall

If you’ve exhausted all other options, it might be time to compile from source, even in Debian. If you’re about to do that though, don’t abandon the concept of .deb files and the advantages they bring with versioning and easy removal. Use “checkinstall“. Checkinstall is in the standard Debian repositories and encapsulates your install into […]