fixed formatting
[www.git] / main / tutorials / 915resolution.shtml
index ad21eb467a5f5baba35694a45887808faa9342e9..39a524b38cf58a5fa55dcebbc40c86cd5c813e64 100755 (executable)
@@ -22,9 +22,13 @@ However, after a few days of Googling, I eventually stumbled across <a href="htt
 </p>
 
 <p>
-First, download either <a href="http://ftp.steven-mcdonald.id.au/915resolution/">my own version</a> of 915resolution, or the one supplied by the original developer. The source code in both is the same; the only modification I have made is in the Makefile, so that it installs to /usr/local instead of to /usr. The upstream version comes with a binary that will not run under GNU/kFreeBSD because it was built on Linux; whichever one you download, you <em>must</em> compile the source yourself with the usual method (<tt>make &amp;&amp; sudo make install</tt>).
+First, download either <a href="http://ftp.steven-mcdonald.id.au/915resolution/">my own version</a> of 915resolution, or the one supplied by the original developer. The source code in both is the same; the only modification I have made is in the Makefile, so that it installs to /usr/local instead of to /usr. The upstream version comes with a binary that will not run under GNU/kFreeBSD because it was built on Linux; whichever one you download, you <em>must</em> compile the source yourself with the usual method:
 </p>
 
+<code>
+$ make &amp;&amp; sudo make install
+</code>
+
 <p>
 Once you have built and installed 915resolution, add a line like this to your /etc/rc.local (<em>before</em> the <tt>exit 0</tt> statement):
 </p>
@@ -34,7 +38,15 @@ Once you have built and installed 915resolution, add a line like this to your /e
 </code>
 
 <p>
-You may need to change the arguments passed to it for your own purposes. To find a list of modes supported by your video BIOS, run <tt>915resolution -l</tt> as root -- the first number (54 in my case) must correspond to one of the mode numbers. The next two numbers are the resolution (1440x900 for me), and the last one (32) is the number of bits per pixel. You may like to experiment with this manually before putting it into your /etc/rc.local.
+You may need to change the arguments passed to it for your own purposes. To find a list of modes supported by your video BIOS, run the following command as root:
+</p>
+
+<code>
+# 915resolution -l
+</code>
+
+<p>
+The first number (54 in my case) must correspond to one of the mode numbers. The next two numbers are the resolution (1440x900 for me), and the last one (32) is the number of bits per pixel. You may like to experiment with this manually before putting it into your /etc/rc.local.
 </p>
 
 <p>