Meeting-2013-04-27

There will be a meeting Saturday, April 27th, 2013, 10:00am, at the Pleasant Ridge Branch of the Cincinnati Public Library, located at 6233 Montgomery Road, Cincinnati, OH

Google Maps Goodness

This is the first page of the current Cincinnati Linux User Group (CLUG) website. I am parsing the last backup of the old site to restore as much as I can.

This month’s meeting will be a talk about our website!

Think about what you want it to look like, what it should contain, what sort of content would make you return again and again.

Thank you and hope to see you at the meeting!

Steve Jones

PS, I told a couple people that this meeting would be about something else, sorry about that!

Future Edits

About Us page
Library page
After meeting social
Membership page
Meeting location
Calendar
Links page
Funny Pictures page

Backup and restore all your packages on Debian based machines.

So, you’re somebody that plays a lot with Linux?
Create a script that runs weekly or so with the commands below, and you’ll always be prepared for the worst that life can toss your direction!
Okay, that might be overly optimistic, but it can’t hurt, and can save you a ton of time when you rebuild a machine.


#!/bin/bash
# SRJ 2008-09-03
mkdir SourcesAndPackages
cd SourcesAndPackages
dpkg --get-selections | grep -v deinstall > InstalledPackages.txt
cp -a /etc/apt .
# Comment out the lines above and uncomment the lines below to restore.
# cd SourcesAndPackages
# sudo cp -a apt /etc/
# sudo apt-get update
# sudo apt-get dist-upgrade
# sudo dpkg --set-selections < InstalledPackages.txt # sudo apt-get dselect-upgrade