Ubuntu-Arizona Weekly Newsletter, Issue #93

Welcome to the Ubuntu-Arizona Weekly Newsletter, Issue #93 for the week May 4, May 10.

* Arizona Loco Newsletter
* Ninety Third Edition
* Powered by Ubuntu
* Wednesday-May 13, 2009
* Arizona Loco Team Wiki: https://wiki.ubuntu.com/ArizonaTeam

* Next meeting: Sunday May 17, 2009 9:00 PM
* Server: Freenode: IRC Channel #ubuntu-us-az

In this Issue

* tyche started the meeting with introductions of new members: hobbit1 and dennisk

* Four announcements including: johnc4510 out of communication due to power outage in Joplin, Mo., BugSquad’s first monthly meeting, Release of version 2.0 of byobu, a blogger declares that Ubuntu is a failure in India and specificies why.

* PLUG announcements: dennisk’s summer class, PLUG east side meeting Thursday, BlenderCAD event weekly on Sundays, MCC graduates getting their degree in Linux Networking, Both Stamtische are next week, Tuesday and Wednesday.

Read the whole thing at https://wiki.ubuntu.com/ArizonaTeam/Newsletters/09AMay13

Ubuntu-Arizona Weekly Newsletter, Issue #92

Welcome to the Ubuntu-Arizona Weekly Newsletter, Issue #92 for the week April 27, May 3.

* Arizona Loco Newsletter
* Ninety Second Edition
* Powered by Ubuntu
* Wednesday-May 6, 2009
* Arizona Loco Team Wiki: https://wiki.ubuntu.com/ArizonaTeam

* Next meeting: Sunday May 10, 2009 9:00 PM
* Server: Freenode: IRC Channel #ubuntu-us-az

In this Issue

* Two announcements: Karmic Koala Open for Development and Ubuntu Open Week finished up last Friday.

* johnc4510 talked about applying for the System 76er LoCo program, and reintroduced the flyer we’ve dabbled with so far, http://www.flickr.com/photos/22090195@N03/3441797261/ , Shipment of CDs should be in his hands Monday.

* PLUG announcements: PLUG devel meeting on Thursday (http://PLUG.phoenix.az.us/node/562), PLUG security hackfest Saturday at UAT (http://PLUG.phoenix.az.us/node/656), Next week’s PLUG East side meeting is on OpenStreetMaps.

* calimer then made a couple of announcements: SandBox has a facebook group now. http://www.facebook.com/group.php?gid=75607847110 . They recently released an RPG that his afterschool club worked on, and displayed it at RPI college (New York State).

Read the whole thing at https://wiki.ubuntu.com/ArizonaTeam/Newsletters/09AMay6

SSH Script For Shell account

This script has been asked of me several times. It is a quick little script to have on your computer to assist in logging into your existing shell account on our server. Just place the following text into a file. Be sure to make the file executable and have the file in your path so you can just type its name into a terminal and have it run.

1. Open terminal (Applications < Accessories < Terminal) 2. Type "mkdir bin" this will create a folder called bin in your home directory. It is supposed to be included in your executable path if it exists. 3. Type "cd bin" 4. Type "vim ubuntuaz" 5. Type "i" for input mode 6. Copy and paste text below by highlighting and using right clicks to select copy and paste #!/bin/sh clear echo "Username on Ubuntuaz: " read user_name ssh $user_name@azloco.com 7. Hit Esc button 8. Hit buttons "Shift + zz" to save and exit 9. Type "chmod 700 ubuntuaz" to make your new file executable Read more