Setting up Debian 7.0 in VMware, how to install the VMware tools extensions.

The VMware tools are useful extensions for Debian, that allow a Linux distribution to be more usable in the VMware hypervisor. Use this simple command to install them in Debian 7.0. root@debian:/home/homer# apt-get install open-vm-tools-desktoproot@debian:/home/homer# apt-get install open-vm-tools-desktop The open-vm-tools-desktop package installs the graphical VMware tools additions that will speed up the desktop and enable … Read more

How I got Xorg mouse and keyboard working on FreeBSD 10

I recently installed FreeBSD 10 in VMware and I had problems getting the mouse and keyboard to work with Xorg. I solved this in the following manner. I added these four lines to my /etc/rc.conf file. moused_enable="NO" moused_nondefault_enable="NO" hald_enable="YES" dbus_enable="YES"moused_enable="NO" moused_nondefault_enable="NO" hald_enable="YES" dbus_enable="YES" The /etc/rc.conf file looks like this. hostname="deusexmachina" ifconfig_em0="DHCP" ifconfig_em0_ipv6="inet6 accept_rtadv" sshd_enable="YES" # … Read more

How to update the grub menu manually on Kali Linux.

The update-grub command will update the grub menu on Kali Linux. root@kali:~# update-grub Generating grub.cfg … Found background image: /usr/share/images/desktop-base/desktop-grub.png Found linux image: /boot/vmlinuz-3.12-kali1-amd64 Found initrd image: /boot/initrd.img-3.12-kali1-amd64 Found memtest86+ image: /boot/memtest86+.bin Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin No volume groups found doneroot@kali:~# update-grub Generating grub.cfg … Found background image: /usr/share/images/desktop-base/desktop-grub.png Found linux image: /boot/vmlinuz-3.12-kali1-amd64 Found … Read more

Using OpenSolaris UNIX for the first time in ages. This is a very good OS.

I have just installed OpenSolaris UNIX in VMware. First impressions really are good; the LiveCD environment works very well indeed. The Gnome desktop is a breath of fresh air compared to the crap Unity desktop that comes with Ubuntu 14.10. Firefox 3.1 Beta 3 is the default web browser; this is due to the fact … Read more

How to scan your Kali Linux system for security vulnerabilities using the lynis tool.

The lynis tool for Kali Linux allows you to scan your computer system for security vulnerabilities. Execute this command as root and this will allow you to find out if you have any problems with your installation. root@kali:/home/homer# lynis –check-all   [ Lynis 1.4.1 ]   ################################################################################ Lynis comes with ABSOLUTELY NO WARRANTY. This is … Read more