Cory Doctorow—Linux Guru?
- « first
- ‹ previous
- 1
- 2
- 3
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
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)
- Using Salt Stack and Vagrant for Drupal Development
- New Products
- Validate an E-Mail Address with PHP, the Right Way
- Drupal Is a Framework: Why Everyone Needs to Understand This
- A Topic for Discussion - Open Source Feature-Richness?
- Download the Free Red Hat White Paper "Using an Open Source Framework to Catch the Bad Guy"
- Tech Tip: Really Simple HTTP Server with Python
- Readers' Choice Awards
- Android is Linux -- why no better inter-operation
2 hours 13 min ago - Connecting Android device to desktop Linux via USB
2 hours 41 min ago - Find new cell phone and tablet pc
3 hours 39 min ago - Epistle
5 hours 8 min ago - Automatically updating Guest Additions
6 hours 17 min ago - I like your topic on android
7 hours 3 min ago - Reply to comment | Linux Journal
7 hours 25 min ago - This is the easiest tutorial
13 hours 39 min ago - Ahh, the Koolaid.
19 hours 18 min ago - git-annex assistant
1 day 1 hour ago
Enter to Win an Adafruit Pi Cobbler Breakout 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 Pi Cobbler Breakout 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
- 5-21-13, Prototyping Pi Plate Kit: Philip Kirby
- Next winner announced on 5-27-13!
Free Webinar: Hadoop
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Some of key questions to be discussed are:
- What is the “typical” Hadoop cluster and what should be installed on the different machine types?
- Why should you consider the typical workload patterns when making your hardware decisions?
- Are all microservers created equal for Hadoop deployments?
- How do I plan for expansion if I require more compute, memory, storage or networking?




Comments
It's just a matter of time - really?
I've been using various flavors of Linux on all of my home desktops since about 1995, using Gnome, KDE, Enlightenment, and/or XFCE desktop environments. The only problems I've really had has been accessing webpages specifically designed to Windows standards.
My daughter uses Mac OSX (on her laptop) and I don't see any difference in functionality.
That's a recognized myth: "I
That's a recognized myth: "I don't see any difference in functionality". The truth is that both Windows and Mac OS X are very good when we talk about a OS suitable for desktop.
Linux is just for servers, it is designed for servers, that's why Linux isn't used massively around the world. (although we'll always see people saying that that is because MS is doing illegal things under the hood...)
It is just a matter of time
It is just a matter of time before Cory Doctorow is using Mac OS X again. Why, you may ask, and obviously I have the answer: Linux is not designed to be suitable for desktops.
Of course, you can still dream about the Linux domination and all that lies, I don't have a problem with that.
Awesome Article
I dream of a day when we will live in a world without DRM.
Signing email automatically
Hey Cory. In thunderbird go to account settings, click on Opengpg security, and check the boxes marked "Sign...by default".
I think it's only if you have enigmail installed, but I don't think you can even use gpg without it. (Don't know had it installed for forever.)
Deja Vu
This is from Nov 1, 2008. First comment from Oct 8, 2008. What's the deal? LJ is now recycling articles. Wow.
From the Print edition
This article is from The November 2008 print edition of Linux Journal. We occasionally highlight print articles on the web after they have been made available to all readers. In this case, I feel like this is a particularly interesting interview, and well worth bringing to the attention of our web readers.
I particularly enjoy reading the discussion of Apple and DRM in light of last month's move by Apple to DRM-free music on iTunes.
Katherine Druckman is webmistress at LinuxJournal.com. You might find her on Twitter or at the Southwest Drupal Summit
The sciprt explained
Tor is used to anonymously surf the internet, you connect to a tor server and it has exit nodes in different countries so your ip looks as if its coming from say Germany.
ssh -- secure connection method between server and client.
So ssh over tor would make it have a secure anonymous connection. SMTP over ssh over tor would make sending mail over a secure anonymous connection.
Now the command
alias tortunnel='ssh -o ProxyCommand="/usr/bin/connect
↪-S localhost:9050 %h %p" -f -N -C -l username
↪-L5002:255.255.255.255:25 -L5003:255.255.255.255:110
↪-L5555:localhost:5555 255.255.255.255'
-o is option switch for ssh client this command is telling it to call connect using the command /usr/bin/connect (I am guessing this is an example script hence replace /usr/bin/connect with your own connect command)
this connect command takes the -S option to have connection sharing on port localhost:9050, since its localhost you can connect to port 9050 on your machine using only the loopback socket. %h %p are replaced by hostname and portname.
-f (force backgrounding)
-N (do not open shell just forward ports)
-C (compress data when sending)
-l username logs in with the username you provide
-L5002:broadcast-address:25 replace the broadcast address with correct address, this command will port forward local port 5002 to smtp port 25. Similarly -L5003:xxx:110 will port forward local port 5003 to pop-port 110 for incoming mail. Finally, 5555:localhost:5555 will open port on local machine "5555" to remote machine you are connecting to on port "5555" last address (255.255.255.255) should be the ssh-server address.
Cheers,
connect is real
Get connect.c from http://www.taiyo.co.jp/~gotoh/ssh/connect.c
Unfortunately, Goto san's html page is down, but mirrored here: http://bent.latency.net/bent/darcs/goto-san-connect-1.85/src/connect.html
The usage instructions are in the source.
great interview
Thanks, this is excellent. I wish more people paid attention to these issues, because they strike at our basic freedoms.
smtp over ssh over tor script??
Great interview. It's important to raise awareness to and voice the issues with DRM, Privacy, Surveillance Society, Freedom of speech, consumer choice and everything that relates to it.
I'm a little confused about this little script provided though. Could somebody explain what's going on exactly for the benefit of the less technically familiar with ssh tunneling / tor proxying etc?? I'm vaguely familiar with both, but still a little baffled with marrying those two together.
I'm particularly unclear about those 255.255.255.255 addresses. Were they supposed to be replaced by localhost or the remote SSH host?? Where does the SMTP server address / username+password fit in all this?