Letters
Letters
Kudos for the Bold Call to Boycott Novell
I wanted to write since it seems you're getting some flak in response to your well articulated blog. You probably already know this well enough, but it is something that Vaughan-Nichols has been publishing, and I have been trying to convey in similar published articles. Only those who've observed MS business strategy over the years seem to appreciate the key elements of your statement.
So, to help counteract some of that flak, I wanted to say THANK YOU for
holding a position, standing on substance, and being candid.
—
Mark Rais
Note: This letter is in response to blog articles published exclusively on the www.linuxjournal.com site: “Novell Is Loading Microsoft's Gun”, www.linuxjournal.com/node/1000129 and “A Five Year Deal with Microsoft to Dump Novell/SUSE”, www.linuxjournal.com/node/1000121. —Ed.
Marcel Gagnés Column
In the November 2006 Letters section, Marcel Gagnéwrites, “With a very few exceptions (such as Mr DeSouza), I get nothing but praise for my articles.”
Let me cause another exception for Mr Gagnéand add my voice to those
who think the style of Mr Gagnés articles are extremely annoying.
Usually I just scan the article looking for the actual content, as the
fluff is too cheesy and bothersome to wade through. Asking around my
department (there are many avid readers of Linux Journal here), no one
else even bothers to read the article because of the style.
—
Chris Russell
With apologies to Marcel for inadequately borrowing his style, Francois serves a sweet white wine to some and a rich full-bodied red to others. Most of our readers love Marcel's column. Your exception is respected and noted. —Ed.
Letters to the Editor
Every time I was starting a new project, Linux Journal beat me to it with an introduction article. When I wanted to go PPC, my new issue just arrived. When I was reading about Qtopia, my new issue arrived. When they introduced the Nokia 770, my issue arrived to tell me all about its UI.
I don't expect every article to be meaningful for me, but I do expect something from every issue. Telling us about x264 was great (the part about QuickTime users in specific), but the rest of the issue needs to be refocused.
What I would like to see? How about a technical discussion of how the
Zaurus “Sharp ROM” is put together? How about a discussion on how to get
the 770's window system working for a workstation? How about an article
about the Qtopia phone? Does Trolltech offer a GPL phone edition for
use with the new Wi-Fi IP SIP phones (for example, WIP300)? I could go on and on
about the growing trends in these directions.
—
J.
Thanks for the suggestions. We welcome input like this. —Ed.
P2P over NAT
I enjoyed Girish Venkatachalam's article in the August 2006 issue of LJ about developing P2P protocols across NAT. I was particularly interested in some assertions made and was wondering if Girish can provide some references to those.
In particular, “At least 50% of the most commonly used networking applications use peer-to-peer technology.” This doesn't seem right.
I always thought that, being connection-based, TCP was a lot easier to
NAT than UDP, although some TCP applications make it harder by including
IP addresses in the application layer part of the datagrams (such
as FTP in “normal” mode), requiring the NAT router to have to inspect
and modify every FTP datagram.
—
Bob
SSH and DenyHosts
Regarding the yellow warning about SSH dictionary attacks [LJ, December 2006, “A Server (Almost) of Your Own” by George Belotsky], try the wonderful DenyHosts (www.denyhosts.net).
DenyHosts monitors the incoming connections into your server (mainly SSH, but it can be FTP, POP or anything else with a login/password and log file) and blocks source IP addresses by automatically adding entries to /etc/hosts.deny.
I put it to run on a brand new Web server a month ago, and it has already more than 7,000 forbidden addresses!
Besides, you also can share your blacklist with DenyHosts' Web site,
feeding a mega-blacklist of the really bad guys.
—
Carlos Vidal
Java Java Java
I've been waiting and waiting and waiting for Java articles. How about
Java applets (Ajax before Ajax), Java servlets, Swing (and real cross-platform stuff). I look forward to hearing and reading about it.
—
Mark Molenda
We have just such an article in the works! —Ed.
PlayStation Games on Linux
In the May 2006 issue of LJ, there was an article by Dee-Ann LeBlanc on the above subject. Unfortunately, the emulator that Dee-Ann recommended is still available but unsupported for Linux; their Linux guy left the project. But, all is not lost; Linux will not be beaten. There is a new Linux emulator starting called PCSX2, and it can be found at pcsxii4unix.sourceforge.net. The new version is not completed yet; they need help.
Thanks LJ for the best Linux mag on the continent.
Always remember:
there are Linux users, and then there is the rest of society.
—
Des Cavin
One Linux, Many Faces
In his letter [December 2006 issue of LJ], Jon Alexander described how he surprised his friend by
logging in with different desktops. If he really wanted to impress his
friend, he could have logged in with multiple desktops and then switched
between them. He even could have included a couple of remote desktops
for good measure. Also, don't forget about the virtual desktops that
Linux supports.
—
James Knott
Thieving Teachers
It was interesting to read Jon “maddog” Hall's experience in his article titled “Soweto: Power from the People” [see the UpFront section of the December 2006 issue of LJ] and compare it with an experience our computer club had a few years ago.
The club committee decided that if the club members would donate their redundant computer equipment to the club, the club would donate this equipment to a Soweto school and help them set it up as a local network and subsequently connect to the Internet.
The installation went fine, and the local network also worked; however,
when the installation team arrived to connect the school to the Internet,
what did they find? Every single piece of equipment had either
been stolen or broken. It was subsequently discovered that some of the
teachers were responsible for some of the theft.
—
Alf Stockton
Optimal awking
I admit that I did not read the original article “Analyzing Log Files” [October 2006 issue of LJ] by Dave Taylor. I did see the “Optimal awking” letter however [Letters, December 2006 issue of LJ]. Being an old “bit twiddler”, I was interested in the enhanced run-time mentioned by reordering the original:
awk '{ print }' access_log | sort | uniq -c | \
sort -rn | grep "\.html" | headto:
awk '{ print }' access_log | grep '\.html' | sort \
| uniq -c | sort -rn | headNow, I'm not really an awk person, but I was curious as to what the awk program did. Apparently, it is just an expensive version of cat—that is, it copies its input to stdout, unchanged. In that case, why even have it? Also, why use grep? Instead, use fgrep, which, in this case, produces the same result with somewhat less overhead:
fgrep '.html' access_log | sort | uniq -c | sort -rn | head
[This] should produce the same output and totally eliminate the awk. In this case, no big deal. Unfortunately, many neophytes will pick up a script from a magazine and use it without really understanding it. So, I am a bit picky about examples. For a one-shot, this is no big deal. But I am a bug for efficiency—comes from programming back on 1MHz 8080s, I guess.
Unfortunately, I don't have a Web access_log to do any testing to see
if this really makes much of a difference.
—
John McKown
A Touch of Elegance
I hesitate to take issue with an authority like Dave Taylor, but [his script] uses repeated (and in many cases redundant) system calls and divisions to achieve what simple multiplications can do [see Dave's December 2006 column]. It also converts the results to the wrong units. (See man units for a discussion.)
A simple algorithm to achieve the same effect is embedded in a test harness as follows:
#!/bin/sh
# Script for numeric scaling - $1 = number, $2 = iterations
for (( i = 1; i <= $2; i++ ))
do
ki=1024
mi=$(($ki*$ki)) # 1048576 without typo risks
gi=$(($ki*$mi)) # 1073741824 without typos
value=$1
if [ $value -lt $ki ] ; then
units="bytes"
elif [ $value -lt $mi ] ; then
units="KiB"
div=$ki # < 1 Mi, so calculate Kibytes
elif [ $value -lt $gi ] ; then
units="MiB"
div=$mi # < 1 gi, so calculate Megs
else
units="GiB"
div=$gi # >=1 gi, so calculate Gigs
fi
if [ $units != "bytes" ] ; then # scale value appropriately
value=$(echo "scale = 2; $value / $div" | bc )
fi
echo "$value $units"
done
# End tcon2
Running 1,000 iterations of each on an HP laptop with an AMD 2500 chip
showed the revised version to take approximately one-quarter of the time
(real, user, and system) of the original.
—
Alan Rocker
awk Is Not So Awkward
I don't think Dave Taylor gives awk enough credit [see Dave's November 2006 column]. I do not have access to the same Web files, logs or version of Linux. However, I do know that his solution can be written entirely with awk. Using AIX and HP-UX, I did dummy up a mail log file, cheated on the date command and tested my awk solution.
Below is awk code that I think would duplicate Dave's example:
#!/bin/sh
LOGFILE="/home/limbol/logs/intuitive/access_log"
awk '
( index($0, YESTERDAY) ) {
hits++;
bytes+=$10
next}
END {
printf("Calculating transfer data for %s\n", YESTERDAY)
printf("Sent %d bytes of data across %d hits \n", bytes, hits)
printf("For an average of %d bytes/hit\n", (bytes / hits) )
printf("Estimated monthly transfer rate: %d \n", (bytes * 30) )
}
' YESTERDAY="$(date -v-1d +%d/%b/%Y)" ${LOGFILE}
—
Rory Hammond
Why Ubuntu and Then KDE?
I found it a little bit ironic that you chose Ubuntu as the 2006 Editors' Choice Linux distribution, but that you chose KDE as your Editors' Choice desktop environment. It seems to me that if you were going to pick Ubuntu, you'd choose GNOME, and if you were going to choose KDE, you would choose Kubuntu. Are there reasons you picked Ubuntu over Kubuntu, or did you simply mean (K)ubuntu in general for your Editors' Choice distribution?
PS. Long live KDE!
—
Geoff
As we said in our write-up, we also find it a puzzler as to why Ubuntu seems to be a favorite, yet research data shows people prefer KDE over GNOME by a significant margin. Perhaps people refer to all variants of Ubuntu as Ubuntu, even if what they're really using is Kubuntu. Or, maybe others do like some of us at Linux Journal do. Some of us at Linux Journal install Ubuntu and then install and use KDE (thus essentially converting it to Kubuntu). —Ed.
Erratum
Some of the code was inadvertently formatted incorrectly in George Belotsky's “A Server (Almost) of Your Own” in our December 2006 issue. For the corrected version of the article, please see /article/8337.
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
| Using Salt Stack and Vagrant for Drupal Development | May 20, 2013 |
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
- RSS Feeds
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- New Products
- Drupal Is a Framework: Why Everyone Needs to Understand This
- A Topic for Discussion - Open Source Feature-Richness?
- Home, My Backup Data Center
- Validate an E-Mail Address with PHP, the Right Way
- Tech Tip: Really Simple HTTP Server with Python
- Trying to Tame the Tablet
- New Products
- git-annex assistant
5 hours 55 min ago - direct cable connection
6 hours 18 min ago - Agreed on AirDroid. With my
6 hours 28 min ago - I just learned this
6 hours 32 min ago - enterprise
7 hours 2 min ago - not living upto the mobile revolution
9 hours 54 min ago - Deceptive Advertising and
10 hours 29 min ago - Let\'s declare that you have
10 hours 30 min ago - Alterations in Contest Due
10 hours 31 min ago - At a numbers mindset, your
10 hours 32 min ago
Enter to Win an Adafruit Prototyping Pi Plate Kit for Raspberry Pi

It's Raspberry Pi month at Linux Journal. Each week in May, Adafruit will be giving away a Pi-related prize to a lucky, randomly drawn LJ reader. Winners will be announced weekly.
Fill out the fields below to enter to win this week's prize-- a Prototyping Pi Plate Kit for Raspberry Pi.
Congratulations to our winners so far:
- 5-8-13, Pi Starter Pack: Jack Davis
- 5-15-13, Pi Model B 512MB RAM: Patrick Dunn
- Next winner announced on 5-21-13!
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.




Comments
content
Sad to see Linux Journal going the way of "Eweek" and "Dobbs Journal". I don't need to read a bunch of reviews of equipment that only fortune 500 companies can afford to use.
Petreley is the icing in the cake. He looks like the epitome of a politician struggling to jump out in front of a parade. Nothing new there. It should be called "/var/duh/boring".
Sorry, but I was a journalist once. I used to put in some effort in the daily grind.
Nothing to see here....move along....
I remember when Linux Journal was fun.