Thu Aug 08, 2013 5:00 am
Thu Aug 08, 2013 9:54 pm
Fri Aug 09, 2013 2:34 am
fsmithred wrote:Nice work. I remember when I started using commands without looking them up first, and this may sound really geeky, but it was exciting. Not as exciting as the first time I tried downhill skiing, but there was a similar sense of accomplishment.
fsmithred wrote:Any formatting or labeling you do in gparted will be overwritten by the script. A future version will probably have a "do not format" option. Current versions (gui only) do let you use disk labels.
fsmithred wrote:I think suspend needs power, because the state of the system is stored in memory. Maybe you want hibernate, which saves to disk and should power off the machine.
fsmithred wrote:Uh, the wheezy stable you tried was debian-live? Refracta doesn't have vlc, but it's one of the first things I add to my own installations. I can play dvds fine here, the dvd menu works. Extra packages needed for that are libdvdnav, libdvdread4, and libdvdcss2 (last one from deb-multimedia).
Sun Aug 11, 2013 3:35 pm
#!/usr/bin/env bash
# compare-package-lists
# Do this to create the lists:
# dpkg -l | grep "ii" | awk '{ print $2 }' > list
# Usage:
# compare-package-lists list1 list2
list1="$1"
list2="$2"
while read -r line; do
if ! $(grep -q "$line" "$list2"); then
echo "$line" is missing >> list_comparison
fi
done < "$list1"
exit 0
Tue Aug 13, 2013 4:27 pm
Tue Aug 13, 2013 5:35 pm
dpkg -l | grep "ii" | awk '{ print $2 }' > list
Tue Aug 13, 2013 6:18 pm