Articles in the Linux Administration Category
Linux Administration »
Very simply.
sudo dmidecode –type 17
This gives the following output:
# dmidecode 2.9
SMBIOS 2.4 present.
Handle 0×1100, DMI type 17, 27 bytes
Memory Device
…
Linux Administration »
Australian Magento Developers, Fontis have published a great Howto to help you setup an Australian store quire and to ensure you are compliant with ATO’s requirements
You can read Fontis’ Australian Magento post here.
Linux Administration »
One of those pain points in Magento is bulk uploading Categories. I know there’s this solution and also this bulk category solution, which are both basically the same thing. I actually feel more comfortable using Python and it also means that I don’t have to install Zend on my local machine to access the remote API.
One struggle I did get stuck on is the “Access Denied” message when connecting. A lot of people are having issues with it. My issue was that I had used the same username for my …
Linux Administration »
There’s some instructions on ZTE forums on how to get this modem working and it *does work* but it’s convoluted.
I just created a file called /etc/modprobe.d/zte-mf633.conf
and added the following to it:
options usbserial vendor=0x19d2 product=0×0031
and then reboot with the modem in to test it works on a fresh boot. If you insert the modem *after* you have booted, you may have to unmount/eject the cdrom that it is detect as prior to it being detect in connection manager. The above may also interrupt with other usb devices, though my storage …
Cross-Platform, Linux Administration, Virtualization (Virtualisation), Windows Administration »
No it’s not open source but it is available for both Linux and Windows.
IncentivesPro make a product I recently used for a Virtual Desktop Thin Client Implementation. That is USB Redirection for Remote Desktop. It uses a proprietary client/server and so I used Windows XP embedded thin clients to redirect specialised USB Thermal Laser Printers to the Vista Virtual Machines. The website looks a bit underwhelming but the product is flawless and it’s priced much better than their competitors. If you have more time than I did, it’s likely you …
Apache, Linux Administration, Web Development »
mod_rewrite is a powerful Apache module that gives you the power over the URL’s displayed to your visitors to your site.
Much has been written already by many people using both examples and tutorials of the basics. The aim of my addition, as always is primarily for my own notes and secondarily to explain why you want to use mod_rewrite for SEO ranking retention.
Let’s say you have a website that enjoys well ranked pages and a lot of traffic via google or has a great deal of Backlinks from other …
Accounting, Cross-Platform, Ecommerce, Headline, Linux Administration, Open Source »
Haven’t had much time to go into detail with these but I think it’s worthy to take note of them
Skype for Asterisk has been released at last.
A new Skype for Linux Beta 2.1.047 has been released which fixes CPU problems with new PulseAudio and works brilliantly and also adds SMS support.
Also, I came across a very Rapid Application framework for building Ajax web apps called Wavemaker. They have an open source version and an Enterprise Version. Watch one of the videos where he builds a searchable client database in …
Hardware & Gadgetry, Linux Administration, Open Source »
netboot.me is a service that allows you to boot nearly any operating system or utility on any computer with a wired internet connection – without having to know ahead of time what you’ll want to boot.
netboot.me works through the magic of netbooting over http. There are a number of ways to boot a computer with netboot.me. The simplest is to download a bootable image, which is 626Kb and burn it to a CD or put it on a USB memory stick, or floppy disk. Boot off it on any networked …
Bash, Linux Administration, Open Source »
I have previously written about Tilda, a gnome replacement for Yakuake. I had some issues with Tilda so I came to have a nice relationship with Yakauke. It’s important to note though, that there is another reasonable alternative to both Tilda and Yakuake and it’s called Guake.
Guake has some of the basic features of Yakuake but is still lacking in a few things. The main ones for me are:
Yakauke allows you to choose terminal width / Guake takes up fullscreen width. The advantage of this for me is that I …
Cross-Platform, Internet Goodness, Linux Administration, Open Source »
Chromium is the open source version of Google Chrome for Linux. It’s still in alpha stage but it’s been very stable for me. The biggest downside is lack of Flash support for things like Google Analytics and Youtube.
For Ubuntu, install Chromium like so:
echo “deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu jaunty main #chromium-browser” > /etc/apt/sources.list.d/chromium.list
sudo apt-key adv –recv-keys –keyserver keyserver.ubuntu.com 0xfbef0d696de1c72ba5a835fe5a9bf3bb4e5e17b5
sudo apt-get update && sudo apt-get install chromium-browser
to get Flash working:
cd /usr/lib/chromium-browser/plugins
sudo ln -s ../../flashplugin-installer/libflashplayer.so
Screenshot running on 64bit Ubuntu Jaunty Jackalope. Watching this was consuming approx 25% cpu in a single chromium process instance:
I am …