Archive for the 'Linux' Category
Automatic backups with UDEV
I recently challenged myself to come up with a way to make udev automatically backup when you plug in a USB harddrive. I did all my testing with a USB stick drive, but since they both show up as block devices to the kernel, it shouldn’t matter.
UDEV Rules
To start with, we need to set up static naming for the storage device that you want to make into backup disk. Start by plugging in the disk. (Now I’m not using Gnome or KDE so I’m not sure what their automounter will do. So, you might have to find a way to exclude it from the automounter. We need to find out the “model” of the drive. My udev rules are pretty basic, and will work since most people don’t have more than one the same model of USB drive laying around that they would use. You can always modify the udev rules to work for you.
udevadm info -a -p /sys/block/sdc | grep model
Here we are looking at the block device sdc (which is what the kernel named it since we don’t have any udev rules yet). This could change depending on how many block devices you currently have. Now we take this information, and feed it into a udev rule. I created a file /etc/udev/rules.d/50-backup.rules The name isn’t really important, however, the number 50- is. That is the order in which it runs. We want that number to be less than 90 so that hal doesn’t run first. Inside that file, we have the following:
KERNEL==”sd?1″, SUBSYSTEM==”block”, ATTRS{model}==”MODEL GOES HERE”, SYMLINK+=”backup”, RUN+=”/usr/local/bin/backup.sh”
Replace “MODEL GOES HERE” with the output from the udevadm command
The backup script
Now we udev running our script /usr/local/bin/backup.sh we need to make that script
#!/bin/bash NOTIFYUSER="pcon" MAINDIR="/home/pcon/" BACKUPDIR="/mnt/backup" su $NOTIFYUSER alt-notify-send backup "Waiting for things to settle" 0 sleep 5 su $NOTIFYUSER alt-notify-send backup "Starting backup" 0 echo "$(date) - Mounting /dev/backup to $BACKUPDIR" > /tmp/backup.log mount /dev/backup $BACKUPDIR >> /tmp/backup.log 2>&1 echo "$(date) - Staring rsync of $MAINDIR to $BACKUPDIR" >> /tmp/backup.log rsync -arvuz --inplace --delete $MAINDIR $BACKUPDIR >> /tmp/backup.log 2>&1 echo "$(date) - Mounting /dev/backup to $BACKUPDIR" >> /tmp/backup.log umount $BACKUPDIR >> /tmp/backup.log 2>&1 su $NOTIFYUSER alt-notify-send backup "Backup completed" 0
We have a couple of things to setup here. First we need to create /mnt/backup as root, and fill out the other variables in the top of the script. Aslo, if we want notification in gnome, we need to make a notify-send work around. Put the following in /usr/local/bin/alt-notify-send
#!/bin/sh
user=`whoami`
pids=`pgrep -u $user gnome-panel`
title=$1
text=$2
timeout=$3
if [ -z "$title" ]; then
echo You need to give me a title >&2
exit 1
fi
if [ -z "$text" ]; then
text=$title
fi
if [ -z "$timeout" ]; then
timeout=60000
fi
for pid in $pids; do
# find DBUS session bus for this session
DBUS_SESSION_BUS_ADDRESS=`grep -z DBUS_SESSION_BUS_ADDRESS \
/proc/$pid/environ | sed -e 's/DBUS_SESSION_BUS_ADDRESS=//'`
# use it
DBUS_SESSION_BUS_ADDRESS=$DBUS_SESSION_BUS_ADDRESS \
notify-send -u low -t $timeout "$title" "$text"
done
Now chmod +x the two scripts, and everything should be good to go. You can download the scripts used in this post below:
- 50-backup.rules
- backup.sh
- alt-notify-send (Taken from here)
2 comments
External programs that update screen
Screen is a great tool, and it allows you do to alot of neat things. One of my favorites is binding commands to key strokes. So all you have to do is hit F5 and it will start something in the background. Such as a build command. The problem is, you either get no output, or you get spam all over your screen. Well I’ve finally found a way around that. The answer lies in ANSI Privacy Messages.
In your .screenrc, make sure you have a place that will show messages. If you start up screen and you see “New screen…” then you’ve got this. Next add your script to your .screenrc
bind -k k5 exec /home/pcon/bin/build_script.sh
Now everything in your screen is ready to go. Now, on to build_script.sh
#!/bin/bash
echo -n -e “\033^Starting Build\033\\”
# Do something here
echo -n -e “\033^Ending Build\033\\”
That’s it. Now your screen will display “Starting Build” and “Ending Build” on your display. If the stuff in between happens too fast, you may only see your last message. The key thing is that your message has to start with “\033^” and end with “\033\\” otherwise you’ll loose your cursor. And you have to have the -e on the echo so that it will interpret the octal codes correctly.
No commentsirssi + mumbles == push notification goodness
One of the biggest problems with irssi is that if you run it on remote machine, it can be quite hard to get notifications. For the past couple of years, I’ve been running a plugin called fnotify that writes notifications to a file, then using another script I read that file and print it out with libnotify. There are a couple of problems with this:
- libnotify is ugly
- takes up diskspace if you don’t clear the queue
- requires you to either have the script, or remember the ridiculously long command
Well, these are things of the past. Thanks to mumbles!
First install mumbles from yum (or source) then install the irssi script. Make sure you change the growl_server and growl_password then you are good to go. The script has a dependency on Net::GrowlNotify in perl.
The script uses irssi config variables so you can use /SET growl_server or /SET growl_password to set your growl server/password without having to load/unload the script.
No commentsDVD player with xsessions
I’ve come across the need to simply the dvd playing process. I’m having to set up a laptop to play a dvd and use a remote presenter control. Now in the past I’ve just been in charge of this setup, and haven’t had to worry about explaining how to start it up for others. This time, I need to make it as user friendly as possible. So, I’ve decided to do this with a couple of bash scripts and a couple of xsessions.
Goals
- Generic user with a generic password to hand to the person in charge
- Ability to play dvd stored locally. (Called presentation_dvd)
- Ability to play any dvd inserted.
- Require no user input except to choose presentation_dvd or dvd
Preperation
To get ready, we need to do a couple of things
- Create a presenter user
- Install xine and xine-lib-extras-freeworld
- Copy our presentation_dvd to an iso
dd if=/dev/dvd of=/home/presenter/presentation_dvd.iso
Xesssions
Xsessions are what defines your window manager. It’s what tells X11 what to run when you say Session->Gnome or Session->fluxbox. These files are stored in /usr/share/xsessions.
[Desktop Entry]
Encoding=UTF-8
Name=Presentation_DVD
Comment=Start the presentation DVD
Exec=/usr/local/bin/presentation_dvd
Terminal=False[Window Manager]
SessionManaged=true
This is our file in /usr/share/xesssions/presentation_dvd.desktop We then create one in /usr/share/xesssions/dvd.desktop and replace presentation_dvd with dvd.
The Scripts
Our /usr/local/bin/presentation_dvd looks like this:
#!bin/bash
amixer set Master playback 100%
xine -f -g –no-splash dvd:/home/presenter/presentation_dvd.iso
This will turn the volume up to 100% and then start xine on the iso. To exit, just right click and say exit. This will take you back to the login screen.
Now to handle any dvd with the /usr/local/bin/dvd
#!/bin/bash
amixer set Master playback 100%
xine -f -g –no-splash dvd://
And the final touch, make them both executable
chmod a+x /usr/local/bin/dvd /usr/local/bin/presentation_dvd
NOTE: The xine parameter is dash dash no dash splash. The font I’m using doesn’t render two dashes well
Usage
From the login menu, choose your presenter user, and then choose the appropriate session at the bottom. Then type in the password. Like magic, everything should work.
Potential problems
If you don’t see your session in the list, you might have a typo in your xsession file
If one of the xine scripts don’t work, try logging into gnome and running the script from the command-line to see why.
No commentsTF2 Server
Just setup a TF2 server following this article
In Fedora, you need to do the following as root before running any of the commands from the article
ln -s /usr/bin/gunzip /usr/bin/uncompress
Now. To figure out how the server.cfg
No commentsMutt and Lynx
So, in my time with mutt, I have grown to have a disdain for people that send HTML only email. And surprisingly, this happens alot! So, instead of trying to change the world, I’ve decided to just use mutt and lynx to my advantage and call it a day. Thanks to one of my co-workers for showing me how to do this.
At the end of your ~/.mailcap file, add the following
text/html; lynx -dump -width=78 -nolist %s | sed ’s/^Â Â //’; copiousoutput; needsterminal; nametemplate=%s.html
Then, in the ~/.muttrc add
auto_view text/x-vcard text/html text/enriched
And restart mutt. This will use lynx to render the email. You can substitute lynx for any text-based html browser you’d like.
No commentsReverse Alias in mutt
A need has arisen here recently for me to need to “change” the headers on an email, so I can tell two people at work apart. Both have their name in the email header the same. Let’s call them “John Doe.” So in order to tell them apart, I’ve added a reverse alias rule to mutt to handle this. First enable the use of them by using
set reverse_alias
Then set up the alias. This can be added to your alias file, or straight into your .muttrc
alias fake_john john_doe2@example.com (Fake John Doe)
Now all mail that comes in from john_doe2@example.com will show up as from “Fake John Doe” but the headers will remain the same, and no one is the wiser.
No commentsWeb Apps to Desktop Apps
Something I’ve found very interesting, is the recent trend to move apps away from the desktop, and out into the “cloud.” Now, for the most part I agree with this. I rejoiced the day I moved from a pop3 account to an imap account. And then rejoiced again, when I moved my mail hosting to Google Apps. This is just the way most things are moving. Most people don’t need apps outside of email and word processing. And if that information can be stored in the cloud then that means I don’t have to be without my documents.
That brings me to the real point. If you haven’t gotten a chance to check out some of the apps that make desktop apps out of web apps, try them.
- I like fluid for OSX, it seems a little more full featured
- Then Prism is looking really promising for all platforms (yes, even linux)
Perpetual Screen Part Deux
So, I’ve figured out how to add in a “fail-safe” to the perpetual screen, so that if you want to ssh without starting screen you can. And it’s pretty easy. First add the following to your sshd_config and restart ssh
AcceptEnv NO_SCREEN
Then add the following to the bottom of you .bashrc:Â Â (Note: I named my screen ‘main’ you can name yours whatever you want)
NO_SCREEN=`echo "."$NO_SCREEN`
# Hack to get around if the variable is not set
if [ $TERM = "screen" ]
# If we are already in a screen do nothing
then
echo -n ""
elif [ $TERM = "dumb" ]
# If we are using scp do nothing
then
echo -n ""
elif [ $NO_SCREEN = ".true" ]
# Our fail safe to ssh w/o screen
then
echo -n ""
else
# Startup screen
screen -Rd main && exit
fi
Then, you can either ssh like normal to start the screen, or do the following to login without screen starting
export NO_SCREEN=”true”
ssh -o “SendEnv NO_SCREEN” user@host
Works like a champ
No commentsCombining pdf with linux via the command-line
I’ve always found a need for this, and with some digging, I’ve found a couple of ways to do this. The simplist is with ImageMagik, but I’ve found the default values leave the quality a little lacking. However, I’ve found an article that uses GhostScript to do it, and it does a wonderful job.
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=output.pdf input1.pdf input2.pdf
They suggest putting it in an alias, but I’ve gone a step further and just put it in a bash script in ~/bin/combinepdf
#!/bin/bash
if [ $# -le 1 ]
then
echo "usage: combinepdf output.pdf input1.pdf ... inputN.pdf"
exit -1
fi
OUTPUT=$1
if [ -e $OUTPUT ]
then
echo "Output file \"$OUTPUT\" exists"
exit -1
fi
fnum=2
INPUT="$2"
ARGV=( $@ )
while [ $fnum -lt $# ]
do
INPUT=`echo $INPUT" "${ARGV[$fnum]}`
let "fnum += 1"
done
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=$OUTPUT $INPUT
Then chmod a+x ~/bin/combinepdf and then run it.
No comments