Personal Page: Added disclaimer that this is a personal page.
[ikiwiki.git] / varialus / index.mdwn
1 # et
2 # Anisoptera
3 *The following is an unpaid personal wiki page. The views and opinions expressed herein do not necessarily reflect those of the DragonFly BSD mascot nor its management.*
4 ### Various Tidbits
5 * **Hammer** is hands down the best file system currently in existence. **DragonFly BSD** is an awesome operating system, but it's a bit rough around the edges for everyday use. I would like DragonFly to be easier to use so that my everyday desktop environment can use Hammer.
6 * **[Dissonance](https://bitbucket.org/varialus/dissonance)** is my fork of Apache Harmony, which is a clean room implementation of Java with a permissive license. Apache gave up because they couldn't license the Java compatibility testing framework. If Oracle isn't going to provide the compatibility testing framework, then the community should write its own compatibility framework that's better than the official one. This would cause dissonance between Oracle and the community, but that's no reason to not pursue it. I'd like to get Dissonance running on DragonFly.
7 * **[Jython](http://www.jython.org/)** is Python written in Java. It's cool. But it's not installed in DragonFly by default.
8 * **ee** is roughly equivalent to **nano**. They are both easy to use command line text editors. The exit option will ask you whether you want to save and you can get to it by pressing Ctrl-[ and selecting 'a) leave editor'. It would be cool if there was a shortcut to ee named nano.
9 * **pkgin** is roughly equivalent to **apt-get**. They are both fairly straightforward command line package management utilities. It would be cool if there was a shortcut to pkgin named apt-get.
10
11 ### Various Issues
12 * Varialus should ensure that these issues are properly logged. Yes, I know that they should be properly logged and I intend to eventually get them all logged. In the mean time hopefully my notes will help someone still trying to find the answers to life's persistent questions.
13 * The installer should offer the Xfce desktop environment as a supported option. Observed in DragonFly 3.0.2.
14 * The installer should set the keyboard layout before any typing is required. Observed in DragonFly 3.0.2.
15 * The installer should set the keyboard layout for the GUI. Observed in DragonFly 3.0.2. See workaround below.
16 * The installer should set the keyboard layout for the encryption password prompt. Observed in DragonFly 3.0.2.
17 * The installer should configure the keyboard within the GUI to be able to use the caps lock key. Observed in DragonFly 3.0.2. See workaround below.
18 * When encrypting the swap partition, the installer should configure the boot loader to generate a random key each time the system is booted so that the password doesn't have to be typed twice when the system is booted. Observed in DragonFly 3.0.2.
19 * When configuring the system from the installer, if the system just finished installing with encryption, the hard drive should stay unlocked so that the user doesn't have to type in his password again. Observed in DragonFly 3.0.2.
20 * When configuring the system from the installer, if the system is encrypted but was not just barely installed, the user should only have to type in his password once, not twice. Observed in DragonFly 3.0.2.
21 * When installing from a USB device onto a USB device, the installer should ensure that installed media is named such that when booted without the USB installer, the installed device name doesn't change. Observed in DragonFly 3.0.2.
22 * When installing onto a 3TB+ hard drive, the default partition table should be able to handle that size. Observed in DragonFly 3.0.2. Fixed and tested in snapshot on 8/14/2012. See workaround below.
23 * After selecting to install using all of a 3TB+ hard drive that already has an MS-DOS/MBR partition table on it, the installer should overwrite the partition table with an adequate partition table such as GPT. Observed in snapshot on 8/14/2012.
24 * The default shell provided by the installer should list valid auto completion options after typing a partial command and then pressing tab two or more times. Observed in DragonFly 3.0.2.
25 * ->Excepting the bullet point, this syntax should center text in this wiki.<- Observed on 8/25/2012.
26
27 ### Various Workarounds
28 **Enable the Caps Lock Key within the GUI**
29
30 Edit the file /etc/X11/xorg.conf.
31
32     ee /etc/X11/xorg.conf
33
34 Delete the ctrl:nocaps XkbOptions option from the InputDevice section with the identifier Keyboard0 of the xorg.conf file. Or comment it out by prefixing the line with the # symbol.
35
36     Section "InputDevice"
37         Identifier  "Keyboard0"
38         Driver      "kbd"
39         #Option      "XkbOptions" "ctrl:nocaps"
40     EndSection
41
42 **Install Non-GUI on 3TB+ Hard Drive**
43
44 *WARNING:* This workaround includes instructions which will delete all data from a hard drive.
45
46 Delete the partition table from the hard drive. There are various tools with which to do this, one particularly easy to use tool is the [GParted Live CD/USB](http://gparted.sourceforge.net/livecd.php).
47
48 Install from a [snapshot version of DragonFly](http://avalon.dragonflybsd.org/snapshots/). Be aware that snapshot versions are less thoroughly tested than stable releases.
49
50 Tested in snapshot on 8/14/2012.
51
52 **Set the GUI Keyboard Layout**
53
54 Edit the file /etc/X11/xorg.conf.
55
56     ee /etc/X11/xorg.conf
57
58 Set the XkbVariant option to your keyboard variant.
59
60     Section "InputDevice"
61         Identifier  "Keyboard0"
62         Driver      "kbd"
63         Option      "XkbVariant" "dvorak"
64     EndSection
65
66 Valid keyboard options can be found by searching through /usr/pkg/share/X11/xkb/symbols/ for example to find references to the dvorak keyboard layout, run the following command.
67
68     grep --color -n -r dvorak /usr/pkg/share/X11/xkb/symbols
69
70 If too many lines scroll by, you can use your arrow buttons to scroll back within the non-graphical console screen by pressing the Scroll Lock button on your keyboard.
71
72 Tested in DragonFly 3.0.2.