Ubuntu Update Manager Log
The location of the log file which shows you what you have updated with the Update Manager in Ubuntu is:
/var/log/apt/term.log
It was useful for me, it might be for you.
The location of the log file which shows you what you have updated with the Update Manager in Ubuntu is:
/var/log/apt/term.log
It was useful for me, it might be for you.
When I was running Ubuntu 7.10 (Gutsy Gibon) the wireless card on my Macbook Pro was not recognised so I installed Madwifi to get it working. When I upgraded to 8.04 (Hardy Heron) everything still worked fine (whether this was because Madwifi was still in use or because 8.04 has the right drivers for the wireless card I am unsure) but with the update which I installed on 11/07/2008 once I had restarted my computer my wireless card was no longer accessible. Luckily I found this great tutorial from http://ubuntu-tutorials.com a while ago which I mentioned while talking about setting up 7.10 on a Macbook Pro and this solved the problem and got my wireless card working again. The previous settings were saved which makes me think Madwifi has been fine all along until the 11/07/2008 Ubuntu update. Looking in the Update Manager log file at /var/log/apt/term.log for there were a fair few updates and replacement but I don’t know what most of them are so I can’t specifically say what happened - anyone who might know and wants the look at the log file get in touch.
Run all that through terminal and you’re sorted.
Thanks to Christer Edwards of http://ubuntu-tutorials.com and Madwifi for this.
I wanted to rename a number of JPG files in a directory and I wanted to use BASH as it is amazing powerful yet I don’t understand it as well as I want, so I took the time to find a method shown on numerous forums and sites and then understand what it is doing. Here is the script, or line I used:
for f in `find . -name ‘*.JPG’` ; do mv $f ${f/DSC/ODSC}; done
To break it down:
for f
This starts a for loop with the variable f, also refered to as $f (the $ means variable)
in
This sets the value of $f to be the output of:
'find . -name '*.JPG'' ;
Which will find and return filenames which adhear to the expression *.JPG (* is used as a wildcard and means any number of any characters) so blah.JPG, DSC0001.JPG, owt.JPG and so on will all be returned.
do mv $f ${f/DSC/ODSC};
Will rename the part of the filename inputted, in this case the variable $f (which is set to what ever find returned), to something else. In this example it is replacing any instance of DSC with ODSC. By preceeding mv with the BSD general command do, mv can be executed from within the running shell process which is this script.
done
This will end the for loop.
I have used various types of loops in PHP and a few other languages and in BASH the following is relevant and very useful to know when structuring a loop:
SYNOPSIS
for start test next bodyThe for command first invokes the Tcl interpreter to execute start. Then it repeatedly evaluates test as an expression; if the result is non-zero it invokes the Tcl interpreter on body, then invokes the Tcl interpreter on next, then repeats the loop. The command terminates when test evaluates to 0.
Entry for ‘For’ from the BASH Manual
As such, the script I have used can be split into these 4 components of start, test, next and body and indeed I find it easier to understand the process and what each stage of the loop does in this manner.
BASH IT UP.. Now I need to write a script which renames all JPG files in a folder to *0001 sequentially. Or to extract date and time information, order the files oldest to newest and then rename the files in that new order sequentially. That would be tops for sorting out photos from my phone back to date order and have no filename conflicts.
So here it is:
exiftool "-FileName<CreateDate" -d "%Y%m%d_%H%M%S.%%e" /Volumes/Media/K800
And the output is in this format: 20080121_185309.JPG
Using ExifTool by Phil Harvey (you legend) which has very powerful date formatting abilities you can read the EXIF Creation Date field from a file and rename that file with that information, or in this case a formatted version of it. Saves using sed which is great and works very well in a whole directory.