Getting hardware working on Linux versus Windows 8. This is frustrating.

I have just bought an old Kaiser Baas TV dongle and getting it to work on Windows is very frustrating. The website does not have drivers available and there are only dodgy driver download websites that have anything for download. Whereas on Linux, I just plug it and then run this command to scan for … Read more

Original Windows NT4.0 file manager available for modern Windows releases.

The original file manager that was featured in Windows NT 4.0 is now available for a modern 64-bit operating system. This is a Visual Studio solution and will build on a modern Windows operating system. Microsoft are gradually open-sourcing old parts of Windows. This is a good thing I think. This would be very interesting … Read more

Run Windows in a qemu virtual machine easily for testing purposes. This is lots of fun to do.

Running Windows in a qemu virtual machine is very easy. Install all required qemu packages. jason@Yog-Sothoth:~$ sudo apt-get install qemu-kvm qemu-utils qemujason@Yog-Sothoth:~$ sudo apt-get install qemu-kvm qemu-utils qemu Now we can create a virtual machine disk image to install our virtual machine onto. jason@Yog-Sothoth:~$ qemu-img create -f raw win7.img 30Gjason@Yog-Sothoth:~$ qemu-img create -f raw win7.img … Read more

How to install a lovely Windows 7 GTK theme on Linux Mint or Ubuntu.

A lovely GTK theme that emulates the look of Windows 7. I have just found a very good Windows 7 GTK theme: https://www.gnome-look.org/content/show.php/Win2-7+Pack?content=113264. This is a lovely GTK theme that makes your MATE or Gnome 2.32.2 interface look just like the Windows 7 Basic theme. Windows Vista icon theme: http://www.securitronlinux.com/files/Vista.tar.gz. Install this alongside the Windows … Read more

New Petya cyber attack targeting insecure Windows machines.

Petya cyber attack threatening many Windows machines Petya cyber attack screen on Windows. This is a new version of the Wannacry malware that is targeting insecure Windows machines. Apparently, there was a system that pushed updates to many Windows machines, and the malware was introduced into the updates and therefore spread like wildfire. This is … Read more

New ransomware attack overstated by the media, here is how to stop it.

The new ransomware threat in the wild is quite amazing, but it relies on your machine having ports open to the web and the SMB service running in Windows. A lot of existing machines might have this service running and they might not be patched at all. Since this was known about for many months, … Read more

Complete pack of Windows wallpapers for your Linux desktop.

Windows has some very cool wallpapers available in it. Here are a few old favorites from old and new versions of Windows. These could be interesting choices for a Windows lookalike desktop on Cinnamon or KDE. These are very cool, especially the high-res wallpapers for Windows 10. Complete pack of Windows wallpapers from every release … Read more

How to remove windows features with the dism command.

These commands used in a Administrator cmd prompt will cleanup any Windows update files and any other unwanted temporary files on your Windows system. dism /online /cleanup-image /spsuperseded cleanmgr /d C:dism /online /cleanup-image /spsuperseded cleanmgr /d C: In my case, there were no Windows Updates to cleanup. dism /online /get-featuresdism /online /get-features The command above … Read more

Cool hidden themes in Windows 7.

This theme pack is an archive of the hidden themes in Windows 7. These are extra regional themes. http://www.securitronlinux.com/maps/hiddenthemes.zip. Go here to find these extra themes. C:\Windows\Globalization\MCTC:\Windows\Globalization\MCT This archive might be useful to Linux users who would want the wallpapers. Below is an archive of all of the wallpapers and images from the Windows `98 … Read more

How to use xrdp on Linux Mint 15 to allow remote desktop connections from Windows 8.

How to remote desktop into a Linux desktop with the xrdp command Very easy when you use xrdp. This is how to use the Windows 8 Remote Desktop client to connect to a Linux machine running Linux Mint 8. This is a way to remotely control a Linux machine with a graphical desktop. This makes … Read more

How to get wireless network information in Windows 7 with CMD.

Getting wireless network information from Windows 7 is easy with CMD and netsh. This post will show how easy this is without admin access. Listing all visible wireless networks on the machine with netsh. C:\Users\Corporal Kerry>netsh wlan show profile   Profiles on interface Wireless Network Connection:   Group policy profiles (read only) ——————————— <None>   … Read more

How to get system information in Windows with CMD.

The systeminfo command for Windows allows a user to get comprehensive system information. The default usage outputs the most system information in one go. C:\Users\Corporal Kerry>systeminfo | clipC:\Users\Corporal Kerry>systeminfo | clip This command will output the system information in CSV format. C:\Users\Corporal Kerry>systeminfo /FO CSVC:\Users\Corporal Kerry>systeminfo /FO CSV Use the /S parameter to specify a … Read more

How to pipe the output of a Windows command to the clipboard.

Pipe text to the clipboard from Windows CMD Apparently, there is an obscure feature in the Windows CMD prompt that allows users to pipe the output of a Windows CMD command on STDOUT to the Windows clipboard. The clip command allows this. For example. C:\Users\johnc>ipconfig | clipC:\Users\johnc>ipconfig | clip This will pipe the IP addressing … Read more

Linux still a better option than Windows.

http://www.walkernews.net/2007/06/22/download-official-redhat-linux-iso-image/ The link above is to the Redhat 6.2 Linux distribution, the first version of Linux I used. It ran very well on a Celeron 600 with 64MB of RAM and integrated graphics. Linux has come so far since it was first released, the desktop has gotten even easier to use and with the release … Read more

Location of the filesystem that the Windows 10 bash shell uses.

Location of the Windows 10 bash shell files This is the location of the actual files that are installed when you install the Windows 10 bash shell. This means that it is not really a ext4 filesystem, but emulating this when you load it up in a CMD window. %localappdata%\lxss\rootfs%localappdata%\lxss\rootfs The location of the actual … Read more