Personal Page: Added disclaimer about myself.
[ikiwiki.git] / varialus / index.mdwn
... / ...
CommitLineData
1# et
2# Anisoptera
3### Various Tidbits
4* **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.
5* **[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.
6* **[Jython](http://www.jython.org/)** is a Java implementation of Python. It's cool, but it's not installed in DragonFly by default.
7* **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.
8* **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.
9
10### Various Issues
11* 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.
12* The installer should offer the Xfce desktop environment as a supported option. Observed in DragonFly 3.0.2.
13* The installer should set the keyboard layout before any typing is required. Observed in DragonFly 3.0.2.
14* The installer should set the keyboard layout for encryption password prompt. Observed in DragonFly 3.0.2.
15* 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.
16* 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.
17* 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.
18* 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.
19* 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.
20* 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.
21* The installer should provide a shell which lists valid auto completion options after pressing tab twice. Observed in DragonFly 3.0.2.
22* The installer doesn't set the keyboard layout for GUI. Observed in DragonFly 3.0.2.
23* ->Excepting the bullet point, this syntax should center text in this wiki.<- Observed on 8/25/2012.
24
25### Various Workarounds
26**Set the GUI Keyboard Layout**
27
28Edit the file /etc/X11/xorg.conf.
29
30 ee /etc/X11/xorg.conf
31
32Set the XkbVariant option to your keyboard variant.
33
34 Section "InputDevice"
35 Identifier "Keyboard0"
36 Driver "kbd"
37 Option "XkbVariant" "dvorak"
38 EndSection
39
40Valid 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.
41
42 grep --color -n -r dvorak /usr/pkg/share/X11/xkb/symbols
43
44If 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.
45
46Tested in DragonFly 3.0.2.
47
48**Install Non-GUI on 3TB+ Hard Drive**
49
50*WARNING:* This workaround includes instructions which will delete all data from a hard drive.
51
52Delete 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).
53
54Install from a [snapshot version of DragonFly](http://avalon.dragonflybsd.org/snapshots/). Be aware that snapshot versions are less thoroughly tested than stable releases.
55
56Tested in snapshot on 8/14/2012.