Geek News Central is the technical site for Geeks. We Spin tech for the common man. With a Family of Tech Shows and Content.



Moving from Windows Media Center to Linux Media Center

Posted by Alan Buckingham at 4:34 PM on November 13, 2011

When I first decided to put a computer in my home theater cabinet I wasn’t sure how much we would really use it.  After all, I wasn’t ready to give up DirecTV so I wasn’t concerned with the DVR functionality because there is no DirecTV tuner available.  What I wanted was to have all of our photographs viewable on the TV, our music (almost 100 GB) to be playable through our receiver and speakers, and our DVD’s to be ripped and placed in an easier-to-access location than a drawer.

Consequently, I bought a cheap used desktop (as in non-tower case) computer off of Ebay.  My first goal was price and my second was something that would sit on a shelf in the cabinet with the HD DVR, receiver, and the like.  Because I wasn’t sure how much we would use it, I went cheap – a Pentium 4 processor system.  I did some back-end upgrades when I received it – I added RAM and upgraded the video and sound cards to give it SPDIF audio out and DVI video out.  This got the video and audio into the A/V receiver via a SPDIF cable and a DVI to HDMI cable.  The system has been solid for two years running Windows 7 Ultimate, with Media Center set to open on Startup.  I have customized the software also – Media Center Studio is great for tweaking the WMC interface, and MyMovies is a much better DVD library than WMC’s built-in library.

The computer is now outdated – okay, maybe it was when I bought it – and we use it EVERY day.  I am faced with two options – buy a new computer or scale back the load on the existing one.  In the long run, I will be buying a new PC.  In the short term, however, I am considering scaling back the software – not the functionality, just the processor and memory intensive parts of it.  In fact, I will be adding functionality while my computer does less work to run it.

I stumbled on Linux Media Center a couple of years ago and was intrigued by it, but never took the plunge.  Since then I have checked back with their website periodically and watched it evolve.  I have marveled at the functionality it brings that isn’t present in Windows Media Center.  There’s control of the home security system, home automation, telephones, and more.  Sure, some of that can be added to Windows Media Center, but it’s added – not built-in.  And, in some cases, it will cost you.  Linux Media Center also comes with mobile apps for smartphone and tablet use, while WMC doesn’t.  There are unofficial WMC apps, like the MyRemote for Android, which I use, it’s not quite the same as a full-featured, fully-integrated app.

So, I am now contemplating taking that plunge that I have so long considered.  Over the next few days I will install Linux Media Center and will begin exploring and writing about what I encounter and what I like and don’t like.  In the meantime, I have posted a couple of random screenshots below and if you want more information, you can visit LinuxMCE.com.

Ubuntu Linux Heads for Smartphones and Tablets

Posted by Andrew at 5:01 PM on October 30, 2011

ZDNet is reporting that Canonical is intending to make the next release of Ubuntu, 12.04, a LTS (Long Term Support) release with intention of then expanding Ubuntu beyond desktops and laptops into smartphones, tablets and smart TVs, with a target of 2014 for an all-platform release.

Mark Shuttleworth, founder of Canonical, in an interview said, “This is a natural expansion of our idea as Ubuntu as Linux for human beings. As people have moved from desktop to new form factors for computing, it’s important for us to reach out to out community on these platforms. So, we’ll embrace the challenge of how to use Ubuntu on smartphones, tablets and smart-screens.” The full announcement is expected at the Ubuntu Developer Summit, which starts tomorrow and runs for a week in Orlando, Florida.

Having already been in discussions with partners for around 18 months, it seems that this is more than wishful thinking, but one can’t help feel that the whole Palm-HP-WebOS debacle bodes badly for any company wanting to get in on the smartphone and tablet space. If HP can’t make it happen with a solid OS and Zen of Palm, what hope has Canonical? When quizzed about this, Shuttleworth said that he saw “Android as its primary competitor…..We’ve also already heard from people who are already shipping tablets that they want Ubuntu on the tablet.” And of course, “Ubuntu already has a developer and customer base.”

While there’s no doubt that the mobile space is still maturing and there’s plenty of change still to come,  I have a hard time seeing Ubuntu on anything but a small niche of tablets and an even smaller niche of smartphones. iOS and Android have their foothold and Microsoft will be a solid third if Windows Phone 7 continues to deliver and Windows 8 delivers as expected. A fourth player is going to have difficulty making inroads, especially one as relatively unknown as Canonical and Ubuntu.

Smart TVs are a more plausible destination as the internal software is of less concern to the consumer. Most people buying a TV are looking at the exterior brand such as Sony, Samsung or LG, and not what’s inside, although this may change if a “Powered by Roku” or “Google TV inside” campaign runs. Plenty of change to come in this space too.

I wish Ubuntu every success.

Check File Copies with Linux Scripts

Posted by Andrew at 6:22 AM on October 17, 2011

OpenSuSE logoFor several years, I’ve had an original Buffalo LinkStation NAS as my main fileserver. Being on 24×7, it’s gone through several fans and at least one hard disk, but it’s now time to retire it in favour of a LinkStation Duo which will give me more space, RAID capabilities and faster transfer speeds.

Naturally, as my main fileserver, it’s backed up. However when I copy the files to the new Duo, how do I know that they’ve all copied correctly and none have been missed? There are hundreds of thousands of files and checking each one by hand would be pointless.

Linux has lots of tools that tell me how much disk space is used, such as du, df and filelight, but they don’t always report back consistently between filesystems. Mostly for reasons of speed, they report the total size of the file blocks used to store a file and as block sizes can vary between filesystems, the total number of blocks used for a set of files will be different. For example, I have two folder sets that I know are identical and du -s on one reports 210245632 and on the other 209778684.

Fortunately, there’s an extra command line flag that will change the behaviour to take longer and sum the actual bytes. In this case, du -sb will return 214813009920 bytes on both filesystems. On the whole, I can be reasonably confident that if the total number of bytes used is the same between two filesystems, then all the files have copied correctly.

But what if the total number of bytes don’t match? How can I find the missing or truncated file? After thinking and tinkering, what I want is to get a list of files with each filesize from the old and new filesystems and then compare the two. And here’s how you do it (each section here goes on one line).

find /home/old_folder -type f -printf '%s %p\n' |
sed 's/\/home\/old_folder\///' | sort > old.txt
find /home/new_folder -type f -printf '%s %p\n' |
sed 's/\/home\/new_folder\///' | sort > new.txt
diff -wy --suppress-common-lines old.txt new.txt

If you aren’t used to Linux, this can look a bit scary, but it’s not really. The first two lines create the text files with all the files and the third line compares the two. The the first two lines are much the same in that they do the same commands but on different filesystems. There are three sections, find to list all the files, sed to chop the directory path off, and sort to get all the files in some sort of order. Here are some explanations.

find – finds files
/some/folder – where to start finding files
-type f – only interested in files (not directories or links)
-printf ‘%s %p\n’ – only print the filesize (%s) and the full pathname (%p) on each line (\n)

sed – processes text
‘s/x/y/’ – means replace x with y. In our instance, it’s replacing the leading folder path with nothing. It looks worse than it is because the slashes in the path need to be escaped by a preceeding backslash, so you get these \/s everywhere.

sort – sorts text
> file.txt – copy everything into a text file.

One of the clever things about Unix-like operating systems is that you can pass information from one command to another using a pipe. That’s represented by the | symbol, so the find command gets the information on files and files sizes, passes it to sed to tidy up which then in turn passes it on to sort before sending it to a file.

After running this set of commands on the old and new filesystems, all that needs done is to compare the files. Let’s look at the third and final command.

diff – compares files line-by-line
-w – ignore whitespace (spaces and tabs)
-y - compare files side-by-side
–suppress-common-lines – ignore lines that are the same
old.txt new.txt – the two files to compare

So what might the output of the diff be? If all the files copied correctly, you’d get absolutely nothing. Other possibilities are that the file partially copied or didn’t copy at all. Here’s what the output might be like.

598 i386/compdata/epson3.txt | 500 i386/compdata/epson3.txt
598 i386/compdata/onstream.txt <

The numbers at the beginning of the entry are the number of bytes, so the first line shows that the epson3.txt is only 500 bytes long in the new file but 598 in the old. The second line shows that onstream.txt is present in the old file but not in the new, as the arrow points to the old file.

To close the story, did I find that I had lost any files? Yes, I did. I discovered a couple of small files that hadn’t copied at all because of non-standard characters in their filenames. The filenames were acceptable to Windows but not Linux and I’d used my Linux PC to do the copying. Fortunately, the files were saved and all the scripting was worth it.

Read more on Linux at Geek News Central.

Network Switches and Data Transfer Speeds

Posted by Andrew at 5:17 PM on March 27, 2011

I recently upgraded my home network from 100 Mb/s to 1 Gb/s by replacing the switches. The main house switch is an unmanaged 1U rack-mounted switch, with a second desktop switch. Out of pure interest, I took the opportunity to do a little bit of speed testing to see how much of a difference upgrading the switches made in terms of actual data transfer speeds.

A few basics to avoid confusion  – b/s is bits per second and B/s is bytes per second. All of the reported figures will be in MB, so converting b/s to B/s:
Fast Ethernet = 100 Mb/s = 12.5 MB/s
Gigabit Ethernet = 1 Gb/s = 125 MB/s

100 Mb/s and 1 Gb/s refer to the speed of the underlying technology but data transfers at these rates are never achieved because of protocol overheads and such. As a baseline, if I write a large file (8 GB) to my PC’s local disk, I get a data transfer of between 50-55 MB/s.

On my network, I have two Buffalo Linkstation NAS devices, one with a Fast Ethernet interface and one with a Gigabit Ethernet interface. 2 GB’s worth of data would be written to each of these devices with different Ethernet switches in place to see what actual data transfer speeds would be achieved. The following Linux command was used five times in each situation and the result averaged.

time dd if=/dev/zero of=testfile bs=16k count=16384
Switch Model Data Rate to Fast NAS Data Rate to Gigabit NAS
1U Rack
Dynamode SW240010-R(Fast) 6.2 MB/s 8.6 MB/s
TP-Link TL-SG1016 (Gigabit) 6.4 Mb/s 21.4 MB/s
Desktop
D-Link DES-1008D (Fast) 6.2 MB/s 8.6 MB/s
Netgear GS605 (Gigabit) 6.5 MB/s 21.1 MB/s

I also carried out two further tests:

  1. With Gigabit Ethernet only, I wrote to both NAS devices at the same time. The data transfer speeds were unaffected.
  2. I connected the two Gigabit Ethernet switches in series and wrote to the NAS. Transfer speeds were reduced by 1 MB/s on the Gigabit NAS to 20 MB/s. The change on the Fast Ethernet NAS was minimal.

There are several things that can be deduced from the information shown in the table above and the other tests.

  1. Actual data transfer rates are considerably less than the theoretical maximums.
  2. There’s no performance difference between rack-mounted and desktop switches.
  3. The write speed of the NAS can be a limiting factor.
  4. Gigabit Ethernet switches give large improvements with Gigabit Ethernet devices.
  5. Gigabit Ethernet switches give small improvements even with Fast Ethernet devices.
  6. Keep the number of switches in the network path to a minimum.

 

The Best Ever SuSE Linux – v11.4

Posted by Andrew at 5:27 PM on March 21, 2011

OpenSuSE 11.4 was released back on 11 March so this weekend I took the plunge and upgraded my main PC from 11.3 to 11.4. And less than two hours later, I had the best ever SuSE running on my PC.  Here’s how I got on…

SuSE offer two methods of upgrading, the first being an on-line update and the second being the more traditional iso image download, burn and boot. I chose the latter as the guidance on SuSE’s website suggested that this would be more reliable. It also means that if the upgrade does fail and I needed to carry out a complete install from scratch, I already had the media to hand. Before booting from the DVD to upgrade, I backed up all the user files from the home partition and made copies of the important files – fstab, hosts, passwd, groups, auto.nas and so on.

Booting from the DVD, the installer goes through the usual licensing screen before analysing the existing system. As I had 11.3 previously installed, the installer gave me the option to upgrade, which I choose. After more analysis, it gives a summary of the changes required before asking permission to proceed – which I gave.

About 35 minutes and 250-odd packages later, the PC rebooted, loaded Linux and displayed the login screen. I entered my username and password, and the screen faded to the X desktop, with all my icons and widgets still there. Sweet!

Even more surprisingly, all the 3D window effects worked out of the box. That’s never happened before – normally you have to download drivers from nVidia or ATi before all the graphic goodness works smoothly. To be fair 11.3 was a “nearly” release. While the applications and tools worked, the 3D effects were a bit hit or miss. Sometimes they worked, sometimes they didn’t. But 11.4 hits it on the head.

The 3D eye candy is very slick. I run a 3 x 2 virtual desktop and the scrolling between the desktops is super-smooth, making it feel like one giant desktop. Windows glide in and out as they open and close. But by far my favourite effect is when you have overlapping windows and you want to bring one to the foreground. The upper window slides down the screen and then slips behind the lower window, bringing it to the front. Think of taking off the top sheet from a pile of paper and putting it to the back. So cool.

I’ve taken a couple of screenshots but (a) it’s really hard to catch the window closing when pressing the PrtScn button and (b) there’s no sense of the animation.

To finish off the installation, I added the ubiquitous Packman repository to load up all the unofficial multimedia goodies, such as DVD playing and video encoders.

Although it’s only been a few days, I’ve not encountered any problems at all with 11.4 and I’ve discovered that several of 11.3′s bugs have been fixed. Most of the major packages have been updated and OpenOffice.org has been replaced by LibreOffice (which is a whole sorry story in itself). Everything seems to be working fine.

If you want to try SuSE without messing with your current setup, there are live DVDs available for download. I run the KDE desktop rather than Gnome.

While it may be a little premature, I think this is the best SuSE ever.

OpenSuSE Linux 11.4 Released

Posted by Andrew at 7:35 AM on March 10, 2011

The latest version of OpenSuSE Linux, 11.4, has just been released and it’s chock full of new features. The replacement for OpenOffice.org, LibreOffice, gets its first major outing, KDE gets bumped to 4.6 and Gnome comes in at 2.32.

There’s a also a pile of updates to applications, including Empathy, RhythmBox, Amarok, Totem, Evince and Shotwell. For developers, GTK 3 is included so Gnome applications can be upgraded to the new framework.

I’m running 11.3 so I’ll be downloading from the mirrors tonight and upgrading over the weekend. I’m looking forward to the new eye candy provided by the KDE Plasma Desktop Workspaces. Ok, so I’m shallow.

If you want to try OpenSuSE, there’s a live version as well, in both KDE and Gnome flavours. Give it a whirl.

Goodbye Ubuntu, Welcome Back SuSE

Posted by Andrew at 7:09 AM on February 18, 2011

Some of you may recall that early last summer, I left my long-term Linux partner OpenSuSE for Canonical’s Ubuntu – the post is here. I thought it was going to be forever but I’m afraid it hasn’t worked out and SuSE has taken me back.

The original problem was that I couldn’t get SuSE 11.2 to install on new hardware and while Ubuntu 10.04 happily installed onto the new motherboard and harddrives, it’s been the legacy hardware that has been the root of the problem. Specifically, applications that wanted to access my SCSI scanner had to run as root, I completely failed to pull DV video from a video camera over Firewire and I couldn’t configure, never mind watch, my TV card. Scouring the newsgroups, I wasn’t alone. Perhaps naively, I thought that these problems would be fixed with Ubuntu 10.10 but alas, they persisted.

During the Christmas holidays I’d finally had enough – I can’t remember what finally caused me to snap but I downloaded OpenSuSE 11.3, burnt the DVD and rebooted. This time I didn’t encounter any of the previous problems from 11.2 and the installation went smoothly. It was like coming home – everything worked. Scanner – check, DV – check, TV – check.  And although returning to KDE desktop from Gnome, I have decided to keep some of the Gnome-based apps in preference to the KDE equivalents. gPodder is now my default podcatcher and Amarok has been replaced by RhythmBox.

It’s interesting times for OpenSuSE. In November, parent company Novell was sold to Attachmate but allegedly it’s business as usual. Version 11.4 will be out in a few weeks too.

There’s no doubt that some parts of Ubuntu were very seductive, such as package management, but I’m sorry Ubuntu…you’ve been dumped.

Amarok & KDE Crash Reporting – FAIL

Posted by Andrew at 7:44 AM on December 30, 2010

Sigh. I love Linux but there are times when you realise it’s never going to take over the world…

I was working with Amarok, but the program crashed completely every time it hit a certain file in my audio library. This wasn’t a big deal but being a helpful soul, when I was presented with the option to send crash information back to the coders, I clicked on “Ok.”  And this is where it all went wrong.

First of all, after showing the stack trace (whatever that is), the crash handling dialog tells me that it’s not much use without the debug symbols, but the package to do that isn’t installed.  Did I want to install the necessary package?  So I said, “Yes,” still being a helpful soul.

Next, an error pops up saying that it can’t find the package and could I add a repository via the package manager?  Of course, the error message doesn’t tell me either the package that’s needed or the name of the repository needed. Being an ever-helpful soul, I figured out by myself that I need to enable the debug repository in the package manager, after which the crash handler was able to load the package and add the debug symbols. Hurrah!

So I hit  “Next” and I get presented with a username and password dialog for the KDE bug database. Apparently I can only log crashes if I’ve registered with the bug database. At this point I gave up being a helpful soul and closed the dialog.

So, for Amarok and KDE developers, here’s a clue. If you want feedback from your users on what’s going wrong with your applications, don’t make it so hard to give the information. Having agreed to give the feedback, that should be it, job done. I should not have to install a package, configure a repository and get a username for some website I’m never going to visit.

Even Dr Watson wasn’t this stupid.

WobZIP, An Online Unzipper

Posted by Andrew at 1:00 AM on October 12, 2010

Have you ever downloaded some data off the ‘net only to find it’s in a compressed or archive file format that your PC doesn’t have a helper app for? Or you’re fixing up a friend’s PC, you download some drivers and ditto, you can’t get them unpacked?

If so, you’ll be interested in WobZIP. It’s a web site where you can upload an archive file and it will uncompress it for you.  Once uncompressed, you can either download the files one by one, or else the site will bundle the files back up into a zip archive for you to download.

The site is still in beta but claims to support the following archive formats – 7z, zip, gzip, bzip2, tar, rar, cab, iso, arj, lzh, chm, z, cpio, rpm, deb and nsis.  Obviously quite a few of those formats are Unix and Linux, but there’s a fair collection of DOS / Windows ones too.  As it’s a website, it doesn’t care what OS you’re running either. From the FAQ, WobZIP uses the open source 7-zip program as the decompression engine.

Cleverly, there’s also a feature to unpack or uncompress from a URL so you don’t always have to download to your PC and then upload back to WobZIP – you can just enter the URL and it will go and get the file for you.  Also, it will scan the unpacked files for viruses.

Put this site in your bookmarks.  You may not need it right now, but you will one day.

Ubuntu 10.10 Released 10/10/10

Posted by Andrew at 1:00 AM on October 9, 2010

The latest version of the Ubuntu Linux distribution, 10.10 will be released tomorrow (if all goes to plan). Otherwise known as the Maverick Meerkat, this release focuses on improving the desktop experience and stability rather than radically updating it.

As usual, the kernel has been updated along with the Gnome desktop and there has been one change to the default apps (Shotwell for F-Spot in photo management) but apart from that, it’s pretty much upgrades and improvements.  Allegedly boot times have been improved as well, but 10.04 already booted pretty quickly.

If you haven’t figured out from the post title, Ubuntu releases aren’t numbered by simply incrementing versions.  The numbers are the year and month that software was released in thus October 2010 is 10.10.  The last release, Lucid Lynx, came out in April of this year so is 10.04.

As a further joke, this release is coming out on 10/10/10 which in binary is 42, homage to Douglas Adams’ answer to the meaning of life, the universe and everything.

I’ll report back on how my upgrade goes.