|
email: sjh@svana.org web: http://svana.org/sjh Other online diaries:
Aaron Broughton, Links:
Linux Weekly News, Canberra Weather: forecast, radar.
planet sjh
Categories:
|
Thu, 25 Sep 2008
Doing it backwards or unlink returning ENOSPC - 16:28
Due to the way snapshots work on ZFS there is a possibility you will get an ENOSPC returned when trying to unlink (rm) a file. This is of course completely reversed from the intuition most people will have, to free up space remove some files. Out of curiosity I looked in the unlink man page on Linux and in the rm source code on Linux, at a cursory glance neither of them will deal with ENOSPC (unlink does not mention it as an error). Without testing my guess is that in such a case unlink (2) would return EIO. Fri, 18 Jul 2008
Obscurity, P=NP etc, Hash Visualisation - 16:00
It is interesting to see some companies such as Kryptonite eventually reacted, others seem intent on denying public information, or trying to shut down people who know about it. In computing it is a well known fact (although still ignored by too many people/companies) that security through obscurity will not work, public design and analysis by experts in the field however does work and should be used for things that need to be secure. Although one aspect that comes to mind here is that in the case of locks you may not want to make them impossible as other attack vectors are then used. As the article mentions crooks seem to prefer using a hammer (or maybe explosives) over opening the locks through lock exploits. There were some discussions about this in the car that were I think linked to by Schneier a few years back. Next was an interesting wikipedia page linked to by kottke, a list of unsolved problems from a number of different field, those listed in Computing are familiar, however looking through the collected information on those in other fields is pretty fascinating. Mmmmmm wikipedia goodness. Catching up on some LWN reading and I see the mention of a new OpenSSH version approaching, in the list of new features is "Experimental SSH fingerprint visualisation" with a paper (pdf) linked. So I download and had a read of the paper, largely to see what sort of images they generate. It is good to see some work on what is one of the biggest security weaknesses out there, the humans using secure systems. Tue, 08 Jul 2008
How to capture one image from a v4l2 device - 17:22
"gst-launch-0.10 v4l2src ! video/x-raw-yuv,width=640,height=480 ! ffmpegcolorspace ! pngenc ! filesink location=foo.png" As one command captures the image at that resolution into a file foo.png. This is on my laptop, however I tested this with the QuickCam 9000 on my desktop with a resolution of 1600x1200 and it worked, the focus meant it took a while but it popped out a good image. Gstreamer really is cool, I still remember seeing Federico talk about GMF (Gnome Media Framework, which is what became GStreamer) at CALU in 1999 and being excited by it. Fri, 13 Jun 2008
Interest in data from an email spike - 13:56
I can not find the department NTEU person to learn if there are any numbers on how many staff on campus are actually union members, nor can I get hold of the campus wide email system admin people so I can not predict how much this hit storage and network load on the email systems campus wide. I could do some analysis on the department email server, though I am not sure if that would provide much insight. As I suspect there are a fairly large number of union members on campus and they all will have received this email as it is valid email and will have come in through the spam filters. Thu, 29 May 2008
Some system config updates - 15:39
After lots of mucking around with fontconfig and other things trying to track down the issue, Tony suggested I look at the resolution for fonts in GNOME System -> Preferences -> Appearance :: Fonts :: Details wondering what my DPI for fonts was set to. His was set to 96, mine however was at 112. So I changed this and all of a sudden the font in gnome-terminal could look identical to my xterm fixed font. Rock on, something I should share with the world here in case it comes up for others. Getting the font size right in the terminal application is important as my brain is so used to a certain look there. On another note I should probably stop bagging the nvidia setup as much as I have been, sure it is a pain I can not use xrandr commands to automatically do funky stuff in a scripted environment, however I can at least use the gooey tool nvidia-settings to do the stuff I want, even if it is not as nice as doing things automatically. Still it sure would be nice if nvidia opened up and allowed open source development with full specs to the hardware. If this laptop had been available with the Intel chipset I would have specced it with that for sure. Wed, 28 May 2008
Yet another sign I may work with computers - 18:26
Mon, 26 May 2008
Mon, 19 May 2008
Little laptops that can - 18:15
All this in such a small package is mind boggling to pretty much anyone who has been around computers since 486 or earlier model chips powered most PCs. I doubt I will be getting any Heidelberg Scars now. Thu, 08 May 2008
Move a little thing to python - 13:44
Sometime last year I realised that though the URL I was using on the ANU Internal Web still worked it seemed not to interface with the latest phone database for the uni so it sometimes did not match people I knew worked on campus, other times it contained out of date numbers for people. However there were other important uses for my time so I did not bother looking too closely into updating it when most of the time the old results were still good enough. Finally this week Bob noticed there were no matches coming back, it seems the old interface no longer connected to the database correctly. Thus I opened the program and had a look at updating it. The old program used LWP to fetch the page with a GET request. The newer interface now on ANU Web works properly with a POST request. Also the result page is more complex to parse than the old one (more complex regular expressions, or maybe a small state machine needed). Still it did not look too hard to spend an hour or so fixing the old perl code up to get the new page and parse it properly for the desired results. However I hit a snag when for some reason LWP did not fetch the entire result from the web server that was returning the data in chunks. A tcpdump session showed it simply closed the request rather then fetch all the data. At this point I could have debugged the perl code and fixed, after all there is no good reason LWP should not work. However I thought to myself, I have been keen to write python a bit for a while. Bob bought the Mark Lutz Programming Python book for my office and I read through about half of it. So why not rewrite the program in python. See how a perl hacker can transfer to using python at least for a small program. I am happy to say that the page fetching in python even made perl look complex, the code that did the job (and worked, doing a post request fine) was
name = ' '.join(sys.argv[1:])
params = urllib.urlencode({'stype': 'Staff Directory', 'button': 'Search', 'querytext': name})
f = urllib.urlopen(searchuri, params)
r = f.read()
Cool I thought, this is hell easy, what a fantastic language, I will forever give up my perl ways if everything is this easy and obvious. Obviously this was not going to last, I guess partly because my brain meshes with perl well after so many years, and I am used to perl associative arrays, classes, modules, and regular expressions. Anyway I now had my result from the search and all I had to do was parse it and extract a form that can be printed on a terminal nicely. First I tried using the python regular expression matching and needed to create some hideous regexp to match the data returned. I also discovered that when a search matches more than about 2 people the data is returned in a different format. Fortunately in this second case the format is really easy to match against with a regexp. Even though the regexp language is similar/identical to perl I was still getting my head around the documentation for all of what I was doing and could not at first construct a regexp that made sense to parse the first sort of data. So I decided to get a HTMLParser and extract the data I wanted without the crap in the tags. My first attempt was to use the HTMLParser module, however I soon found that this threw an exception when ever I fed it the page from the uni with the matches in it. I tried except: pass in the hopes it would keep on going, however it stopped there and did not process the rest of the page. So I had to change to using the htmllib.HTMLParser which was almost identically easy to use and managed to process the entire page. Next I wanted to store the data until all matches were found, in perl this would be trivial using a multiple level hash or an array of hashes. Of course the most obvious way to do this in python now I think about it is using a list of dicts. However I had my brain stuck on using a multi level hash. I found this was most difficult in python as you need to initialise dict entries and can not simply assign arbitrarily into them when you need. I needed to use the following construct.
if (D.has_key (key1) == 0):
(D[key1]) = {}
if ((D[key1]).has_key (key2) == 0):
D[key1][key2] = ''
s = D[key1][key2]
D[key1][key2] = s + data
Which is obviously a bit more verbose than the perl vernacular of $H{key1}{key2} = $s; I think that dicts do not yet work this easily is a problem, however someone has assured me that future python releases will have dicts that can work as easily as a perl hacker would expect. Anyway rather than next go on to the now obvious that I thought about it list of dicts I was still stuck on the idea of using a pair of keys to access some value, thus a tuple seemed obvious to store the data in a dict still. However this meant that when I extract the values from the dict I can not simply use len on the dict collection as it does not accurately reflect the number of records. Which of course was the perfect chance to go and learn how to use map and lambda in python, after all I use map in perl often and it really is lovely to have functional capabilities in a language you program in. Using a number as one of the record keys I was then able to have constructs such as (after refactoring to list of dicts I did not need the high = expression and modified the second expression slightly)
high = max (map (lambda k: k[0], D.keys()))and name, phone, address = map (lambda k: D[(i,k)],['Name', 'Phone', 'Address']) The first to find the number of records from the numeric key and the second to extract the information I was interested in printing. The second especially is often used in perl to extract matches with a [0..N] or range(N) sort of thing when you get things with multiple function calls into a list. Such as the perl expression
my @emails = map { $res->getvalue ($_,0); } (0..$res->ntuples-1);
The final problem I had was when printing the data, in perl and c I can do
printf ("%-20s %-12s %46s", name, phone, address)
However in python the string formatting in print did not justify or cut off
arguments as expected. Also string.rjust and string.ljust did not limit the
size of strings if they were larger than the field size. So I needed to do the
following.
print "%s %s %s" % (name[0:30].ljust(30), \
phone.rjust(12), \
address[0:45].rjust(45))
That final concern is not really a problem, and arguably clearer as to what is going on than using printf formatting as a c programmer is used to. Anyway if anyone who works at ANU wants to use this from a command line or anyone wants to see it I have it online for download/viewing. There may be a few places I can clean this up better, and the version online is stripped of comments. I can understand how people like the way python works, the code really is almost like pseudo code in many ways, it does most of the time work the way you expect it to, it is a little hard to wrap my perl oriented brain around, however that does not take long to work around I expect. Also anyone complaining about whitespace formatting in python, IMO you are deranged, it really is not an issue needing to use whitespace for program layout. Thu, 01 May 2008
Another Ubuntu annoyance - 22:03
Unfortunately in Ubuntu there is no way to disable this in grub, the uuid change is hard coded into update-grub in /usr/sbin. At least in Debian it is still optional. Anyway I had forgotten to modify update-grub to remove the uuid stuff and had installed a new kernel on a student server, then reboot the machine and hey presto it did not come back online. If it were not for the need to run this server on Ubuntu to be similar to the lab image and easy environment for a student to duplicate at home it would be so much easier to run Debian on it again. Of course to compound the issue this was a server I had to wait until after normal hours to take offline so I was messing around with after 7pm. Mon, 28 Apr 2008
Update on deb package archive clearing. - 14:44
They all have a 100 Mbit (or better) link to the mirror, and it seems silly to have them using local disk storage once an entire successful apt run is finished. Andrew suggested the Dpkg::Post-Invoke rule could be used to run apt-get clean, my understanding upon reading the documentation last week was that would run clean after every individual deb package as installed. I guess it is likely when installing large numbers it may not be run until after the post-inst script, however without looking close it appeared to me it may mess up install processes somehow. I may have gotten that intuition wrong, however as pointed out in the other online response it will not work for some use cases. It still seems the only current way to solve this is to add apt-get clean to cron (or of course write a patch for apt that allows a Apt::Install-Success::Post method or something), not really a huge problem for now, however as I said strangely different to dselect and my expected capabilities. Wed, 23 Apr 2008
Keeping /var/cache/apt/archives empty. - 13:02
So I had a look at the apt.conf and apt-get documentation and /usr/share/doc/apt/examples/configure-index.gz and a bit of a look around online to see how to disable the cache. I thought it may be bad to completely disable the directory for packages to sit as apt places them there when it downloads them. However as the partial directory being used for packages in transit I wondered if that was where packages were kept during the install process. Anyway I tried adding Dir::Cache::Archive ""; and Dir::Cache::pkgcache ""; to a new file /etc/apt/apt.conf.d/10pkgcache. This however did not change anything and packages were still left in the archive. Next I tried setting both items to /dev/null, that caused a bus error when running apt-get install. I was kind of hoping there was some way to tell apt not to store files after it has run, dselect runs apt-get clean upon completion, there appears to be no way to tell apt to do a post install hook and run clean when finished. (assuming apt ran with no errors in the case the post install hook runs) The only way to do this appears to be to place apt-get clean in a crontab somewhere, which is a pain if you are short on disk space so would like to get rid of packages as soon as installing is finished. Interestingly /dev/null was also changed by what I tried above, it became a normal file and I caused some other processes depending on it to fail. Restarting udev did not recreate the device (even though the udev config said to recreate it as a char device with the correct permissions set) instead it reappeared as a normal file with the wrong permissions, some other running process seems to have interfered with /dev/null creation. Anyway that was easily fixed with /bin/mknod, now if only the emptying of /var/cache/apt/archives were so easy without resorting to cron. Sat, 19 Apr 2008
Participating the BarCamp way - 15:02
So when I have talked to people during the day, or when someone has given a presentation, I have looked for the link they placed on the Barcamp page and been able to go read some of their blog and see what they talk about more. I probably should participate to the extent of adding myself to the wiki, after all I am here all day. However it is interesting to note Bob and I have both had the same sort of reaction to our involvement. The Unorganisers suggested we all sign up to some yahoogroup or something for more of the discussions leading up to hosting the event. As far as I know Bob did not join, and I did not either, too much effort involved to sign up to another mailing list. So I just had a look at adding my name and diary link to the BarCampCanberra page and to edit the wiki requires a login so I decided not to bother. Sure it makes perfect sense that to edit the page you need to go through some form of authentication to stop spammers and such from blowing the wiki apart. I simply can no overcome my web forum/online login apathy enough to sign in here, kind of strange, though I notice Bob has not done this either.
Reminder that other people exist - 14:33
It is a highly amusing presentation, he has been talking about many things we all know and recognise that his students seem to not understand or know about. He mentioned that the Comp Sci students he had the first year or so he ran the course no longer do the subject as they seem to think they do not need it, so all the students are marketing commerce students who do not live in Internet culture. Something that I am reminded of listening to this is that we often forget there are people dissimilar to ourselves out there. For example a somewhat elitist example I often have to remember is that most people in the population are not university educated, however living in Canberra and hanging out with people who generally are, and working at a university, I often forget that not everyone shares my background. Dr Dann is dealing with non Internet savvy people and trying to induct them, it is interesting to hear his experiences. Good talk.
Getting deeper into the materials - 13:31
So the fact that people using the abbreviations on their badges is so prevalent today it had me wondering if there would be a cool way to obfuscate this a little bit (so I admit I like geek in jokes). Alas the symbols on the table are not the same abbreviations as found on the real periodic table so his is not quite as simple as I first hoped. My idea is if you select your list of elements to put on your badge and then could arrange them in such a way as to create materials or more complex things made up of the elements bonded in specific ways. For example water is H2O (two hydrogen molecules bonded to one oxygen molecule), so if you had a drop of water drawn on the bottom of your badge you are indicating your geek interests included H and O (you could even use it as a way to indicate you do H more than O if you want to be exact about this). The idea above falls apart a bit as the letters do not match the elements. However if you wanted to go ahead with this obfuscation you could simply use the elements in the same place on the table as those you select to try and choose various compounds then represent these compounds on your badge rather than the letters them selves. However no one would easily be able to work out what you mean now as they would need to know the chemical make up of the compounds you use, know where those elements are placed on the periodic table and then have memorised the geek periodic table to the extent they know what geek interests are in those positions. This is however a unconference that focuses on cool geeky online apps to some extent, you could fairly quickly extend the geek periodic table to enable translating from a selection of geek elements into a selection of real materials and have some symbol suggestions for the materials. People who want to use the obfuscation could use the tool (in both directions) to work out what is on a badge.
User interface discussions - 12:23
The presenter did have a definite point, when you consider where interfaces were at in 1968, why has there not been more research into different interfaces for different use cases and scenarios. It occurred to me that it is interesting to look at life possibly imitating art. In the Neal Stephenson book Snowcrash. Most users interface to the virtual reality world via the real life interfaces there and also appear to access computers in reality via a VR environment. However the hard core hackers all still access the low level real code with a keyboard and VDU and a Unix style command line interface (not too surprising from Stephenson when you consider his brilliant essay In the Beginning ... was the Command Line) So there are likely to be real uses for the currently accepted interfaces all the time, however the uses of alternative interfaces is likely to apply in a more specific use case scenario, and thus manufacturers, designers, researchers exactly need to somehow align and market them in specific ways and inform the people who want that use of a better (if it really is better) way to use the technology. An amusing aspect that came up for me (from a cycling background) was the question asked why in The Tour de France the UCI has banned recumbents. The person asking the question has obviously drunk the kool-aid on offer from the HPV community on this issue with there constant claims that they are obviously faster and superior for all uses. The reality of this is that they simply can not climb as fast, thus any race with climbing (such as The Tour de France) will make them useless. The reasons they do not climb well is they can not be made as light as a modern diamond frame road bike (they can be easily purchased at 6 KG ready to ride now) and you can not get out of the saddle in a recumbent and really work more muscle groups, the limitations of muscle uses restrict the ability to go hard up hills. Also when climbing with the rather limited motor available in a human body the aerodynamic advantages of a recumbent do not matter at such low speeds and can not overcome the advantages of low weight and more muscle groups. Thus Paul had some basis in suggesting that one reason computer interfaces have not advanced is that they are rather optimal for the purpose, though I strongly tend to agree more with the presenter that computer interfaces have a lot of room for improvement.
Barcamp thing - 10:28
So it will be interesting to see how the talks and other stuff go all day, there are a rather large number of people here so it is likely to work well. Right now there is a talk about Meraki on. Thu, 10 Apr 2008
Not meant to own one - 15:51
On my return to Canberra I bought another one and all seemed fine. I tied it onto my phone and was able to slip it inside the leather phone cover so it stayed put and was out of the way. This was until last Wednesday morning when I crashed and fractured my collar bone my phone was in a back pocket of my cycle jersey. Though the phone has come out of the crash unscratched and working as well as it was previously. The usb key has a bent pink metal cover and the back of the plastic bit where the chip contacts are is scratched a bit. After seeing APC tests in which the USB keys still often worked after much more severe torture than this one would expect it would still work. Alas I plug the key into a usb slot and nothing happens, definitely dead, tried it in multiple computers with a lot of wiggling around of the key. So small pink usb key junkie that I am I wandered over to the store today and they no longer have the 2GB key in pink, and they rang the importer who also no longer has them, only blue or black which really is not as cool. Thus it appears I am simply not meant to permanently own a cool small pink usb key. I did however see a helmet in the Giro line up that is a rather cool pink, maybe I should get that to replace my broken helmet. Mon, 25 Feb 2008
API design and error handling in code - 21:12
First it is true that putting in full error handling in code when using fairly standard libraries can take a lot of time, complexity and ugliness. However there should be some way somewhere to find out if errors happened I suggest, largely so you can deal with them if there is a situation they may be likely. Also understanding that libraries can fail in calls and what this means is important for coders, even if they do not handle them all. When marking assignments at uni I am keen to see that students have thought about error conditions and made the decision about what level of complexity to trade off against what likleyhood certain errors have of occurring. The above issue with assignments however does tend to be students who are newer to programming than most free software hackers so there are considerations in both directions there. As for the other reason the above posts interest me, it is cool to see Cairo getting such props for great design again. Carl and co have done a stellar job with that library. As I continue reading the planet I can see more entries in the thread. Thu, 21 Feb 2008
X and KDE out of sync - 17:59
In the last while the Xorg crew have been doing some great work to ensure X will generally run better with no config file around, working things out as it starts up and all that. However kde (at least the version in Kubuntu 7.10) has not caught up to the idea of querying the X server or working with it to that extent yet. I hope the newer kde releases are heading this way, also I should check out gnome and see if it handles this cleaner. One thing I should note though is xrandr really is seriously cool. I found the thinkwiki xrandr page to be one of the best for describing cool stuff it can do. Thu, 25 Oct 2007
A wireless scanning tool - 19:26
Hopefully I can remember this post and look it up, the tool in question is swscanner (a kde wireless scanner applications). Fri, 05 Oct 2007
No count-words-region or similar in emacs? - 14:10
From search engine results I found that somehow emacs does not natively have the few lines of lisp required to do this seemingly simple function anywhere by default. So there are some reasons this may be the case, the first of which is the definition of what constitutes a word may be in question, especially in different modes. However I just want a basic text mode word count capability. Many online suggestions seemed to launch a sub-shell and run wc on a buffer or section of a buffer, this is obviously overkill. Fortunately one of the first search results is to an elisp intro that has a section detailing a function defined to do count words region, which is exactly what I needed, so it is now in my .emacs file. The two things I find most surprising with this state of affairs are: 1. emacs does not have the capability somewhere in the huge amount of elisp distributed with it to do this natively and 2. Though I have been using emacs a lot for more than 10 years I never before noticed this was lacking. Tue, 18 Sep 2007
Keyboard training - 15:04
I finally convinced Bob to purchase three of these (one for me, one for the head of department and another in case Mikal^Wanyone requests one). Of course I am writing this diary entry on my laptop which sort of defeats the purpose, however I will be making an effort to get used to the new keyboard. It is quite a change as I had previously been using an old ps2 keyboard that I liked the feel of. One of 5 or so I found a cache of at work and had snarfed up and connected to my home computer, work computer and any other deskbound computer I had to type much on. My typing is a little slower on the new keyboard, only having used it for an hour two now, however it feels nice and the shape is not strange or keys in the wrong places it seems. I had wondered about using the non standard keys and the strange zoom switch (though as a scroll wheel) however most of the extra keys do not show up as having an event in X (using xev). Searching for information on this I find a few Microsoft Natural Keyboard 4000 howtos or forum discussions, however the methods to get the extra keys all seem to require a kernel patch, one which is not integrated into the distribution kernels. Thus unless anyone can suggest some other mechanism to get the events to user space I guess I will leave it be for now, after all I need it to type, not to press weird buttons on. I also have to train my fingers to hit q rather than tab in mutt to get out of an email all the time. Wed, 12 Sep 2007
Google maps API is kind of neat. - 11:31
For example here is the API and Maps link from an 18 KM run I did last night. I wear it cycling, paddling and running and it is interesting to see the data. However I have been thinking there are ways to represent some of the data in the graphs in more interesting ways over time. I had a look at the Google Maps API documentation yesterday and am impressed with how much you can actually do. I was thinking it would be cool to be able to display information such as distance, HR, speed, direction and other things in the line plotted on the map. Looking at the PolyLine documentation I am happy to see it can be done. I will need to divide the plot into sections over whatever range of change I want to display. However I can for example put a key for what colour is what heart rate on the page then display the map changing colour for different heart rates over time during the exercise. I can also put up more plot points for displaying distance covered or speed or gradient changes in different colours. I guess it is time I got hacking on this code along with Mikey and Tony. Wed, 01 Aug 2007
And the k bone is connected to the - 17:47
I am sure Bob is laughing at me right now as he tends to pull anything he buys apart the minute it is in his hands, ignoring any other issues. Tue, 31 Jul 2007
Please go away clicky key - 22:58
I have had a problem with the screen on my laptop (dell x300) for a year or so. There has been a brighter circle in the middle of the screen, also the screen hinge has been a bit loose and wobbly. The machine was still usable and functional so I did not give it much thought and got on with things. However as the warranty runs out in August sometime I decided I had better do something about the problem. Thus we had a dell technician in the other day (Monday morning) to replace the screen. All good the replacement screen is fine, no bright circle and it has stopped wobbling all over the place. Well all is fine with the screen now, however the technician had the keyboard out while making the screen change and somehow it seems has not reseated the bottom right hand side of the keyboard. The outcome of this is there is a noisy click sound when ever I press right arrow, page up or page down, or enter. I could open it up and fix it at work tomorrow I guess, however it is still under warranty so maybe I should get dell back to look at it. Having only a few keys on the keyboard behave as if they were on an old ibm keyboard is not really a desirable behaviour. Wed, 18 Jul 2007
Far less painful than expected - 16:47
I feel almost cheated, and I am sure Mikal will be sad to hear how easy it all was, however because he asked, here are the details. The only caveat with this method is it appears many (possibly all) of the extra features on the dvd will not work from menus (and looking at the mounted iso image may have been removed). However it has copied the primary documentary that is the reason for owning the dvd across, the resolution is reduced in parts, but that will probably not be particularly noticeable on a tv screen. The simple process used for this is "apt-get install dvd95 vamps ; dvd95 &" The dvd95 program will even burn the iso image it creates for you, or you can ask it not to and burn it yourself with growisofs or similar. I think the next step if I am feeling keen is to read up on ways to split the dvd up into two, retaining the menus but having the movie on one and the extras on another dvd or some other way to retain all the extra features. Right now however I do not feel that need. Fri, 13 Jul 2007
My software works too well, change it back - 22:06
It appears the profiling and lower memory foot print work various gurus in the kde and gnome and similar camps has paid dividends as there appears to be a pretty big drop in usage and memory leaks here and everything feels a bit faster all of which is good news. Not that I have done any real testing but perceived feel is relevant to some extent in a computing environment. The most amusing thing here I thought was my interpretation of how he asked the question, it sounded almost as if something was wrong. As if James was saying "my computer is not using enough memory, and is running to fast, fix it, make it as slow and hoggy as it used to be". I guess at least he was not about to request a change to a computing system that seems to constantly get slower and more user unfriendly with every major release. Thu, 05 Jul 2007
SDVO cards are an answer - 11:34
I had a look around and found HT sell one of the HP cards and it should work (if it is the DY674A) and there is another mob in Queensland selling a HP SDVO card that definitely the correct chipset. Next time I am in Fyshwick I should check out HT and see if they have one. Wed, 04 Jul 2007
Any boards with onboard Intel graphics with a dvi output? - 17:10
However I can not from a few searches find a board with the chipset above or some other Intel graphics chipset which has DVI output being sold in Australia. The reason I ask for the Intel graphics is that it means having a supported graphics chipset with open specs under Linux and full capabilities available. I do not have my heart set on that model specifically, DVI output capable board that works with Socket 775 and allows me to run a computer with the Intel open video driver under Linux would be good. Anyone know of one being sold in Australia? Mon, 04 Jun 2007
A Google mail complaint - 20:46
So far all of this sounds fine, however I noticed over the past week there were a fair few email on the list I seem to have missed. I logged into Gmail and found it had rather nicely stopped a bunch of spam. However it had also stopped 42 list email in the past month or three. So I went through all the spam it had stopped and marked the list mail as not spam and thus they were moved into the inbox. Now I thought to myself I simply have to forward (or bounce) all these 42 email to myself (there is no option to reprocess them with the default forwarding rule). Unfortunately this can not be done, there is no way to mass forward or bounce email to another location. Sure I could open every individual email and forward them, but that would take forever, and I admittedly would prefer to bounce them to me so the headers remain as they should be (bounce being a feature Thunderbird also does not have even though there have been open bugs against Mozilla mail since Mozilla was open sourced, but that is another rant for another time (I am aware there have been thunderbird plugins to do this sometimes but they tend not to be up to date)). So looking through the help files for Gmail I find they are serious that there is no way to get more than one email at a time sent on. They suggest enabling pop3 and downloading the mail. Okay so I can do this, however upon trying it is about to download all the email that has ever come through to Gmail, not just the stuff in the inbox. I only want a local copy of these 42 email, if only it were not so hard. I guess I have heard of API's for Gmail that may be the next place to look. Admittedly I use mutt as my primary email client and am not at all familiar with Gmail so I may be missing something but so far my rather specific needs are hard to come by. I guess at least I do have access to all my email data there rather than it be closed off and locked away somehow. Mon, 21 May 2007
Unix command scheduler graffiti - 11:52
Thu, 10 May 2007
Recovering data from a dbx file - 17:10
So I have been trying to extract some email from a Microsoft Outlook Express 6.0 DBX file for a friend. She has deleted a lot of email in a mailbox by accident. However the email is all still in the file, however there is no way I can find to get it out cleanly. Running strings over the dbx file it finds all the old email, though in a corrupted sort of output. There are some dbx libraries for linux and they have programs to readdbx or similar (perl libraries based on them). However running these it extracts the email that still shows up in the mailbox in outlook, but not all the deleted content. The DBX file is over 5 MB, however the available linux dbx libraries extract about 120 KB of data. Strings output is close to the 5 MB (the attachments, due to being base64 encoded of course are recognised as strings) I wonder if anyone knows of linux software that can extract all the email from a dbx file even those with the leading few bytes or whatever outlook changes to indicated they do not exist any longer? The best option I can find so far that may possibly work, though I have no idea what it can do is a utility called DBXtract that runs on windows for USD $7. It would be nice to extract this to mbox format on linux though. Wed, 09 May 2007
Silent G - 15:41
However when I mentioned this problem to Bob he had a rather brilliant suggestion, they should have used a silent G as is used in most open source recursive acronyms derived from the letters GNU. (GNU itself, Gnome, etc) Just think Ubuntu GFunky Gibbon. And for the bad pun lovers out there, I bet you can't wait until your UGG Boots. Tue, 27 Feb 2007
Times when you wish etch were stable - 11:21
At this point I could either try testing/etch or install from a dapper cd I had sitting in the office. As it would save burning an etch/testing cd (which we may need rc2 for a clean install anyway?) I ended up installing dapper. At least I can still use the debian packages if need be, however I am definitely looking forward to etch being stable so it will work on more recent hardware for a while. I guess the argument could be made I should have simply used etch, and if I am going to complain at all I should get off my arse and do work on debian to help get it out the door. Ahh well, machine is up and running now and I can get the work I need done on it. Fri, 19 Jan 2007
The kernel hacker culling plan - 11:13
As I mentioned last week I purchased a new digital camera. A Panasonic DMC LZ5, I have used it a fair bit so far, on the Friday morning mountain bike ride last week, riding up to Sydney and for various other photos in the last week. I like the camera, and I took the above photos of both cameras last week just to show them off, the new one is a bit smaller and definitely lighter. It was just as well I had two cameras last week or I would have had a chicken and egg problem, how do you take a photo of a camera if you only have the one camera. (okay so a mirror is one solution, but I am ignoring that for the purposes of this lame chicken and egg reference). Wed, 10 Jan 2007
Neato, new and shinier photos to come. - 14:33
The camera was ordered yesterday from a mob in Adelaide, Camerastore.com.au and arrived at work in Canberra around an hour ago. More details and photos and stuff to come once some playing has happened. I am sure my sister will be happy as I intend to give her the old camera (she does not have a digital camera) and it is still a nice sturdy camera. Tue, 09 Jan 2007
The sync option to mount does not mix well with vfat and memory cards - 16:41
After banging my head against this for a while I googled for details about bad usb memory performance on Linux. I came across a lkml thread from may 2005 that seems to have helped enough. Apparently the performance of USB memory with the sync option and vfat filesystems is really pathetic, this is largely due to the repeated hammering of 2 blocks with every sync. Alan Cox has some good and salient points in the discussion (to be expected from such a guru I guess), notably he points out most quality flash memory is very unlikely to be too adversely affected in a short time by using sync and he has a link to some details of life time guarantees from some companies for their flash products. Anyway I disabled sync on the desktop image and my own desktop and disabled it on my laptop, all of a sudden I get 2MB/s or better depending on the memory stick I am using. Neato. Interestingly Alan suggests the documentation for mount is generated form the kernel docs somehow and should be up to date and thus not continue to suggest that vfat filesystems ignore the sync flag. It is interesting to see that my Debian unstable copy of that man page on my laptop today still suggests that vfat ignores the sync option. At a glance I can not see any mention of this on the Debian bugs page for mount. Wed, 01 Nov 2006
Kernel command line for environment variables - 14:56
I remembered reading something somewhere about setting the proxy environment variable on the kernel command line that d-i would then be able to use. I can find no documentation about this with respect to d-i. However it seems to work correctly by putting append="http_proxy=blah" into the correct pxe boot file. AJ pointed out it is a kernel feature that allows variables entered in such a way to be passed to init (this is sort of hinted at in the kernel Documentation/kernel-parameters.txt file, though not made clear). Anyway because d-i uses wget (and even when it gets to apt, apt understands the same variable) to fetch files this works correctly. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||