Category Archives: Posted

ToriOS

torios logo http://torios.net/

A minimal Ubuntu-ish installation which also works on most older machines

I have discovered that Lubuntu does not work on older machines, as it need a PAE CPU

I have been recommended to use ToriOS as a non-PAE capable spin-off from Ubuntu.

http://torios.org/ is the original website, but they’ve lost access to update it so are making a new website at http://torios.net/

It looks like this project needs more workers on it !

In an email replying to my question of why their forum doesn’t work they wrote:

we have decided to put the forums off until we release the
stable version and have people who could take care of the forum. For now, we don’t need it.

 

PS
Other small linuxes are Damn Small Linux and Slitaz.

26 November 2014 Meeting

Hi Everyone

Our November LUG meeting will be on Wednesday night at 7.30pm, (sorry for the late notice) usual place the Courtyard in Hereford on the mezzanine floor. Hope we can get a good number at the meeting on Wednesday night.

If you have been on our list but haven’t attended a meeting yet, or you’ve been unable to attend for a while, we’d be very pleased to see you.

The meeting will start at roughly 7:30pm as usual.

Topics for Wednesday :-

1. Would be good to get some ideas on topics, and events that the group would like to pursue in the coming year.
2. Secondly, we need to discuss where we would to go for our Christmas LUG meal that usually takes the place of our December meeting. The Ponte Vecchio Italian restaurant in Hereford has been great last couple of years, should we stick with this, or go somewhere different ?

The Courtyard has free fast wifi and serves lovely coffees and food, and there is level access to all public areas of the building. You can find directions to The Courtyard, Edgar Street, Hereford, HR4 9JR here

The Courtyard has pay and display parking adjacent and free parking a short walk away.
(Free parking in adjacent streets.)

I’ll see you all there on Wednesday.

Regards

Julian

September Meeting

Hi Everyone
After a few problems last month, just a quick note to say our September LUG meeting will be on Wednesday night at 7.30pm, usual place the Courtyard in Hereford on the mezzanine floor. Hope we can get a good number at the meeting on Wednesday night.
cryIf you have been on our list but haven’t attended a meeting yet, or you’ve been unable to attend for a while, we’d be very pleased to see you. The lift appears to be working too (the last time I checked a couple of weeks back).
The meeting will start at roughly 7:30pm as usual.
Items to discuss :-
  1. Herefordshire Linux / Open Source Event to take place instead of Software Freedom day.
    Need to decide a date, (November ??), what are we going to do, start the planning, venue (All Saints ??), etc, etc?
The Courtyard has free fast wifi and serves lovely coffees, and there is level access to all public areas of the building. You can find directions to The Courtyard, Edgar Street, Hereford, HR4 9JR here
The Courtyard has pay and display parking adjacent and free parking a short walk away.
I’ll see you all there on Wednesday.

Router Story

I recently installed DD-WRT on my router.  It is an open source firmware that gets more out of the router, I specifically did it as TalkTalk, who are my ISP, now provide a few Internet streaming TV channels via the YouView service which stopped working  when I ditched the router (Huawei HG 533) they supplied in place for a fairly cheap Netgear WNR2000v2. The Netgear seems to handle DNS better and surfing the Web is now an a lot more pleasurable experience.  These Internet TV channels not working did annoy me a bit though, I found out it was due to the Firewall in the router blocking Multicast ‘signals’.  There was no way to remedy this using stock firmware but installing DD-WRT gave me a lot more options and it was very easy to enable Multicast.

Find more details about DD-WRT at http://www.dd-wrt.com/

May Meeting – 28th May

Hi Everyone
Just a quick note to say our May HLUG meeting will be on Wednesday at 7.30pm, usual place the Courtyard in Hereford on the mezzanine floor.
If you have been on our list but haven’t attended a meeting yet, or you’ve been unable to attend for a while, we’d be very pleased to see you. Nice light evenings at the moment so a good time to come along.
The meeting will start at 7:30pm as usual.
Items to discuss :-
  1. OPEN SOURCE AND THE PROFESSIONAL AUDIO/VISUAL ENVIRONMENT EVENT – 18 JUNE 2014

    Room booked – need to discuss details in terms of organisation on the night and publicity to other groups.

  2. Possible Linux Bier Wanderung meet up, in Talybont on Usk –  July. I’ve emailed their group and they are happy for us to come down that Wednesday evening .
The Courtyard has free fast wifi and serves lovely coffees, and there is level access to all public areas of the building. You can find directions to The Courtyard, Edgar Street, Hereford, HR4 9JR here
The Courtyard has pay and display parking adjacent and free parking a short walk away.
I’ll see you all on Wednesday night.
Julian

Ubuntu 14.04 Release (Linux OS)

All,

Ubuntu has released version 14.04 LTS (Long Term Support) which means the OS will be supported for at least 5 years. Ubuntu 14.04 is available to download from:

http://releases.ubuntu.com/14.04/

A background on LTS, and the roadmap for other Ubuntu releases can be found here:

https://wiki.ubuntu.com/LTS

Linux Logging

The Linux operating system has a built-in logging facility. The aim of logging is to log system events, in addition to application events and user events.

Why Log Events?

Having a log of events is very important for the system administrator, in order to troubleshoot errors, system faults and to understand activities performed by a user i.e. last login.

View Log Events

Log events are recorded in /var/logs

If you navigate to this folder using the CLI and ‘ls‘ you will see a number of log files.

messages – This is the generic log file for recording startup events, application events

dmesg – This records kernel messages, including boot up messages, hardware information

boot.log – This records the information that you see when Linux boots

cron – Lists cron job events

To view the above log files simply enter ‘more messages‘ to view the messages log.

Special note: dmesg is also a command i.e. typing ‘dmesg | grep -i usb‘ will return a selected list of event messages containing the keyword USB.

To search the messages for ‘usb’ try the following command:

tail -f messages | grep ‘usb’

What Next?

Familiarization with the following commands will help you navigate around the various log files:

less, more, cat, tail – use for viewing files at the CLI

grep – a very powerful utility that can be used for pattern matching/text searching

logger – enables the use to log events via the CLI

Way Forward

The above covers the basic principles of Linux logging. These log files underpin IT security monitoring capabilities and used on an enterprise scale. The next articles will cover the use of ‘syslog’ that can be used to harvest log files for intrusion detection.