PCBSD 9.0

I suppose many of us look for different attributes when we select an operating system. Some seek simplicity, while others look for performance or even specific licensing terms. Part of the problem that we face is that once we start asking the OS question, we don’t often get a clear answer. Windows is undoubtedly the 800 pound gorilla that offers the most apps and compatibility. Mac offers an elegance and an ecosystem that extends to it’s mobile device market. Linux looks to provide open source solutions, customization and enhanced performance. Then we have PCBSD, which may not be as obvious to a desktop user as Linux, but comes from a family with a long history of stability and power. But the question remains, which one to choose and why?
I have a confession at this point, I’ve always been a fan of FreeBSD. From the first time I installed it and started playing around in the system, I was hooked. But over the years as my role at work changed, hardware progressed, and Linux became more popular I found myself using any number of Linux flavors as a desktop or server. It was all good until I recently decided to upgrade my personal computer to newer hardware. After the upgrade I loaded one Linux distro after another and discovered that all of the sudden, the Linux installs were a hassle and I was having minor issues getting everything to work as expected. Since I was mainly dorking around trying to find the best fitting OS, I decided to try PCBSD 9.0. I booted up the full DVD and the installer popped up without an issue (or nomodeset boot option).  I was amazed at the simplicity of the install, it saw my Nvidia card, allowed me to select extra options including picking my desktop manager, took some user info, and went on to install. When it came time to reboot into the system, I was up and running, period.
To better understand why that’s so impressive, let me give an example of another Linux install on the same box. Clean off the target disk (for some reason, this version of Linux resists wiping the disk on install) boot to installer (with nomodeset option) provide install details, and fix the “install boot loader to MBR” option before allowing it to continue. Once installed, boot to the OS (using the nomodeset option) patch, install proprietary drivers (a choice), reboot and I’m done.
As you can see, for me at least the PCBSD install process is much easier. Other things I’ve noticed since the install:

  • wine seems to runs better on PCBSD (could just be my system)

 

  • I like installing applications, etc. through the AppCafe, it gives you a nice option on currently installed items to auto-update. I still like ports too, but it’s nice to have an easier option.

 

  • Finally, it just runs fast and smooth with my hardware.

So in a nutshell, PCBSD provides a clean an easy install, performs well on my hardware, and maintains all the beauty of FreeBSD. For me, this is the sweet spot for a desktop operating system. I realize this review isn’t very detailed, but I hope it encourages you to give PCBSD 9.0 a try. As for me, I feel like I’ve come home and I don’t plan on going anywhere soon!

 

Comments (1)

Empire Deluxe Enhanced Edition

Empire Deluxe Enhanced Edition by Killerbee Software is a must for Linux users that treasure classic turn based military conquest. It runs beautifully under wine and is a great way to burn time trying to conquer the world. The graphics are simple, but the game play is great! For more info, go visit the Killerbee website.

Leave a Comment

OpenSUSE 12.1

SUSE was one of the first full Linux distributions that I tried many years ago. So I was excited to see the OpenSuse 12.1 update come out on 11/16/2011. After burning a live 64 bit CD (I’m too impatient for the full DVD download) I installed it on my desktop system. The install was quick and straightforward, no issues or strange messages. This is something that I’ve come to expect from OpenSUSE though, it very seldom chokes on the install for me. After installation, I ran an update from Yast2 and it completed without any issues (this is something that I HAVE had issues with in the past) and I proceeded to customize the system.

 

NVIDIA proprietary drivers

These installed ok, no tragedy here. I installed the 285.05.09 driver from the NVIDIA site without any problems. I’m not going to list how I did it here, I don’t want tons of abusive emails about how my instructions crashed systems or that they were inaccurate, or that I’m a moron for not using the open source driver.

 

Wine

Wine 1.3.30 installed without any issues and with some help from winetricks, I’m currently running Wow, Audible, and some other Windows apps, no issues here.

 

Everything seems to run well in 12.1 and KDE doesn’t bark or complain. But I did notice that I/O activities seem a little strange at times. When I copy a large number of files, nothing happens for a second and then everything starts copying very fast. Maybe this has to do with the fact that I chose Btrfs as the default filesystem type? Also, when I use Software management in Yast2, it auto closes instead of going back to the menu after installing packages. This is just a bit of whining on my part, but I’m not always smart enough to be truly done after installing a set of packages (has this always been this way and I’ve forgotten it?). Another reason to use the terminal, I guess. Things like web browsing, email, and Youtube, all perform very well in OpenSUSE 12.1 and I’ve not had any issues related to the KDE Desktop.

 

All in all, OpenSUSE 12.1 is solid, fast, and well organized. It’s definitely worth a Linux user’s consideration for their standard desktop. More details on OpenSUSE 12.1 can be found here.

Leave a Comment

EverQuest II on Linux

I recently decided to try and get EverQuest II to work in linux. To be honest I’m tired of dual booting just to play a few games that I enjoy. After searching the Internet and playing around for a bit I pieced together the following solution. If anyone has additional recommendations, suggestions, or corrections, please let me know.

OS: Xubuntu 11.10

  • Installed wine 1.2.3
  • Installed winetricks and added the following: d3dx9, ie7, vcrun2005, vcrun2008
  • Opened a terminal and type the following to set up directories and test if wine was working “wine notepad.exe”
  • Copied my “Sony Online Entertainment” folder into the “Program Files” directory.
  • Went back to the terminal and did the following:
  • sudo chown -R erw:erw /home/erw/.wine/drive_c/Pro*/Son*
  • sudo chmod -R 755 /home/erw/.wine/drive_c/Pro*/Son*

Created a launch script:
#!/bin/sh

# EverQuest II launch script

##

cd $HOME/.wine/drive_c/Program*/Sony*/Station*

export WINEDEBUG=fixme-all

wine StationLauncher.exe

­­­# End of script

I’m sure more experienced users have better ways of doing this, but Everquest II is now working for me and no more dual booting.

Leave a Comment