Desktop


I recently had someone ask me about converting from Outlook Express (I nearly fainted, it’s been so long since someone admitted to using OE in front of me) to something more open source (great way to keep from getting a bunch of spam and viruses), and in my research I found a great couple of articles about converting to Open Source mail packages.

The first deals directly with converting from Outlook Express to either Thunderbird or Evolution (which worked great, they told me) and the next is for those converting from that beast from the land of insufficient light, Microsoft Outlook, Converting All Your MS Outlook PST Files To Maildir Format.

Personally, it’s been over 10 years since I was based on Windows email programs, and that only for work. Here’s to all of us who “survived” all those many years on pine and mutt.

Enjoy,

RossB

You can add another to the list of computer manufacturers who are pre-loading SUSE Linux… Shuttle. (Thanks to TrustedReview’s article for the heads-up). Actually, these new small form factor PCs are now available in the UK and Austria; and can be configured with your choice of SUSE Linux Enterprise Desktop or openSUSE.

Shuttle LinuXPCs with SUSE Linux Operating System is available immediately in the UK. Delivery to Austria also possible

Shuttle Inc., the market leader in the Mini-PC sector and manufacturer of Multi-Form-Factor solutions, is now also selling its Mini-PCs with the Linux Operating System in the UK. The two compact PCs made of aluminium can be individually configured in the official Shuttle Systems Configurator. They are delivered pre-installed and ready to connect and include the 24 months Pick-up-and-Return Service for reliable help in the case of a warranty claim.

Watts Water Technologies needed to replace 1000 old shop-floor terminals with more flexible desktops. They ended up choosing SUSE Linux Enterprise Desktop on Neoware thin client hardwares along with ZENworks to help manage the environment. You can also check out the Open PR blog entry for some info.  From the customer success story…

After evaluating several desktop and thin-client solutions, Watts Water Technologies selected SUSE Linux Enterprise Desktop for use in a thin-client deployment, as well as Novell ZENworks to manage more than 1,000 desktops.

“Linux really shines and Novell has a great Linux strategy,” said Ty Muscat, Data Center Manager for Watts Water Technologies. “We have almost every platform imaginable and are moving more and more to SUSE Linux Enterprise desktops and servers. We like having an open platform with a lot of flexibility.”

The results:

“Without Novell, we would have had to invest far more to get anything similar to what we have with SUSE Linux Enterprise Desktop,” said Muscat. “The ongoing management and maintenance costs of other options would have been overwhelming for us.”

From the article:

Exchanging business cards is a rudimentary form of networking (the people, not the server kind). However, to get the most out of the exchange, you need a card that attracts attention and reflects the image or values you want to project.

More here.

We mentioned this in an earlier blog entry, but here’s the official press release:

BEIJING— 06 Nov 2007—  Novell and Dell™ today announced an expansion of Linux offerings with the addition of SUSE Linux Enterprise Desktop 10 installed on Dell OptiPlex™ 330 and 755 commercial desktop PCs in China. The systems will be available later this year.

This development is part of Dell’s efforts to give customers more choices and to help meet increasing demand for Linux that provides security, dependability and lower TCO. The OptiPlex desktop PCs with SUSE Linux Enterprise Desktop 10 come with 60 days of telephone software technical support from Novell and a year of hardware support from Dell.

More choice for customers.  It’s a good thing for the industry, and hopefully Dell will become more and more comfortable with a Linux pre-load offering of SLED as a result.  Translation… I’m eager to have them offer something similar in the US too.

First off, I have to admit that I lifted the xorg configuration information that I’m about to discuss from some website, but I don’t recall which one. If it was yours please tell me and I’ll link it. In this article I will discuss how to get the scroll button working in SUSE Linux Enterprise Desktop/Server.

Lenovo/IBM ThinkPads have 3 mouse buttons. You can configure the middle button so that when you hold it down and move the trackpoint (aka: the nub) the screen scrolls up and down.

The place where this is configured is in the /etc/X11/xorg.conf file. This file is used to configure your X server in Linux. It ties together your pointing device, keyboard, monitor and graphics card.

Open up this file with your favorite text editor and find the section in the file that describes you trackpoint. Configure it so it looks something like this:

Section "InputDevice"
Driver "mouse"
Identifier "Mouse[1]"
Option "Buttons" "5"
Option "Device" "/dev/input/mice"
Option "Name" "TPPS/2 IBM TrackPoint"
Option "Protocol" "explorerps/2"
#add the following lines
Option "Emulate3Buttons" "on"
Option "Emulate3TimeOut" "50"
Option "EmulateWheel" "on"
Option "EmulateWheelTimeOut" "200"
Option "EmulateWheelButton" "2"
#end
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection

You can now restart X and utilize the new scrolling feature. I’ve also found it helpful to disable the middle button features in Firefox so that when scrolling through a page you don’t accidentally click the middle button. To do this enter about:config into your URL bar. Filter for “middle”. I have disabled:

  • browser.tabs.opentabfor.middleclick
  • middlemouse.contentLoadURL
  • middlemouse.openNewWindow

Having the scroll button enabled will significantly enhance your Linux life and make your a Linux supervillain. Enjoy!

Go Boston College EAGLES!!!

UPDATE:

I have recently discovered that you can also use sax2 to setup the scrolling capability.  Fire up /usr/sbin/sax2.  Click on the mouse section.

Make sure the following are checked:

  • Activate 3 button emulation
  • Activate mouse wheel
  • Emulate wheel with mouse button 2

Click “OK” and save it.

While Intel and Atheros are doing a great job writing wireless drivers for linux, there are still other wireless cards, specifically Broadcom, who do not have linux drivers or who do not have good linux drivers.

The purpose of this article is to explain how to configure ndiswrapper in SUSE Linux Enterprise Desktop 10 SP1. On my end I am using an old dell c640 (with the embedded wireless card turned off in BIOS) and a Linksys wusb54gc usb wireless device.

1: Go into Yast and install ndiswrapper and the appropriate ndiswrapper kernel module.
- hit alt+f2 enter yast2.
- open the software management module.
- search for ndiswrapper
- determine which version of the kernel you are running(bigsmp, default, smp) by opening a terminal and entering uname -r
- check off the “ndiswrapper” package as well as “ndiswrapper-kmp-<kernel version>” in yast and click accept to install.

2. Setup ndiswrapper
-Determine which chipset your wireless device is using. To do this enter:
hwinfo
or
lspci
or
lsusb
You can grep the results for wireless ex. hwinfo | grep -i wireless or just manually scroll through the output and search for something that looks like your wireless device.

In the case of my Linksys device it uses a Ralink chipset. I found the windows driver (rt73.inf) on the cd that came with the device. Find the .inf file for your card on your manufacturer’s website and download it. (Often times you will have to unzip the .exe driver installer to find the .inf).

-enter the following commands:
ndiswrapper -i /path/to/driver.inf #to install the driver
modprobe ndiswrapper #to load the module
ndiswrapper -m #To ensure that ndiswrapper will always use the same network interface name

3. Configure the wireless device in yast
- You should already have yast open from when you installed the ndiswrapper packages
- This time go into the “network card” module
- Verify that “NetworkManager” is selected and click next
- Click “Add”
- For Device Type choose “wireless”
- Configuration Name “0″
- Moduel Name “ndiswrapper”
- Click next then finish etc. to finish.

I have based this article off of the documentation that can be found in /usr/share/doc/packages/ndiswrapper/README.SUSE after installing ndiswraper

From the article:

Taiwanese PC hardware manufacturer Asus announced the availability of its $399 Eee PC Internet “gadget” at an event here today. While the device performs many of the same functions as a typical notebook, company officials said they prefer not to call the Eee PC a notebook, because they’re aiming for a different market than the traditional mobile professional or desktop replacement buyer of a portable computer.

More here.

Another review of this laptop, just makes me want one more than ever.

Also from the EEE coverage, most amusing story headline:

One Laptop Per (Inner) Child.

From the article:

OpenOffice.org Base is undoubtedly a powerful database application, but when it comes to its built-in reporting engine, words like “underpowered” and “outdated” come to mind. Fortunately, you don’t have to put up with this situation any longer: with the Sun Report Builder (SRB) extension, you can add nifty reporting features based on Pentaho reporting engine — assuming you can figure out how to use it without any help.

More here.

RossB

From the article:

Exchanging business cards is a rudimentary form of networking (the people, not the server kind). However, to get the most out of the exchange, you need a card that attracts attention and reflects the image or values you want to project.

Unfortunately, OpenOffice.org Writer’s tool for producing business cards does such a poor job of realizing both these goals that it is better avoided. However, if you know where to look, Writer also includes other tools that make designing business cards as easy as possible.

More here.

RossB

Ok, so my title is a little misleading, there’s not any rivalry between the different areas of Novell and SUSE, other than the usual desire to see your business unit succeed just a little more “betterly” than the other units do. It’s all about friendly competition.

What’s Red vs. Green?

What I’m referring to (with Red vs. Green) is the necessary dividing line between the traditional Novell business units like Workgroup (Netware, Open Enterprise Server, Groupwise etc.) which I think of as “Red”, and the newer and Open Source-centric business unit called Open Platform Solutions (SLES, SLED, SLERT, SLEPOS etc.), which I think of as “Green”. (Get it? SUSE Green, like the Gecko?)

I have come up with the analogy and strategy of Red vs. Green as a way of helping partners, customers and the casual passerby understand that depending on which Novell/SUSE products they have, they will likely benefit most from a particular set of products and growth options.

“I See Red”

My experience has been that if a customer is “Red”, they’re almost always firmly ensconced in and using the Novell services throughout the enterprise, with some confusion as to how and why they might make use of Linux. The first order of business is to determine how much they know about Linux in general, and in particular Novell’s use of SUSE Linux Enterprise in it’s product lines. After hundreds of these discussions, we can get everyone on the same page with a little discussion, some Q&A and a handy whiteboard in short order.

How Does This Work?

For example, in a conversation with faux customer Air America, I find they have a long-standing Netware infrastructure for File and Print, do a little clustering for Groupwise and use iPrint for printing with all account management taking place through an Identity management setup and eDirectory. They have Windows workstations that make full use of the Netware Client and it’s services. I’d already lean toward “Red” strategy with them, but they might be toying with the idea of going “over to Linux”, so I go a little further.

The questions I ask them are very simple and straightforward:

  • Do you have any data on NSS volumes?
  • Do you use any of the advanced features of NSS?
  • Do you have Novell Clustering Services or Business Continuity Clustering set up?
  • Do you have a very large number of printers?
  • Do your people have Novell Client software on their computers for access to the network?

A “yes” answer to any of these questions points to the Open Enterprise Server (with Version 2, OES = Linux base, Novell’s standard services converted to run great on Linux layered on top). Novell has spent a lot of time and effort to make it as effortless as possible to have this type of organization migrate up to OES, there is a very complete and clear path for this customer to begin to use Linux-based Novell services with the least disruption possible and often at a considerable cost-savings.

I will try if possible to help them see where “Green” might fit in, either for hosting Groupwise or other services, such as Mono (Dot Net compatible server), Virtualization (Xen) or any of a host of other possibilities. Usually this type of customer will stay “Red” and for good reason.

“It’s Easy Being Green”

On the other side of this equation, I will find customers who don’t have a lick of “Red” in their environment, and these are usually standard UNIX shops on the server side, usually either a Solaris or AIX flavor, some HP-UX, but they’ll be using mostly Windows on the client side. Usually if they say “No” to my “Got any Novell products or Netware around?”, they will go “Green” easily.

The discussion with this client is much easier, they’re a classic “Green” customer, all the services and tools they are used to using have an analog (equivalent) in the SUSE Linux Enterprise Server/Desktop product line. Once I determine they have no Netware products in the organization, we don’t even talk about “Red vs. Green”, it’s not relevant, they can even run eDirectory and Zenworks Linux Management on SLES, no “Red” needed.

I additionally will probe to see if they have any Terminal Server or Citrix/Ericom deployed for application security and updateability, if they do, it makes the Linux Desktop play much more likely, especially if they make use of TS/Citrix as a desktop solution. How compelling is $50 or less a seat for the presentation OS on the desktop versus $239 or so for the oddly-shaped box o’ Vista?

Got any changes or suggestions to this whole Red vs. Green thing? I’m constantly getting feedback and changing it, let me know and I’ll credit you and update it.

Enjoy,

RossB

Save a screenshotThere are plenty of instances when it would be handy to take a quick screenshot… maybe you’re working on some technical documentation, or maybe you’re trying to troubleshoot a problem, or maybe you just want to prove to your buddies you got the “high score”…  Whatever the reason, here are some quick tips on how to create a screenshot in Linux — well, SUSE Linux Enterprise Desktop with GNOME desktop at least…

(1) Entire Screen – Press the [Print Screen] button to take a snapshot of the entire screen. You can also add to your desktop panel this little icon  (Screenshot icon) for “Take a screenshot of your desktop”, or you can find it in the Applications menu under System (in GNOME), or maybe right-click the icon in your Apps menu to add it to your Favorites.  Either way, one click of the icon and it’ll take a screenshot… go figure.

Example screenshot:  Screenshot - full screen

(2) Current Window - Press [ALT] + [Print Screen] to take a snapshot of the currently chosen window.

Example screenshot:  Screenshot - window only

(3) Random Area Selection – Press the [Windows key] (aka, the “super” key) + click-and-drag yourself an area using the left mouse button.   I didn’t know this method even existed until this afternoon when I ran across it by chance.  How cool is that?!?

Example screenshot:  Screenshow - random area

Sick of hearing about “Green” yet? Better learn to deal with it, “Green”‘s drumbeat is really just beginning and it’s not just a fad, it’s something that fits a condition we have in IT, and it’s a way to get more money and headcount for managers, so listen up.

What is “Green” computing? Here’s as good a definition as I could find, click through for more from Techtarget.

Green computing is the environmentally responsible use of computers and related resources. Such practices include the implementation of energy-efficient central processing units (CPUs), servers and peripherals as well as reduced resource consumption and proper disposal of electronic waste (e-waste).

One of the earliest initiatives toward green computing in the United States was the voluntary labeling program known as Energy Star. It was conceived by the Environmental Protection Agency (EPA) in 1992 to promote energy efficiency in hardware of all kinds. The Energy Star label became a common sight, especially in notebook computers and displays. Similar programs have been adopted in Europe and Asia.

How “Green” is your office environment? Take the Greening the Cube Farm quiz and see!

Last but not least, is buying “Green” storage for business continuity, disaster recovery and archival enough? Not nearly enough, according to the marketing director of Overland Storage.

RossB

Yeah, I know this is a blog about Linux in the US, and specifically in the East — but if you check us out regularly or have us in your RSS reader, you should know that we also occasionally visit other parts of the world to see how they’re doing.

Here’s a little article from ZDnet Asia/Bangkok Post whose reporter sat down with Novell’s Executive VP of Worldwide Sales, Tom Francese, to see how things were coming along…

“We’re an information infrastructure company. We are different from RedHat in that we deliver up the stack–security, systems management, virtualization–and we are more than just open source,” Francese explained.

…and…

In Thailand, some of Novell’s reference customers are Thai Airways and Assumption University. The Ministry of Interior is also of note, as it progressed from being a heritage customer using Netware through to security and today’s OS stack.

The government sector is one where Novell is particularly strong. The Indian state of Tamil Nadu recently rolled out 2,000 servers and 40,000 desktops all based on Suse. Novell is also looking to the government sectors in China and Japan, as well as here in Thailand.

Will Virtualization Doom Server Sales?

From the article:

The promise behind virtualization has long been that one well-equipped server could do the work of several. So what happens once customers begin following that idea — and buying fewer servers?

That scenario is cause for concern, according to industry analyst Infiniti Research. This week, the firm published a study indicating that server sales will trail off in coming years, and even decline, as virtualization reduces the need for physical hardware.

The company’s TechNavio online research unit released the findings to coincide with the upcoming Storage Expo conference in London next week.

The study suggests that sales will slow to two percent in 2008 — representing a marked decline from the 5.9 percent annual growth rates that fellow market researcher IDC saw in 2006, and the 8.9 percent from a recent Gartner study.

Read the rest of the article.

Want to investigate moving to OpenOffice.org? Have a massive load of Word and other documents that are holding you back?

Take heart, there are various options that you can pursue, not the least of which is setting your OpenOffice.org defaults to read and write the appropriate format of Microsoft file types.

While in OpenOffice.org, just click on the Tools menu -> Options, click on the + sign next to Load/Save and choose the General item. On the General dialogue, the lower third is where you find the Default file format configuration selections. Here you can choose the default type of document to open (slideshow, spreadsheet, etc.) and all importantly the Always save as option, where you can choose from various formats, including:

  • Microsoft Word 2003 XML
  • Microsoft Word 6.0
  • Microsoft Word 95
  • Microsoft 97/2000/XP

By choosing a mutually compatible load/save file format that reflects the majority of your documents, you can save a lot of time and energy and not have to convert all of your documents just to try out or move over to OpenOffice.org.

I also recommend reading a posting by Serdar Yegulalp over at SearchEnterpriseLinux.com about mass-migrating Word documents, some good advice and linkage in it.

Enjoy,

RossB

  • Linux Event
  • October 23, 2007 @ Casa Larga Vinyard
  • This seminar will provide a comprehensive overview of Novell’s latest Linux advances in desktop, server, deployment, virtualization and security. The session will provide you and your fellow business decision makers with a strategy update pertaining to key pain points within organizations. In addition to learning about time, energy and cost saving changes you can make within your organization, you’ll also have the opportunity to network with your peers.
  • Register Now

Click for more events and training in the East…

Many small businesses and the IT consultants who support them have deployed Linux in some way — hey, it can save a ton of cash! But typically Linux is doing a specific task — maybe a file/print server, web server, firewall, database, etc. The solutions have been done fairly piece-wise, and that can lead to a lack of integration – making things a bit more difficult to manage over time. Alternatively, one might have chosen the Microsoft Small Business product – but we all know where that can lead (security problems, constant patching, IT headaches, excessive software costs, etc.). There really hasn’t been a nicely integrated workgroup suite for small business based combining the best of open source and proprietary enterprise software… until now.

Novell Open Workgroup Suite Small Business Edition has arrived. It works with either Windows or Linux desktops and includes “less expensive” (and arguably EASIER-to-LEARN) alternatives to Windows Vista and MS Office 2007. In addition to a nicely integrated installation, it has a ton of value for a very small price. It includes:

  • File/Print sharing and security – Open Enterprise Server for Linux
  • Laptop backup/file collaboration – iFolder
  • Email/Calendaring – GroupWise
  • End-user general purpose desktop – SUSE Linux Enterprise Desktop
  • MS Office-compatible office suite – OpenOffice.org, Novell Edition
  • Backup software – Amanda
  • Network faxing – HylaFAX
  • Anti-spam – MailScanner
  • Anti-virus for email – ClamAV
  • Firewall – iptables
  • VPN – OpenVPN
  • Remote control – TightVNC

… and all this stuff runs on Linux!  Yeah, but how does it compare to the Microsoft Small Business Suite? Look here.

All this for a retail cost of $350 for every 5-users!! Want more info? Check these out… product home page, audio podcast, press release, workgroup team blog

Why Worry About It?

Backups are essential, and so is the reducing the time needed to perform those backups. Many’s the time I have sat waiting for a backup to complete only to remember that I had a link to a large set of files, or a bunch of ISO files in the ./download directory, and had to migrate those over to somewhere else and restart the backup.

If you are like me, data = “files that contain data of original or irreplaceable content”. I don’t want to backup ISO files, large sets of files that can be gotten from an install DVD or things that are easy to download from a site somewhere.

I use a simple (yeah, it really is), script before every backup to find all the files over a particular size, which I then can so anything I want with. If I find anything that’s too large and expendable, I either use an -exclude statement (usually in the case of all ISO’s) or even move the files elsewhere quickly by re-running the script and tacking on a -exec statement.

The Script

Here is the script I use, it’s from a bunch of different sources, and uses a couple of useful tools to do it’s work:

#!/bin/bash

echo "Enter the fully-qualified start path"
read start_path
echo "Enter the lower size limit in Megabytes"
read lower_size
find $start_path \( -size +"$lower_size"M -fprintf ~/Desktop/bigfiles.txt '%kk %p\n' \)

Fables of the Deconstruction

#!/bin/bash

The first line is where you declare what shell you want to run this script with. This string is known as the “shebang”, not absolutely necessary since it defaults to the bash shell anyway, but it’s certainly good form.

echo "Enter the fully-qualified start path"
read start_path

Lines 3 and 4 work together, prompting you to enter the fully-qualified start path and then storing what you enter in the newly-created variable named start_path. This is expanded in Line 7 by referring to it’s name $start_path.

echo "Enter the lower size limit in Megabytes"
read lower_size

The same arrangement occurs with lines 5 and 6, you’re prompted to enter the smallest size in Megabytes you want to report on, which stores that in the newly-created variable named lower_size. This too is expanded in Line 7 with the name $lower_size.

All Together Now

Line 7 is where all the fun stuff happens. First you are using the find command, not the easiest thing for newcomers, but well worth, ahem, “finding” out more about. Find requires several things, shown below:

find (path) (-option) (expression)

We’re using the start_path variable as the (path), then we include a function (sort of a macro) that looks for files of a size that is at least the value of the lower_size variable we set and populated earlier. Then when it finds each file over that size, it will print out the file size in 1K blocks, followed by the LETTER k, so it’s obvious, and then the full path and name of the file that has been found. This will all then be output to a file named bigfiles.txt in the current user’s Desktop folder.

Note: The use of the tilde (technical name: squiggle 8-> ) character in a command means to expand the current user’s $HOME variable from the executing shell, so the full path of the bigfiles.txt file if rossb is running the script is:

/home/rossb/Desktop/bigfiles.txt

Running the Script

Executing scripts that aren’t in your path (the variable, not the physical directory) is different on Linux/Unix, either you’ll use this script as a parameter to the bash shell:

# /bin/bash findbigfiles.sh

Or you’ll use the following command to set the script to be executable:

# chmod +x findbigfiles.sh

Then when it’s set to executable, you’ll either need to put it in your path, (try /usr/local/bin) or execute it by preceding it with the characters “./”, which is necessary to execute something in the local directory if it’s not in the path:

# ./findbigfiles.sh

Summary

There are so many other things you can do with find, such as tack on a -exec statement and execute a command on each and every file found, or find and act on files that meet a particular permission set, the possibilities are nearly endless.

Of particular help in my work over the years with the find command has been the find man page, with it’s useful examples and Chapter 14 “Finding Files with Find” of the Unix Power Tools 2nd Edition from O’Reilly and Associates. (I know the 2nd Edition is out of print, but I don’t care much for the 3rd Edition’s updates).

Let us know in the comments what cool find scripts you have come up with, the randomly drawn winner will get a very cool Novell-Candy-Apple-Red 9 LED flashlight. (Sorry, Continental U.S. only).

Enjoy,

RossB

Laura over at the awesome VirtualHosting.com blog has 12 great tips for pre-hacking your own machine.

Your wifi is encrypted and a trial version of McAfee came with that new HP the kid at Best Buy sold you, so no need to worry about computer security, right? Unfortunately, security is a whole lot more complex than your average computer user might imagine.

There are literally hundreds of ways that malware and hackers can compromise your system security, most of which you’ve never heard of. Thankfully, however, there are a number of online tools available which will help you identify (and sometimes fix) the vulnerabilities in your system. In this article we’ve selected 12 basic tests you can run on your machine to identify its weaknesses.

More from the article.

Next Page »

Follow

Get every new post delivered to your Inbox.