Hardware
Restoring from a RAID drive failure in Ubuntu
Eric Light Hardware, Linux, RAID, Repair, Software array, hard drive failure, partition, RAID, restore, Ubuntu 0 Comments
One inevitable outcome when working with multiple RAID arrays is that you are going to encounter drive failure at some point, no matter how well you prepare. Luckily, when it comes to Ubuntu, the process to replace a failed drive is not terribly difficult. You’ve probably arrived here because you already have a RAID array with a failed drive in it, and you’re looking for a tutorial to replace it. So this tutorial is written for people running Ubuntu, already with an mdadm RAID-1 array set up and running.
Running ‘sudo reboot’ causes shutdown with Intel C224 chipset
Eric Light Hardware, Linux, Operating Systems, Server 13.04, c224, intel, mei, power down, reboot, supermicro, Ubuntu, x10slm-f 0 Comments
When setting up a server recently (the one mentioned in this post), I encountered an odd problem: running sudo reboot would power down the machine, instead of rebooting it! This was occurring on a new Supermicro X10SLM-F motherboard with an Intel C224 chipset, running Ubuntu Server 13.04 Raring Ringtail.
It turns out that the problem is caused by buggy Intel drivers, and the problem can be resolved by blacklisting the mei driver. In order to do this, open up a terminal and enter the following:
$ sudo nano /etc/modprobe.d/blacklist.conf
Then add these lines:
# Don't load MEI driver; this allows system to reboot blacklist mei
Save and exit the file, and enter the following into the terminal:
$ sudo reboot
The machine should now reboot without any problems
Credit goes to Ubuntu forums user thomasberger for offering the solution: http://ubuntuforums.org/showthread.php?t=2024096
No display on boot in Ubuntu Server 13.04
Eric Light Hardware, Linux, Operating Systems, Server, Software 13.04, c224, display, grub, intel, nomodeset, server, supermicro, Ubuntu, x10slm-f 0 Comments
When performing a recent server setup, I encountered an annoying display problem. The install completed without any problems, but there was no video on boot at all – sometimes the Grub menu appeared (but usually not), and after that the monitor went to sleep. SSH access was working fine, proving that it was only a display issue and not a boot fail.
The setup involved installing Ubuntu Server 13.04 (Raring Ringtail) onto the server, which contained a new Supermicro X10SLM-F motherboard with an Intel C224 chipset.
After doing some research I found that the solution was to enable nomodeset in Grub. Because I had set up OpenSSH during Ubuntu install, I was able to connect to the server and do the following:
$ sudo nano /etc/default/grub
Find the line
GRUB_CMDLINE_LINUX_DEFAULT=""
Change it to
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
And then enter the following commands into the terminal
$ sudo update-grub $ sudo reboot
When the server rebooted, everything loaded as normal.
Getting the Brother HL-2040 to print under Ubuntu 11.04 “Natty Narwhal”
Eric Light Hardware, Hints and Tips, Linux brother, driver, hl-1030, hl-2040, print, Ubuntu 4 Comments
Our Brother HL-2040 printer is a great little workhorse, and has always worked pleasingly well under both Windows and Linux (and as a shared printer). However when I upgraded from Ubuntu 10.10 to 11.04, it went a little bit haywire. No matter what I did, the printer’s response was to print infinite blank pages. Fortunately, the fix is easy! More →
Why you should do a regular system audit
Roger Smith Business, Efficiency, Hardware, Hints and Tips, Software Audit, Checklist, Network, PC, Points of Failure, Software, Speed, Workstation 0 Comments
Having your system audited is a crucial task that is often overlooked by small businesses. An annual system audit will give you an overview of the state of your system, from the ground up: network, power supply, backups, server, workstations, etc. It should also include recommendations from a professional; for example, if your server is three years old, you might get a recommendation to start allocating some income to replace the server in a couple of years. More →
Making OpenBravoPOS work correctly with a STAR TSP143 Ethernet receipt printer
Eric Light Business, Hardware, Software open source, POS, Printer, Printer Mapping, Sharing 5 Comments
We installed an OpenBravo Point of Sale system for one of our clients last year. Things have been working fairly well for them, except they had a problem with one of their printers going offline every so often. Everything would be going along fine, then suddenly the printer would stop printing orders. The problem is, the kitchen printer isn’t visible from the bar, so nobody would notice for possibly five or ten minutes. The printer would come back online by itself after a while, or the wait staff would be forced to reboot the POS system. Not good. Here’s how we fixed it. More →