Cory Doctorow—Linux Guru?
- « first
- ‹ previous
- 1
- 2
- 3
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
| 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 |
| Dart: a New Web Programming Experience | May 07, 2013 |
- New Products
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- Drupal Is a Framework: Why Everyone Needs to Understand This
- A Topic for Discussion - Open Source Feature-Richness?
- Home, My Backup Data Center
- RSS Feeds
- What's the tweeting protocol?
- New Products
- Trying to Tame the Tablet
- Dart: a New Web Programming Experience
- Reply to comment | Linux Journal
14 hours 50 min ago - Reply to comment | Linux Journal
17 hours 23 min ago - Reply to comment | Linux Journal
18 hours 40 min ago - great post
19 hours 15 min ago - Google Docs
19 hours 38 min ago - Reply to comment | Linux Journal
1 day 26 min ago - Reply to comment | Linux Journal
1 day 1 hour ago - Web Hosting IQ
1 day 2 hours ago - Thanks for taking the time to
1 day 4 hours ago - Linux is good
1 day 6 hours 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
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?