List of bugs, known issues and other sundry things to fix:
- Duplex printing - if the linux printer configuration allows duplex printing, requesting simplex printing will only print the first page simplex. Most of the machines are currently configured for duplex printing. I believe charizard does simplex.
usermount a.k.a. "Disk Management" doesn't let you mount the CD. Use KwikDisk instead, or mount from the command line.
- gdbm (v. 1.8.0) uses a lock method that doesn't work with NFS. This means that anything running on the daughter machines will fail if it tries to read a database on /home or /home1. There are three work-arounds.
- Run your program on bulba.
- Turn off locking. In python this is done with the 'u' flag.
>>> gdbm.open('foo','n') Traceback (most recent call last): File "<stdin>", line 1, in ? gdbm.error: (37, 'No locks available') >>> gdbm.open('foo','nu') <gdbm.gdbm object at 0xb7f820c0>
- Use an alternative database system (dbhash or dumbdbm in python)
Items in the queue to be installed:
- Nothing, currently
MoinMoin 1.6 has captchas which are supposed to stop this spam. I would do the upgrade, but I've forgotten the password. -Lucien