Lockergnome    

  Syndicate This Newsletter  08.01.2003 GnomeREPORT

What a week! LinuxWorld Conference and Expo starts on August 5th, and I wish I could say I was going - especially since I think I've been asked by at least 100 different people if I'm going - but not this time. Too busy and too "underfunded." For those who are going, I'd love to hear your thoughts during or after the conference. This goes for anyone attending a Linux-related con. I'm sure your fellow readers would like to know which ones are ultimately worth going to and which are mostly just hype.

LinuxWorld's new print magazine is premiering at the conference, which is one reason so many people have asked me about it, since I'm one of the editors. Be sure to check out the new publication! I've seen preview copies and - I think - it's pretty cool.


Lockergnome Linux E-Books

Yes, this is a repeat. I only got one response, which of course could mean that most people just aren't interested, but I thought I'd give it one more try!

Much of the content of these newsletters is actually going to be updated, expanded, and repurposed into ebooks available here through Lockergnome. My questions to you folks are: what that I've covered so far are you dying to get an ebook about? What didn't I cover there that you'd like to see added for the ebook? I'm also always interested in knowing what you want to see covered here.


Selective Memories

One reader writes:

"When did Penguin Shell turn into a commercial for Red Hat? What's wrong with Gentoo? Now a log of your experiences installing my favorite distro would make some decent reading."

Hmm, so aside from my covering a variety of distributions and saying I'm lining up more, making sure to include solutions for people regardless of what they're running, and previously running a press release from an entirely different company (Ximian and their desktop, I believe it was), a single press release from Red Hat makes this newsletter a commercial for them? I included the release because it is a major change in direction for the company, which makes it interesting to me, and hence I figured it would be interesting to some readers.

Gentoo is, in fact, in my list for one of the distributions to cover. However, it's not really a beginner's distribution, is it? So, I didn't want to put it too early in the list since the distribution coverage has so far been in the EGGS section. I'll probably migrate discussion of Gentoo, Slackware, Debian, and those babies down to the CHICKS section.

If you go to my Web site and look through my list of articles in the LinuxPlanet/LinuxToday.com section, you'll find out that Gentoo is one of my favorite distributions. You'll also find coverage of my experience installing multiple versions of Gentoo.

Patience, grasshopper.

Digitally Yours,              
Dee-Ann LeBlanc       


 GnomeEGGS

Learning about Commands, Part II

In addition to man and info, there are two other major commands that will give you information about the tools available in your Linux toolbox. whatis gives you a short blurb explaining what a command is used for, and apropos finds searches for commands whose descriptions contain the keyword you specify. Let's start with whatis, since ultimately this command is responsible for making both itself and apropos work.

The whatis command works as follows. You feed it a command - for example, let's say ifconfig - and whatis looks in its database for the listing corresponding to this command. In the case of ifconfig, I get:

$ whatis ifconfig
ifconfig             (8) - configure a network interface

Whenever you install new programs, you're adding new commands, man pages, and more. The whatis database has to be refreshed if it's going to reflect this new information, so many distributions update it by default on a regular basis. You can run this update manually at any time by typing (as the root user):

/usr/sbin/makewhatis

The apropos tool is, in a way, the opposite of whatis. With whatis, you have to know the name of the command you're looking for. With apropos, you don't know the name of the command, and use keywords to try to find it. Case isn't important here; apropos ignores whether things are in upper or lower case. Say that you want to find all of the instant messaging clients installed on your system. You might try something like:

$ apropos instant
Gaim v0.59.8 [gaim]  (1)  - Instant Messaging client
XRegisterIMInstantiateCallback [XOpenIM] (3x)  - open, close, and otain input method information
XUnregisterIMInstantiateCallback [XOpenIM] (3x)  - open, close, and otain input
method information
Gaim is indeed the instant messaging client I use on my system. The other stuff... well... those are programming-related items. I can tell by the (3x) part of the listing, or really just the number 3. To understand this item, you'll have to wait until next week, when we take a brief detour into how man pages are organized. Before I go for this week, though, I'll point out one more thing. You'll want to usually "pipe" the output from the apropos command to the more command, so you can see only one page at a time. Otherwise, you'll watch in horror as pages and pages of output scroll past you!

You can do this using the pipe symbol: |. This symbol tells Linux to take the output from the command on its left, and send it as input to the command on its right. Try this example on your own machine:

apropos pdf | more

Next week: How man pages are organized ...

Submit a Resource | Discuss | Recommend It!


 GnomeCHICKS

Compiling Software from Source, Part IV

You might remember from last week that I'd gotten to the gnome-vfs package and ended up with it telling me to install the same library I'd just finished installing. Oops! Well, I tried running make install again for that library, just in case I forgot that silly step, but that didn't fix the problem. So, this probably means that the bonobo libraries aren't being installed where gnome-vfs expects them. The specific message is:

configure: error: Library requirements (libbonobo-2.0 >= 2.0.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.

I open a separate terminal window and type locate libbonobo | more to see where the libraries were installed. There's lots of them in /usr/lib, /usr/local/include/libbonobo-2.0, /usr/local/lib/... and I think I saw pkgconfig pass by there as well. So, I type:

$ locate libbonobo | grep pkgconfig
/usr/local/lib/pkgconfig/libbonobo-2.0.pc

That's likely what it's looking for, so why isn't it finding it? Ah ha:

$ echo $PKG_CONFIG_PATH
 
$

The environment variable is empty. Now, I type the following in the window I'm using for the compilation (so the variable will be set in the proper subshell):

PKG_CONFIG_PATH="/usr/local/lib/pkgconfig/"

and try ./configure again. Nope. Same error. I use echo again in the compilation screen and yes, the environment variable is set correctly. Time to use ./configure --help | more for further assistance.

That's it for this week. I'm going to keep going with this series until:

  1. Lots of people beg me to stop.
  2. I stop running into new and interesting problems.
Next week: Will Dee-Ann ever get gnome-vfs compiled?

Submit a Resource | Discuss | Recommend It!


 GnomePENGUINS

You PENGUINS this week get homework. Yes, homework! I want to hear all about your favorite Linux backup solutions. Scripts, software, techniques, tricks, tips, and more. They can be for anything from Linux backup servers in a multi-OS enterprise environment, or for a single machine at home. I'll include the best answers in one or more PENGUIN articles in the following weeks.

In the meantime, I won't leave you with no new material. People are always telling me about software, and I rarely have a chance to fit it all in, so here's a list of things you PENGUINS might find useful:

  • Subversion - An Apache 2.0 module that some are using in place of CVS for software development version control.
  • eMotion - Using the Sharp Zaurus SL-5X00 or SL-5500 PDA? This is a Java program that lets you set what music to play according to your mood. It has a client that works under Linux.
  • 3Com ADSL Modem USB driver - This project might be what you need if you're having trouble getting this hardware working. It's a Spanish-language project, but for us English-speakers, there are resources available in English... and there's a link to a translation tool as well.
  • WAP Utilities for Unix - Uses the SNMP protocol, and supports most of the Unix variants. See the site for supported hardware, since it will change over time.
  • Image/J plugins - Plugins for the Java-based image processing and analysis program Image/J, for both PCs and the apparently popular Sharp Zaurus.
  • Using an Xbox and Linux to make an in-car multimedia system - Please don't watch movies from the driver's seat! Some of us would actually like to survive when on the road.
  • InterMapper - A network monitoring and alert tool.
That should keep you busy!

Submit a Resource | Discuss | Recommend It!


 GnomeVOICE

Glenn writes:

"I've long been a subscriber except for the last four months because I had to go offline due to financial difficulties (no access - I guess that'll do it, eh?), but I'm 'bak' and lovin' every issue.

"I'd like to point out that there is a forum that folks might wish to flock to again.

"It seems that Artem, the site administrator, had some real bad hardware problems. Real bad - as in a total fry-out of his equipment. It seems that there was some kind of Hydro-Power snafu way up there in Finland that rezerked and totally fried 'everything!' So, in consequence, all records of previous members went up in smoke - sorry folks!

"All is OK now, and the forum site is open for business with brand new equipment (including state-of-the-art UPS), e-mail client, larger storage, IRC, and ideas. There's a slightly new format in that discussions of *ALL* the unices OSes are welcome - Linux, FreeBSD, BSD, UNIX, Solaris, etc. The idea is to create an open, welcome, friendly forum (flaming is Verboten) crusty veterans to newbies are welcome. System Analysts and Administrators to pot-bellied desktop enthusiasts and Windoze converts are all welcome.

"I would appreciate it very much if you could include a blurb to the Web site. The guy's got a great idea, and I don't think I've seen another one with this kind of theme on the Web anywhere. Of course, I could be wrong, but I don't think so.

"So, please, ask folks to direct their browsers towards http://www.goldenrain.net/. Click on 'Forum,' register, and let's hear what you've got to say - it'll be fun!"

Submit a Resource | Discuss | Recommend It!


 GnomeCLICK

A techie took the time (and expense) to really try and get into Linux. He ran into various problems along the way as he tried a variety of distributions, and ended up writing quite an interesting article about his experience. You can find it here:

http://www.majorgeeks.net/vb/showthread.php?s=&postid=175957

Submit a Resource | Discuss | Recommend It!


 GnomeMAN

Stu writes:

"Got a question - Scribus looks good! But is there Linux Software that does like newsletters, cards, etc.??"
Dee-Ann says:

That's a toughie. I found a card generator for Web servers, but it's for ecards. At this date, there doesn't seem to be something that's exactly what you're looking for (that I can find). You could try to get Scribus or OpenOffice.org to do it. Or, you could use one of the tools that lets you run Windows software under Linux and use one of the many Windows programs available to Windows users. (Hopefully someone will see me saying there's nothing there, and start building something to prove me wrong!)

The Windows-under-Linux tools that could suit your needs include:

Perhaps the folks at Scribus or OpenOffice.org could be talked into doing a newsletter and/or greeting card program for Linux. For Scribus, it might be fairly simple, since it would be a more focused version of what they already have.

Submit a Question | Discuss | Recommend It!


Cool Tools:
 GnomeDomains
 GnomePortable
 Gnomies.com
 GnomeSavings
 GnomePersonals
 GnomeJobs

Reading Materials:
 CPU Magazine
 Computing Guides
 Internet Business  PayPal Library
 HOT! Wi-Fi Help

Current Content:
 Windows Daily
 Digital Media
 Tech Specialist
 Penguin Shell
 Apple Core
 Web Weekly
 Technology News
 File Of The Day

Search:

Our Community:
 Gnomedex Conference
 The Forums
 Live Chat Room
 Tell a Friend!
 Watch The Webcams
 About Lockergnome

Contact Us:
 General Feedback
 Sponsorships
 Submit a Link
 Ask a Question
 E-mail the Editor
 The Editor's Site

 


Past Issues:
Software:
Register a Domain:
Domain Transfers:
Hardware:
Amazon Products:

Get Listed Here

Question: which group is 250,000+ strong and always looking for stuff to make their personal and professional lives run smoother?

 

Get yourname@gnomies.com today

 


©1996-2003, Lockergnome LLC. ISSN: 1095-3965. All Rights Reserved. Please read our Terms of Service. Web site hosted by DigitalDaze. Domain registered at DNS Central. Powered by Lyris ListManager. Chris Pirillo fueled by Peet's Coffee. Headers provided by Habeas. Statistics provided by Urchin.