Glances. A nice new networking script for Linux that runs on Python.

Glances is a very detailed script that will print out comprehensive information about your Linux workstation or server. To install the Glances script clone the git repository this way. jason@jason-desktop:~$ git clone https://github.com/nicolargo/glances.git Cloning into ‘glances’… remote: Counting objects: 13758, done. remote: Total 13758 (delta 0), reused 0 (delta 0), pack-reused 13758 Receiving objects: 100% … Read more

Misc commands to get system information from a Linux box.

List all network interfaces on your Linux machine that are up. [jason@localhost ~]$ ip addr | grep UP 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP qlen 1000 3: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN[jason@localhost ~]$ ip addr | grep UP 1: lo: … Read more

Some useful Windows commands to use in the cmd window. Get information about your user.

This command lists the information about your user. C:\Users\homer&gt;net user Administrator User name Administrator Full Name Comment Built-in account for administering the computer/domain User’s comment Country code 000 (System Default) Account active No Account expires Never   Password last set 11/2/2006 11:08:15 PM Password expires Never Password changeable 11/2/2006 11:08:15 PM Password required Yes User … Read more

My useful system information script for any Linux user who wants quick system information.

This is a system information script I am working on. This shows some useful information about your Linux system. #!/bin/bash   echo " My System information script." echo " " echo " "   echo "The computer has: $(awk &lt; /proc/meminfo ‘{ if ($1 == "MemTotal:") { print $2 }}’) Kilobytes of RAM." echo "The … Read more

New super powered Linux PC from System 76. Up to 64 Gigabytes of RAM!

This computer from System 76 is an absolute beast. System 76 ship Linux powered computers for those of us that want to play Linux games and do 3D modelling with Blender. This computer can ship with these specs for the base model: Quad-core Intel Core i7-4820K @ 3.70Ghz 8GB DDR3 RAM (1866 MHz) 1GB nVidia … Read more

Voyager probe leaving the solar system behind and strange finds at the edge of the solar system.

The Voyager probe is still travelling out to the edge of the solar system and it has found to the surprise of many that even though the solar winds have dropped away, the magnetic field has not dropped. This seems to indicate that the solar systems edge is fuzzier than first thought. This could mean … Read more

Munich council handing out free Linux distribution CD`s to replace Windows.

The Munich council is handing out free Linux CD`s to help replace Linux on the desktop. This can only be a good thing when Windows XP is no longer supported with upgrades on the desktop. There is a case study here: http://blog.credativ.com/en/2013/01/case-study-munich-city-council.html this describes the migration process of the council from Windows XP to Linux. … Read more

The government PRISM system monitoring all Internet traffic in America.

The Obama administration have been caught in the PRISM spying scandal. This involves the National Security Agency spying on Americans using their text messages and Internet access records. Considering that the Google Chrome browser is sending information about your browsing history to Google, and the Patriot Act allows the United States government to monitor and … Read more

How the personal computer has evolved through the ages. How things have changed since the early days.

The personal computer has changed so much since the early days of the computer. The earliest true computer, the ENIAC was a massive machine that took up a warehouse. This massive machine used vacuum tubes to perform calculations instead of the modern silicon chips that the computers of today use. There were many computers and … Read more

New version of the NetBSD UNIX distribution released.

The new release of the NetBSD UNIX distribution has just been released. This distribution based on the 4.4BSD operating system gives the user a super secure and reliable server operating system that is fully capable of powering an Apache http server; a mail server or MySQL database. This operating system using a UNIX kernel and … Read more

Ubuntu landscape management system available for the 12.10 distribution.

The Ubuntu 12.10 distribution has a new remote management system called Landscape. This management framework allows a manager of a network of Ubuntu machines to manage all the computers from one location. The Landscape system can manage installation of updates across all of the installed desktops, and make sure all of the installed software and … Read more

Running a command within another program. How to do this with C.

This code snippet will run the date command. The execl() function is very useful for executing a command within your C program.You replace the NULL identifiers with any extra arguments to pass to the program. I prefer this over the system() function. #include <unistd.h>   int main(void) {   execl("/bin/date", "%c", NULL, NULL, NULL); return … Read more

How to set the correct time with the command-line on Debian.

Setting the system time with Debian Linux is very simple, using the date command, you may display the current date/time, then copy this to the date -s “” command and then edit it to the proper value. This is the easiest technique to set the Linux system time. This is the existing date. root@deusexmachina:/home/neo# date … Read more

The origins of the Gnome Nautilus file manager.

The file manager on the old Macintosh Operating System looks just like the Gnome Nautilus file manager on Linux. I was using my brother’s iMac today and I was amazed at how much a very old version of Macintosh OS looks just like Gnome. The Macintosh operating system is better than Windows, it is not … Read more

The broken Ubuntu runlevel system.

http://caulfield.info/emmet/2008/03/add-a-textonly-runlevel-to-ubu.html. The Ubuntu distribution is broken in one big way, the Red Hat Linux distribution has run levels properly configured, where you can type su -c “init 3” to shut down the graphical login manager and switch to a run-level that only has the seven TTY virtual consoles running. That needs to be brought back, … Read more

Voyager probe leaving Solar System.

The Voyager probe that left Earth 34 years ago is now leaving the Solar System altogether and moving into a huge cloud of matter that is surrounding our Solar System. The craft’s batteries have enough power to keep the venerable craft operating until anno 2020. The fact that the computers are still working and processing … Read more

Russia to create their own Linux OS.

Russia is planning to create their own Linux-based operating system to replace the insecure and crash prone Windows operating system. This on the back of the Red Flag operating system from China. India have also announced that they are planning to create their own super secure operating system to use in deference to the malware … Read more

Xerox Star computer system circa 1982. A predecessor of modern computer systems.

The Xerox Star system of 1982 was the first to have a GUI with a mouse and keyboard operating icons on the screen, which was then copied by Apple Corporation to create the Apple interface. This was later the inspiration for the Windows operating system with it’s icons and mouse control. But it was a … Read more