1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
|
<?xml version="1.0"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"/usr/share/xml/docbook/xml-dtd-4.5/docbookx.dtd">
<chapter id="ch_boot">
<title>Booting</title>
<para>
Ok, now that you've gotten Slackware installed on your system, you
should learn exactly what controls the boot sequence of your machine,
and how to fix it should you manage to break it somehow. If you use Linux
long enough, sooner or later you will make a mistake that breaks your
bootloader. Fortunately, this doesn't require a reinstall to fix. Unlike
many other operating systems that hide the underlying details of how they
work, Linux (and in particular, Slackware) gives you full control over
the boot process. Simply by editing a configuration file or two and
re-running the bootloader installer, you can quickly and easily change
(or break) your system. Slackware even makes it easy to dual-boot
multiple operating systems, such as other Linux distributions or Microsoft
Windows.
</para>
<section id="boot_mkinitrd">
<title><application>mkinitrd</application></title>
<para>
Before we go any further, a quick discussion on the Linux kernel is
warranted. Slackware Linux includes at least two, but sometimes more,
different kernels. While they are all compiled from the same source
code, and hence are the "same", they are not identical. Depending on
your architecture and Slackware version, the installer may have loaded
your system with several kernels. There are kernels for single-processor
systems and kernels for multi-processor systems (on 32bit Slackware).
In the old days, there were lots of kernels for installing on many different
kinds of hard drive controllers. More importantly for our discussion,
there are "huge" kernels and "generic" kernels.
</para>
<para>
If you look inside your <filename>/boot</filename> directory, you'll
see the various kernels installed on your system.
</para>
<screen><prompt>darkstar:~# </prompt><userinput>ls -1 /boot/vmlinuz*</userinput>
/boot/vmlinuz-huge-2.6.29.4
/boot/vmlinuz-generic-2.6.29.4
</screen>
<para>
Here you can see that I have two kernels installed,
<filename>vmlinuz-huge-2.6.29.4</filename> and
<filename>vmlinuz-generic-2.6.29.4</filename>. Each Slackware release
includes different kernel versions and sometimes even slightly
different names, so don't be alarmed if what you see doesn't exactly
match what I have listed here.
</para>
<para>
Huge kernels are exactly what you might think; they're huge. However,
that does NOT mean that they have all of the possible drivers and such
compiled into them. Instead, these kernels are made to boot (and run) on
every conceivable computer on which Slackware is supported (there may very
well be a few out there that won't boot/work with them though). They most
certainly contain support for hardware your machine does not (and never
will) have, but that shouldn't concern you. These kernels are included for
several reasons, but probably the most important is their use by Slackware's
installer - these are the kernels that the Slackware installation disks run.
If you chose to let the installer configure your bootloader for you, it
chooses to use these kernels due to the incredible variety of hardware they
support. In contrast, the generic kernels support very little hardware
without the use of external modules. If you want to use one of the generic
kernels, you'll need to make use of something called an initrd, which is
created using the <application>mkinitrd</application>(8) utility.
</para>
<para>
So why should you use a generic kernel? Currently the Slackware
development team recommends use of a generic kernel for a variety of
reasons. Perhaps the most obvious is size. The huge kernels are
currently about twice the size of the generic kernels before they are
uncompressed and loaded into memory. If you are running an older
machine, or one with some small ammount of RAM, you will appreciate the
savings the generic kernels offer you. Other reasons are somewhat more
difficult to quantify. Conflicts between drivers included in the huge
kernels do appear from time to time, and generally speaking, the huge
kernels may not perform as well as the generic ones. Also, by using the
generic kernels, special arguments can be passed to hardware drivers
seperately, rather than requiring these options be passed on the kernel
command line. Some of the tools included with Slackware work better if
your kernel uses some drivers as modules rather than statically building
them into the kernel. If you're having trouble understanding this, don't
be alarmed: just think "huge kernel = good, generic kernel = better".
</para>
<para>
Unfortunately, using the generic kernels isn't as straightforward as
using the huge kernels. In order for the generic kernel to boot your
system, you must also include a few basic modules in an initird.
Modules are pieces of compiled kernel code that can be inserted or removed
from a running kernel (ideally using <application>modprobe</application>(8).
This makes the system somewhat more flexible at the cost of a tiny bit of
added complexity. You might find it easier to think of modules as device
drivers, at least for this section. Typically you will need to add the
module for whatever filesystem you chose to use for your root partition
during the installer, and if your root partition is located on a SCSI disk
or RAID controller, you'll need to add those modules as well. Finally, if
you're using software RAID, disk encryption, or LVM, you'll also need to
create an initrd regardless of whether you're using the generic kernel or not.
</para>
<para>
An initrd is a compressed <application>cpio</application>(1) archive, so
creating one isn't very straightforward. Fortunately for you, Slackware
includes a tool that makes this very easy:
<application>mkinitrd</application>. A full discussion of
<application>mkinitrd</application> is a bit beyond the scope of this
book, but we'll show you all the highlights. For a more complete
explanation, check the manpage or run
<application>mkinitrd</application> with the <arg>--help</arg>
argument.
</para>
<screen>
<prompt>darkstar:~# </prompt><userinput>mkinitrd --help</userinput>
mkinitrd creates an initial ramdisk (actually an initramfs cpio+gzip
archive) used to load kernel modules that are needed to mount the
root filesystem, or other modules that might be needed before the
root filesystem is available. Other binaries may be added to the
initrd, and the script is easy to modify. Be creative. :-)
.... many more lines deleted ....
</screen>
<para>
When using <application>mkinitrd</application>, you'll need to know a
few items of information: your root partition, your root filesystem,
any hard disk controllers you're using, and whether or not you're using
LVM, software RAID, or disk encryption. Unless you're using some kind
of SCSI controller (and have your root partition located on the SCSI
controller), you should only need to know your root filesystem and
partition type. Assuming you've booted into your Slackware installation
using the huge kernel, you can easily find this information with the
<application>mount</application> command or by viewing the contents of
<filename>/proc/mounts</filename>.
</para>
<screen>
<prompt>darkstar:~# </prompt><userinput>mount</userinput>
/dev/sda1 on / type ext4 (rw,barrier=1,data=ordered)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
usbfs on /proc/bus/usb type usbfs (rw)
/dev/sda2 on /home type jfs (rw)
tmpfs on /dev/shm type tmpfs (rw)
</screen>
<para>
In the example provided, you can see that the root partition is located
on <filename>/dev/sda1</filename> and is an ext4 type partition. If we
want to create an initrd for this system, we simply need to tell this
information to <application>mkinitrd</application>.
</para>
<screen><prompt>darkstar:~# </prompt><userinput>mkinitrd -f ext4 -r /dev/sda1</userinput>
</screen>
<para>
Note that in most cases, <application>mkinitrd</application> is smart
enough to determine this information on its own, but it never hurts to
specify it manually. Now that we've created our initrd, we simply need
to tell LILO where to find it. We'll focus on that in the next section.
</para>
<para>
Looking up all those different options for
<application>mkinitrd</application> or worse, memorizing them, can be a
real pain though, especially if you try out different kernels
consistently. This became tedious for the Slackware development team,
so they came up with a simple configuration file,
<filename>mkinitrd.conf</filename>(5). You can find a sample file that
can be easily customized for your system at
<filename>/etc/mkinitrd.conf.sample</filename> directory. Here's mine.
</para>
<screen>
<prompt>darkstar:~# >/prompt><userinput>cat /etc/mkinitrd.conf.sample</userinput>
# See "man mkinitrd.conf" for details on the syntax of this file
#
SOURCE_TREE="/boot/initrd-tree"
CLEAR_TREE="0"
OUTPUT_IMAGE="/boot/initrd.gz"
KERNEL_VERSION="$(uname -r)"
#KEYMAP="us"
MODULE_LIST="ext3:ext4:jfs"
#LUKSDEV="/dev/hda1"
ROOTDEV="/dev/sda1
ROOTFS="ext4"
#RESUMEDEV="/dev/hda2"
#RAID="0"
LVM="1"
#WAIT="1"
</prompt>
</screen>
<para>
For a complete description of each of these lines and what they do,
you'll need to consult the man page for <filename>mkinitrd.conf</filename>.
Copy the sample file to to <filename>/etc/mkinitrd.conf</filename> and
edit it as desired. Once it is setup properly, you need only run
<application>mkinitrd</application> with the <arg>-F</arg> argument.
A proper initrd file will be constructed and installed for you without
you having to remember all those obscure arguments.
</para>
<para>
If you're unsure what options to specify in the configuration file or
on the command-line, there is one final option. Slackware includes a
nifty little utility that can tell what options are required for your
currently running kernel
<application>/usr/share/mkinitrd/mkinitrd_command_generator.sh</application>.
When you run this script, it will generate a command line for
<application>mkinitrd</application> that should work
for your computer, but you may wish to check everything anyway.
</para>
<screen><prompt>darkstar:~# </prompt><userinput>/usr/share/mkinitrd/mkinitrd_command_generator.sh</userinput>
mkinitrd -c -k 2.6.33.4 -f ext3 -r /dev/sda3 -m \
usbhid:ehci-hcd:uhci-hcd:ext3 -o /boot/initrd.gz
</screen>
</section>
<section id="boot_lilo">
<title>LILO</title>
<para>
LILO is the Linux Loader and is currently the default boot loader
installed with Slackware Linux. If you've used other Linux
distributions before, you may be more familiar with GRUB. If you prefer
to use GRUB instead, you can easily find it in the
<filename>extra/</filename> directory on one of your Slackware CDs.
However, since LILO is the default Slackware bootloader, we'll focus
exclusively on it.
</para>
<para>
Configuring LILO can be a little daunting for new users, so Slackware
comes with a special setup tool called <application>liloconfig</application>.
Normally, <application>liloconfig</application> is first run by the
installer, but you can run it at any time from a terminal.
</para>
<para>
<imageobject>
<imagedata fileref="png/setup-lilo.png" format="PNG" />
</imageobject>
</para>
<para>
<application>liloconfig</application> has two modes of operation:
simple and expert. The "simple" mode tries to automatically configure
lilo for you. If Slackware is the only operating system installed on
your computer, the "simple" mode will almost always do the right thing
quickly and easily. It is also very good at detecting Windows
installations and adding them to <filename>/etc/lilo.conf</filename>
so that you can choose which operating system to boot when you
turn your computer on.
</para>
<para>
In order to use "expert" mode, you'll need to know Slackware's root
partition. You can also setup other linux operating systems if you know
their root partitions, but this may not work as well as you expect.
<application>liloconfig</application> will try to boot each linux
operating system with Slackware's kernel, and this is probably not what
you want. Fortunately, setting up Windows partitions in expert mode is
trivial. One hint when using expert mode: you should almost always
install LILO to the Master Boot Record (MBR). Once upon a time, it was
recommended to install the boot loader onto the root partition and set
that partition as bootable. Today, LILO has matured greatly and is safe
to install on the MBR. In fact, you will encounter fewer problems if
you do so.
</para>
<para>
<application>liloconfig</application> is a great way to quickly setup
your boot loader, but if you really need to know what's going on, you'll
need to look at LILO's configuration file:
<filename>lilo.conf</filename>(5) under the <filename>/etc</filename>
directory. <filename>/etc/lilo.conf</filename> is separated into
several sections. At the top, you'll find a "global" section where you
specify things like where to install LILO (generally the MBR), any
special images or screens to show on boot, and the timeout after which
LILO will boot the default operating system. Here's what the global
section of my lilo.conf file looks like in part.
</para>
<screen># LILO configuration file
boot = /dev/sda
bitmap = /boot/slack.bmp
bmp-colors = 255,0,255,0,255,0
bmp-table = 60,6,1,16
bmp-timer = 65,27,0,255
append=" vt.default_utf8=0"
prompt
timeout = 50
# VESA framebuffer console @ 1024x768x256
vga = 773
.... many more lines ommitted ....
</screen>
<para>
For a complete listing of all the possible LILO options, you should
consult the man page for <filename>lilo.conf</filename>. We'll
briefly discuss the most common options in this document.
</para>
<para>
The first thing that should draw your attention is the "boot" line. This
determines where the bootloader is installed. In order to install to
the Master Boot Record (MBR) of your hard drive, you simply list the hard
drive's device entry on this line. In my case, I'm using a SATA hard drive
that shows up as a SCSI device <filename>/dev/sda</filename>. In order
to install to the boot block of a partition, you'll have to list the
partition's device entry. For example, if you are installing to the first
partition on the only SATA hard drive in your computer, you would probably
use <filename>/dev/sda1</filename>.
</para>
<para>
The "prompt" option simply tells LILO to ask (prompt) you for which
operating system to boot. Operating systems are each listed in their
own section deeper in the file. We'll get to them in a minute. The
timeout option tells LILO how long to wait (in tenths of seconds)
before booting the default OS. In my case, this is 5 seconds. Some
systems seem to take a very long time to display the boot screen, so
you may need to use a larger timeout value than I have set. This is in
part why the simple LILO installation method utilizes a very long
timeout (somewhere around 2 whole minutes). The append line in my case
was set up by <application>liloconfig</application>. You may (and
probably should) see something similar when looking at your own
<filename>/etc/lilo.conf</filename>. I won't go into the details of why
this line is needed, so you're just going to have to trust me that things
work better if it is present. :^)
</para>
<para>
Now that we've looked into the global section, let's take a look at the
operating systems section. Each linux operating system section begins
with an "image" line. Microsoft Windows operating systems are specified
with an "other" line. Let's take a look at a sample
<filename>/etc/lilo.conf</filename> that boots both Slackware and
Microsoft Windows.
</para>
<screen># LILO configuration file
... global section ommitted ....
# Linux bootable partition config begins
image = /boot/vmlinuz-generic-2.6.29.4
root = /dev/sda1
initrd = /boot/initrd.gz
label = Slackware64
read-only
# Linux bootable partition config ends
# Windows bootable partition config begins
other = /dev/sda3
label = Windows
table = /dev/sda
# Windows bootable partition config ends
</screen>
<para>
For Linux operating systems like Slackware, the image line specifies
which kernel to boot. In this case, we're booting
<filename>/boot/vmlinuz-generic-2.6.29.4</filename>. The remaining
sections are pretty self-explanatory. They tell LILO where to find the
root filesystem, what initrd (if any) to use, and to initially mount
the root filesystem read-only. That initrd line is very important for
anyone running a generic kernel or using LVM or software RAID. It
tells LILO (and the kernel) where to find the initrd you created using
<application>mkinitrd</application>.
</para>
<para>
Once you've gotten <filename>/etc/lilo.conf</filename> set up for your
machine, simply run <application>lilo</application>(8) to install it.
Unlike GRUB and other bootloaders, LILO requires you re-run
<application>lilo</application> anytime you make changes to its
configuration file, or else the new (changed) bootloader image will
not be installed, and those changes will not be reflected.
</para>
<screen><prompt>darkstar:~# </prompt><userinput>lilo</userinput>
Warning: LBA32 addressing assumed
Added Slackware *
Added Backup
6 warnings were issued.
</screen>
<para>
Don't be too scared by many of the warnings you may see when running
<application>lilo</application>. Unless you see a fatal error, things
should be just fine. In particular, the LBA32 addressing warning is
commonplace.
</para>
</section> <!-- closing lilo -->
<section id="boot_dual">
<title>Dual Booting</title>
<para>
A bootloader (like LILO) is a very flexible thing, since it exists
only to determine which hard drive, partition, or even a specific
kernel on a partition to boot. This inherently suggests a choice
when booting, so the idea of having more than one operating system
on a computer comes very naturally to a LILO or GRUB user.
</para>
<para>
People "dual boot" for a number of reasons; some people want
to have a stable Slackware install on one partition or drive and a
development sandbox on another, other people might want to have
Slackware on one and another Linux or BSD distribution on another,
and still other people may have Slackware on one partition and a
proprietary operating system (for work or for that one application
that Linux simply cannot offer) on the other.
</para>
<para>
Dual booting should not be taken lightly, however, since it usually
means that you'll now have two different operating systems
attempting to manage the bootloader. If you dual boot, the
likelihood of one OS over-writing or updating the bootloader entries
without your direct intervention is great; if this happens, you'll
have to modify GRUB or LILO manually so you can get into each OS.
</para>
<para>
There are two ways to dual (or multi) boot; you can put each
operating system on its own hard drive (common on a desktop, with
their luxury of having more than one drive bay) or each operating
system on its own partition (common on a laptop where only one
physical drive is present).
</para>
<section id="boot_dual_partition">
<title>Dual Booting with Partitions</title>
<para>
In order to set up a dual-boot system with each operating system on
its own partition, you must first create partitions. This is easiest
if done prior to installing the first operating system, in which
case it's a simple case of pre-planning and carving up your hard
drive as you feel necessary. See <xref linkend="install_part"/> for
information on using the <application>fdisk</application> or
<application>cfdisk</application> partitioning applications.
</para>
<important>
<para>
If you're dual booting two Linux distributions, it is inadvisable
to attempt to share a /home directory between the
systems. While it is technically possible, doing so will increase
the chance of your personal configurations from becoming mauled by
competing desktop environments or versions.
</para>
<para>
It is, however, safe to use a common swap partition.
</para>
</important>
<para>
You should partition your drive into at least three parts:
</para>
<itemizedlist>
<listitem>
<para>
One partition for Slackware
</para>
</listitem>
<listitem>
<para>
One partition for the secondary OS
</para>
</listitem>
<listitem>
<para>
One partition for swap
</para>
</listitem>
</itemizedlist>
<para>
First, install Slackware Linux onto the first partition of the hard
drive as described in <xref linkend="ch_install"/>.
</para>
<para>
After Slackware has been installed, booted, and you've confirmed
that everything works as expected, then reboot to the installer for
the second OS. This OS will invariably offer to utilize the entire
drive; you obviously do <emphasis>not</emphasis> want to do that, so
constrain it to only the second partition. Furthermore, the OS will
attempt to install a boot loader to the beginning of the hard drive,
overwriting LILO.
</para>
<para>
You have a few possible courses of action with regards to the boot
loader:
</para>
<variablelist>
<title>
Possible Boot Loader Scenarios
</title>
<varlistentry>
<term>
If the secondary OS is Linux, disallow it from installing a boot
manager.
</term>
<listitem>
<para>
If you're dual booting to another Linux distribution, the
installer of that distribution usually asks if you want a boot
loader installed. You're certainly free to not install a boot
manager for it at all, and manually manage both Slackware and
the other distribution with LILO.
</para>
<para>
Depending on the distribution, you might be editing LILO more
frequently than you would if you were only running Slackware;
some distributions are notorious for frequent kernel updates,
meaning that you'll need to edit LILO to reflect the new
configuration after such an update. But if you didn't want to
edit configuration files every now and again, you probably
wouldn't have chosen Slackware.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
If the secondary OS is Linux, let it overwrite LILO with GRUB.
</term>
<listitem>
<para>
If you're dual booting to another Linux distribution, you are
perfectly capable of just using GRUB rather than LILO, or
install Slackware last and use LILO for both. Both LILO and GRUB
have very good auto-detection features, so whichever one gets
installed last should pick up the other distribution's presence
and make an entry for it.
</para>
<para>
Since other distributions often attempt to auto-update their
GRUB menus, there is always the chance that during an update
something will become maligned and you suddenly find you can't
boot into Slackware. If this happens, don't panic; just boot
into the other Linux partition and manually edit GRUB so that it
points to the correct partition, kernel, and initrd (if
applicable) for Slackware in its menu.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
Allow the secondary OS to overwrite LILO and go back later to
manually re-install and re-configure LILO.
</term>
<listitem>
<para>
This is not a bad choice, especially when Windows is the
secondary OS, but potential pitfalls are that when Windows
updates itself, it may attempt to overwrite the MBR (master boot record)
again, and you'll have to re-install LILO manually again.
</para>
<para>
To re-establish LILO after another OS has erased it, you can
boot from your Slackware install media and enter the setup
stage. Do <emphasis>not</emphasis> re-partition your drive or
re-install Slackware; skip immediately to <xref
linkend="install_setup_config"/>.
</para>
<para>
Even when using the "simple" option to install, LILO
should detect both operating systems and automatically configure
a sensible menu for you. If it fails, then add the entries
yourself.
</para>
<!-- i do not have access to windows and cannot confirm this
<para>
An entry in LILO for a Windows partition might look something
like this:
</para>
<programlisting>
other = /dev/sda2
label = non-linux
</programlisting>
-->
</listitem>
</varlistentry>
</variablelist>
</section> <!-- closing dual parts -->
<section id="boot_dual_drive">
<title>Dual Booting from Hard Drives</title>
<para>
Dual booting between different physical hard drives is often
easier than with partitions since the computer's BIOS or EFI
almost invariably has a boot device chooser that allows you to
interrupt the boot process immediately after POST and choose what
drive should get priority.
</para>
<para>
The snag key to enter the boot picker is different for each brand
of motherboard; consult the motherboard's manual or read the
splash screen to find out what your computer requires. Typical
keys are <keycap>F1</keycap>, <keycap>F12</keycap>,
<keycap>DEL</keycap>. For Apple computers, it is always the
<keycap>Option</keycap> (Alt) key.
</para>
<para>
If you manage the boot priority via BIOS or EFI, then each boot
loader on each hard drive is only aware of its own drive and will
never interfere with one another. This is rather contrary to what
a boot loader is designed to do but can be a useful workaround
when dealing with proprietary operating systems which insist upon
being the only OS on the system, to the detriment of the user's
preference.
</para>
<para>
If you don't have the luxury of having multiple internal hard
drives and don't feel comfortable juggling another partition and
OS on your computer, you might also consider using a bootable USB thumbdrive or even a
virtual machine to give you access to another OS. Both of these
options is outside the scope of this book, but they've commonplace
and might be the right choice for you, depending on your needs.
</para>
</section> <!-- closing dual drives -->
</section> <!-- closing dual boot -->
</chapter>
|