What is this? Some vendors want to lock down the new UEFI boot loader on machines they sell you. It seems Red Hat and Fedora have some arrangement with Microsoft. Our own zareason will ship all systems with UEFI Secure Boot disabled until a more workable solution is found. The story has evolved quickly.
They’re here! Following up an excellent January berkeleylug blog entry by goosbears, the Raspberry Pi (raspberry_pi on twitter) is a $25, tiny cheap ARM computer for kids. The $35 version has an extra USB port and built in wired ethernet. USB wifi adapters can be used with it. Just add a monitor, keyboard, mouse and network and it’s a decently powered Linux computer with headers for experimentation. It was created by a UK registered charity and is now starting to ship to the backlog of thousands of orders. Much more is known now than was in January. People are starting to put them to good use.
The demo unit we had in our booth at Maker Faire was the star of the show. People came from all over the faire to our booth in order to try out the increasingly famous Raspberry Pi. The Raspberry Pi Foundation spoke at the Faire twice but I am not sure how many other exhibitors had one running live in their booth for people to see and use. The 1080p video we played raised some eyebrows for both the current movie trailer content as well as the strong performance of the little Raspberry Pi.
The North Bay LUG will be hosting a talk June 12th in Sebastopol by Allan Cecil on this incredible little computer. We are finalizing arrangements for a Raspberry Pi speaker for the Bay Area LUG on June 19th in San Francisco.
Since it’s only a printed circuit board (PCB) some additional parts are required to use one. I’ve seen some cool thingiverse 3D printed cases for these small computers. I need to get to noisebridge.net during an appropriate introductory event with the downloaded patterns and make my first 3D printed item on their rep-raps.
Debian is the recommended Linux distribution with Arch and QtonPi also available. Fedora is also supported. Unfortunately Ubuntu does not run on it because it is an ARM v6 board and Ubuntu currently only autobuilds for ARM v7.
A local nonprofit, Partimus, provides repurposed hardware and open source software to schools in San Francisco and Oakland. Full disclosure: one of the hats I wear is as a Partimus Director. We are taking suggestions for how to make best use of a donated Raspberry Pi from james2_0. Keep your eyes on the comments for what we decide to do with it.
The btrfs is a new Linux copy-on-write filesystem that will replace ext4. As the author of ext4, Theodore Ts’o agrees this is the right direction. The new filesystem is pronounced as either "butter F S", "better F S" or "B-tree F S".
The main site is hosted by kernel.org.
The biggest problem I heard about was that a user space tool was missing, however that was released in Feb, 2012 for use by sysadmins and Linux distributions.
https://btrfs.wiki.kernel.org/index.php/Getting_started#Enterprise_distributions_with_btrfs_support
Two distributions support it right now, Oracle (where btrfs is developed) and openSUSE. This Chris Mason video recorded April 2012 provides a current overview of the filesystem’s status.
We hope you have enjoyed our regular meetings at Bobby G’s in Berkeley on the second and fourth Sunday of each month. Our next meeting is May 27th. We also talked to an incredibly fun group of faire goers about Bay Area Linux all weekend at Maker Faire May 19th & 20th.
The Linux Journal covers an iTunes shiny red fruit alternative Juice (homepage) providing cross platform access to podcasts.
A key suite of software many people require when using a computer is word processing, spreadsheet, database and presentation software. The first cross platform one that comes to my mind as a solid alternative to commercial offerings is Libre Office though I don’t know what the state of The Document Foundation vs. Apache Foundation OpenOffice incubation might be to bring the OpenOffice name back to this excellent software product.
What apps do you find people must have when coming to Linux from other platforms?
P.S. As a reminder, our 4th Sunday meeting at Bobby G’s is this Sunday, April 22nd. I hope you can join us. As we skipped the 2nd Sunday due to Easter it’s been quite awhile.
P.P.S. Mark your calendars for the Ubuntu 12.04 LTS Precise Pangolin release party coming up this Thursday at 7PM in SF at the Thirsty Bear and the Ubuntu Developers Summit May 7-11 in Oakland.
Fundamental changes are under way at the Creative Arts Charter School, due to a fire that struck on 12.22.11. The Linux desktop lab is being dispersed to make room for a Linux notebook lab. If you would like to help us move machines, please show up at the Creative Arts Charter School this Friday, April 13, 2012, at 9:00 a.m., at 1601 Turk Street at the corner of Pierce. Please bring tools that you will need to triage machines, such as copies of Ubuntu 10.04, screw drivers, needle nose pliers, cable testers, and so forth. Also wear old clothes, because you might get just a little bit dirty moving machines! We will probably be done by about 2:30 pm or so, depending on how it goes. And we will feed you lunch! If you have a camera, please feel free to bring it! Also, people who can drive a truck or a car are especially welcome.
Please feel free to call my google voice number at 415-935-1701, which rings through to my cell phone, so that I can help orient you, as the school is fairly large.
This Saturday from 10:30 to 3:00, there will be a triagefest at the Creative Arts Charter School at 1601 Turk Street at the corner of Pierce Street in San Francisco. This is the school that had that huge fire on 12/22/11. More about that fire here:
The purpose of this triage fest is to separate good equipment from bad equipment. Volunteers with a pick-up truck for moving equipment 3 blocks would be particularly appreciated. Pizza will be served at 12:30 p.m.
Please bring with you everything that you would need to test a computer and its peripheral equipment, and to take a computer apart and put it back together. It would also be good to bring Ubuntu 10.04 on a flash drive, since we will be installing that distro on some machines.
This public charter school relies on our Linux computers heavily for the work that their students do, so they will definitely appreciate the work! Thanks in advance to all volunteers!
C, Lisp and Perl are traditional hacking languages in the
GNU/Linux culture; Python, PHP, Java and C++ have gained new
ground recently
.
Furthermore, and mostly according to Veranka’s mini-HOWTO and to forum threads such as this one at ProgrammersHeaven.com/ ;
A. Perl is a great first programming language to learn for Beginners; Perl has the advantage of being an interpreted language instead of a language that requires a compiler and linker for creating binaries. Perl is an Object Oriented Programming (OOP) language that is especially powerful for handling text and strings. Perl is commonly used for scripting, for sysadmin-type tasks, and for web server tasks.
B. Python and Java are also great first programming languages for Beginners to learn; both Python and Java are modern up-to-date OOP languages used on web servers and for web-processing tasks. Python is especially useful for more general and application-specific scripting while Java is especially useful for cross-platform applications.
C. as appropriate 😉
C and C++ are apparently NOT languages for Beginners to first learn programming. Although executable binaries created from C or C++ generally run faster than interpreted source code, executable binaries (i.e., the actual applications) require the EXTRA steps of compilation and linking from original C/C++ source code, not to mention any necessary required debugging and optimization steps. Both C and C++ programming languages are especially useful for creating applications. C is more of a Procedural than an OOP language such as C++, and many describe C as being the MOST suitable for the system and in-depth OS tasks that Linux distros rely upon using the GNU Compiler Collection’s ‘gcc’.
* Note that “GCC” is the acronym for the overall GNU Compiler Collection whereas “gcc” is the specific acronym specifically for the GNU Compiler Collection’s C compiler itself.
From my own limited experience, I would probably place Perl and maybe Bash shell-scripting ahead of C and C++ for Beginners first learning how to program. I would guess that many of us who have already programmed using Perl and Bash shell-scripting could probably use a refresher or two in these :-).
A good “Perl tutorials” web search using the privacy-minded search engines ixquick and/or Startpage should yield worthwhile hits very similar to these handful :
With all that being said, here are some working links I have found regarding learning and compiling C/C++ programs.
I. Tutorials to learn C/C++
The love_C.ps.Z zipfile containing the ANSI C for Programmers on UNIX systems tutorial. Once the compressed love_C.ps.Z file is downloaded and copied over to a particular folder, it would need to be uncompressed with ‘gunzip’ and then converted to a pdf or to a standard ASCII textfile using the respective conversion commands ‘ps2pdf love_C.ps’ or ‘ps2ascii love_C.ps > love_C.txt’.
** I find that a key benefit to having such a tutorial in these formats (pdf or textfile) is that you can study and use the material WITHOUT requiring a web-browser or Internet access.
Unfortunately, Tom Love’s ANSI C tutorial is well over a dozen years old.
HowtoForge’s Learning C/C++ Step-By-Step.
Got this by recommendation, but haven’t looked into this. Seems fairly straightforward though.
The Learn C and C++ links at Cprogramming.com’s C Programming and C++ Programming.
These combined C and C++ tutorials are definitely easy to find and remember(!), and are fairly comprehensive all the way from Beginner to Advanced.
The simplest and probably the best initial manner of learning C/C++ programming in Linux using these tutorials on the command line is to:
Type in and edit your C/C++ source code using whatever text editor you most prefer (e.g., vi/vim/nvi, nano/pico, gedit, nedit, leafpad, mousepad,…whatever else) and then save the file with the suffix `.c’ for C programs or one of the suffixes `.C’, `.cc’, `.cpp’, `.CPP’, `.c++’, `.cp’, or `.cxx’ for C++ programs.
Compile and link your properly-suffixed source code file from the command line using the typical ‘gcc’ or ‘g++’ command+options for C and C++ respectively.
Run the default executable file by entering ‘./a.out’.
For getting more familiar with using gcc and g++ in steps 2 and 3, there are:
Cprogramming.com’s aptly-titled gcc compiler and g++ compiler webpages.
Quick, simple, and these provide appropriate mention of the GNU Debugger, ‘gdb’.
develvid’s YouTube video Compiling with GCC (probably should be “gcc” instead)
This video shows sequence of command line screenshots using the vim editor and a few ways to use gcc to compile and run a pair of simple C programs. Covers the above steps 1 through 3 in a quick 4 1/2 minutes.
The FSF gnu.org’s Invoking GCC – GCC Command Options.
Given that the entire site, gcc.gnu.org/onlinedocs/gcc, is the gnu.org’s official guides to GNU compilers, this webpage is as fully complete and as up-to-date as the FSF can make it. It seems a bit too complex for Beginners to proceed very far beyond the basic ‘Invoking GCC – GCC Command Options’ though.
The gcc(1) and g++(1) man[ual] reference pages.
Their SYNOPSES and DESCRIPTIONS sections seem to be the most useful, although their OPTIONS sections can be overwhelming with the vast number of listed options for both gcc and g++.
III. Using an IDE
Instead of creating and testing C/C++ programs through the three-step manual method just described above, I have also discovered a few Integrated Developmental Environments (IDEs) for Linux to handle C/C++ program development all the way from editing C/C++ source code to correcting syntax, compiling, linking, full debugging amd code optimizations.
Using a C/C++ IDE also goes a long way to relieving the need for Beginners to venture too heavily into the more Advanced-level programming processes of contimually running the gcc/binutils toolchain, ‘make’ and ‘gdb’ to create Linux system binaries.
The Comparison of integrated development environments for C/C++.
Besides the chart comparing IDEs for C/C++, there are also charts above and below this C/C++ chart comparing IDEs for Perl, Python, Java and a whole host of additional programming languages.
The Code::Blocks open source, cross platform, free C++ IDE.
Although Code::Blocks is listed as a “C++” IDE, it still quite readily uses gcc for compiling C programs as well. Code::Blocks is distributed under the GPL.
Good news this start-of-year 2012 for some of us Linux DIY tinkerers:
The little Raspberry Pi device is set to be released soon.
The Raspberry Pi comes as a Printed Circuit Board with a processing System on a Chip (also known as a PCB with a SoC). Already eBay is auctioning off the first Beta releases of these boards, see Raspberry Pi – first 10 on eBay!
What’s a Raspberry Pi?
( NO, NO, NO, a “raspberry pi” is NOT your typical sound of Thhhbbbbbbbbtttt or Tphttphttphtphtphtphtpht or :)~ +plus+ the Greek letter for the infamous mathematical Euclidean constant near 3.14 !!! )
The Raspberry Pi is actually a credit-card sized computer that plugs into your TV and a keyboard. It’s a capable little PC which can be used for many of the things your desktop PC does, like spreadsheets, word-processing and games. It also plays high-definition video. We [the Raspberry Pi creators] want to see it being used by kids all over the world to learn programming.
(this from the Raspberry Pi FAQs webpage )
The main Raspberry Pi website is http://www.raspberrypi.org and here is a nice video of Raspberry Pi Foundation’s Executive Director Eben Upton describing and demonstrating the Pi model “B” beta PCBs that are to be auctioned off (in his “blimey mate” UK accent)
Key Features of the Raspberry Pi “B” Model:
It is projected to cost $35 USD, it comes with 256MB onboard RAM, and it has built-in 10/100 wired Ethernet capability.
It measures 85.60mm x 53.98mm x 17mm (that’s 3.37″ x 2.125″ for its two major dimensions), with a little overlap for the SD card and connectors which project over the edges. It weighs 45g.
Its main processor is a 700MHz-speed ARM11 Broadcom BCM2835 SoC.
Power to the board (Power to The Peopletoo!) is through a 5V micro USB power supply.
The disk used to boot and load an OS on the Pi is a standard-profile SD card. Debian GNU/Linux has already been preloaded onto SD cards and tested for Beta versions of the Pi board. Fedora and ArchLinux have purportedly been SD-preloaded as well. Ubuntu, however, has apparently not yet committed to fully supporting the device at this time, due to issues with newer releases of Ubuntu and the ARM processor the Raspberry Pi Foundation is using.
External storage (semi-permanent), mice, keyboards, wireless adapters, and other add-ons will all connect to the Pi via an external USB expansion hub (non-supplied) attached to the Pi’s single built-in USB 2.0 root hub. Further USB add-on devices will connect to the Pi through one or more additionally-supplied USB hubs connected to the first.
There is composite and HDMI built into the Pi board, so you can hook it up to a digital or analogue television or to a DVI monitor. There is no VGA support, but adaptors are available.
The Pi’s standard 3.5mm jack provides audio to your speakers or headphones.
Cool little tchotchke, eh?
Note that covering-cases are not yet easily available for the Pi, although vendors will probably offer these in the future depending upon how successful the Pi becomes.
DIY’ers might want to use easily-malleable materials to make or mod their own Pi cases, e.g., using wood, plastic, metal or whatever else is suitable for the task.
—————————————
Here is one my first estimates of the breakdown and total cost of a complete computer system using the Pi board (prices in USD):
+ $35 for the Pi “B” board itself
+ $40 for a used, budget-conscious LCD monitor with VGA
+ $30 for the cost of a discounted wireless USB adapter
+ $30 for the cost of a discounted 4-port USB 2.0 hub
+ $20 for the cost of a discounted 4GB SD card
+ $20 for the costs of a used and discounted USB keyboard and USB mouse
+ $20 for the cost of a HDMI-to-VGA converter
+ $10 for the cost of a 4GB USB thumbdrive used for semi-permanent storage
+ $40 for Taxes plus Shipping & Handling of all the above, if ordered from an outside vendor
+ costs for any extra materials & labor (e.g., for constructing a case)
===
~ $250 Total
I’m uncertain exactly HOW realistic this first estimate actually is.
Of course, you would pay far less than this estimate if you already HAVE these items laying around -or- you can get these for far less than the above estimate via eBay/Amazon/Craigslist/other-online/local venues. Then again, maybe my above first estimate may be an UNDERestimate and you might have to pay more. I suspect that most longtime computer techies already having most of the equipment listed here will realistically have substantially lower total costs for the above-listed items; probably well below $100.
—————————————
I’m further guessing that if a complete computer system containing a Pi board falls well below an $80 pricepoint (e.g., due to mass-production, consolidation of components and deep depreciation of component costs), then such a computer system would be a good deal and more and more persons will want to jump on board, so to speak :-D.
Feedback on all this from anyone reading this post?
For those of you on Google+, you can now find BerkeleyLUG at: http://goo.gl/a7UQo – go ahead and circle us! For those of you not on Google+, carry on carry on….
Is Linux so inconceivable that it is hard for users to say thank you? In her podcast Why don’t more people say thank you?, Cathy Malmrose does a great job telling her own story as an analogy for trying to understand the Linux user community. Cathy is the CEO of Zareaon right here in Berkeley and a supporter of BerkeleyLUG. Please let her know your thoughts and/or comment here.
Research is beginning to show that gratitude is a learned skill that can be improved with practice. I think this hour long 2009 Google Tech Talk by Richard J. Davidson is worth the effort. The Charter for Compassion focuses on the global scale.
As it is the 4th Sunday of the month I hope the meeting from noon – three at Bobby G’s Pizzeria goes well today. The second Sunday of December is the 11th. As the fourth Sunday falls on Christmas day I think it’s safe to say that the meeting is canceled. After the 11th we will next see you on Sun, Jan 8th.