Per Lidén wrote this handbook. RobertMcMeekin converted it to DocBook, the CRUX team made a Wiki version. Numerous others have given feedback and improvement suggestions.
CRUX is a lightweight, i686-optimized Linux distribution targeted at experienced Linux users. The primary focus of this distribution is "keep it simple", which it reflects in a simple tar.gz-based package system, BSD-style initscripts, and a relatively small collection of trimmed packages. The secondary focus is utilization of new Linux features and recent tools and libraries. CRUX also has a ports system which makes it easy to install and upgrade applications.
There are many Linux distributions out there these days, so what makes CRUX any better than the others? The choice of distribution is a matter of taste, really. Here are a few hints about the tastes and goals of the people behind CRUX. CRUX is made with simplicity in mind from beginning to end. Making it easy to create new and update old packages is essential; updating a package in CRUX is often just a matter of typing pkgmk -d -u. The usage of ports helps keep your packages up-to-date; not the latest bleeding-edge-alpha version, but the latest stable version. Other features include creating packages optimized for your processor, eg. by compiling with -march=i686, and avoiding cluttering the filesystem with files you'll never use, eg. /usr/doc/*, etc. If you need more information about a specific program, other than information found in the man-page, Google usually knows all about it. Finally, it strives to use new features as they become available, as long as they are consistent with the rest of the goals.
In short, CRUX might suit you very well if you are:
Since CRUX is a Linux distribution, it contains software written by a lot of different people. Each software package comes with its own license, chosen by its author(s). To find out how a particular package is licensed, have a look at its source code.
All package build scripts in CRUX (in package categories core, opt, and xorg) are Copyright © 2000-2012 by Per Lidén and the CRUX development team, and licensed through the GNU General Public License.
CRUX is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Use it at YOUR OWN RISK.
Packages on the official CRUX ISO image are compiled with optimization for i686 (Pentium-Pro/Celeron/Pentium-II) or newer processors. Do not try to install it on an i586 (Pentium, AMD K6/K6-II/K6-III) or lower processor, since it simply will not work.
A minimum of 160MB system memory is required to install CRUX from CD-ROM. It is possible to perform a custom chroot installation with only 16MB of RAM.
The kernel used during installation, i.e. when booting from the CRUX ISO image (El Torito), is compiled with the following disk controllers and USB support:
Subsystem | Driver(s) included in bootkernel |
---|---|
PATA/IDE | ALi, AMD/Nvidia, ARTOP 6210/6260, ATI, CMD64x, CS5510/30/35/36, Cypress CY82C693, EFAR SLC90E66, HPT 34x/36x/37x, ITE 8211/12/13, JMicron, Marvell, NETCELL Revolution, Ninja32/Delkin, Nat Semi NS8741x, Intel PIIX/SCH/MPIIX, OPTI FireStar/621x, Promise, RADISYS 82600, SC1200, SERVERWORKS OSB4/CSB5/CSB6/HT1000, CMD / Silicon Image 680, SiS, Compaq Triflex, VIA, Winbond SL82C105, ISA Plug & Play, PC Tech RZ1000, Generic |
SATA | AHCI, Intel ESB/ICH/PIIX, Initio 162x, Silicon Image/Silicon Image 31xx, Pacific Digital ADMA/QStor, Promise SX4/TX2/TX4, Marvell, Nvidia, SiS 180/96x, Broadcom/ServerWorks/Apple K2, ULi, VIA, Vitesse VSC7174/Intel 31244 |
SCSI/SAS | 3Ware 5/6/7/8/9xxx, HP Smart Array, 7000FASST, ACARD, Adaptec AHA15xx/28xx, Adaptec AACRAID, Adaptec AIC7xxx/79xx/94xx, Adaptec I20, Marvell 88SE64xx/94xx, Advansys, Always IN2000, ARECA 11xx/12xx/13xx/16xx, LSI Logic New/Legacy/MegaRAID/MPT, HighPoint RocketRAID 3xxx/4xxx, BusLogic, VMware PVSCSI, DMX3191D, DTC 3x80, EATA, Future Domain 16xx/Adaptec AHA2920A, Intel/ICP, IBM ServeRAID/Power Linux, Initio 9100U/INI-A100U2W, NCR53c406a, Promise SuperTrak EX, SYM53C8xx, PAS16, Qlogic FAS, Qlogic QLA 1xxxx/2xxx, Qlogic ISP 4xxx/82xx, Emulex LightPulse FC, Symbios 53c416, Tekram DCxxx, Trantor Txxx, UltraStor, UltraStor 14F/34F |
USB | EHCI HCD (USB 2.0) support, UHCI (Intel PIIX4, VIA, ...) support, OHCI (Compaq, iMacs, OPTi, SiS, ALi, ...) support, USB Mass Storage support, USB Human Interface Device (full HID) support, HID input layer support |
In order to install CRUX, your disk controller must be present in the list above. If your hardware is not supported or you have other problems installing CRUX, you might find a solution in Section "Alternative Installation Methods".
$ md5sum crux-2.8.iso
Compare the output with the file crux-2.8.md5sum, which can be found in the same directory as the ISO image on the download site. If the checksums match, the download was successful and you can continue by burning the ISO image to a CD.
Enter
at the boot prompt (you might have to adjust the root=
parameter, depending on your hardware configuration).
$ fdisk /dev/hd? $ mkfs.???? /dev/hd?? $ mkswap /dev/hd??
Note
The amount of disk space required depends on how many packages are selected to install. It is recommended to have at least a 1G root partition (CRUX will use about 200MB-500MB, depending on your configuration).
CRUX supports all the filesystems supported as root filesystems by the linux kernel: btrfs, ext2, ext3, ext4, JFS, reiserfs and XFS. Further, it is highly recommended to separate the system data from user data, i.e. use a separate partition for /home (and possibly /var) since that will make your life a lot easier the day you want to upgrade/reinstall/remove your system.
Note
$ mount /dev/hd?? /mnt
If you want the installation to span more than one partition, mount those partitions as well. For example, if you want to have a different partition for /home or /var, then do:
$ mkdir /mnt/var $ mount /dev/hd?? /mnt/var
$ swapon /dev/hd??
After the packages have finished installing, the setup script will display an installation log. Make sure the last line in the log says “0 error(s)”
.
If you missed/forgot to install certain packages, you can just mount the CRUX CD-ROM and use pkgadd to install them.
$ mount --bind /dev /mnt/dev $ mount --bind /tmp /mnt/tmp $ mount -t proc proc /mnt/proc $ mount -t sysfs none /mnt/sys $ chroot /mnt /bin/bash
Note
$ passwd
$ cd /usr/src/linux-3.6.x $ make menuconfig $ make all $ make modules_install $ cp arch/x86/boot/bzImage /boot/vmlinuz $ cp System.map /boot
If you plan to use GRUB (which is included in the ISO) make sure you read the installation notes in the appendix of this document.
$ md5sum crux-2.8.iso
Compare the output with the file crux-2.8.md5sum, which can be found in the same directory as the ISO image on the download site. If the checksums match, the download was successful and you can continue by burning the ISO image to a CD.
Enter
at the boot prompt (you might have to adjust the root=
parameter, depending on your hardware configuration).
$ mount /dev/hd?? /mnt
If your installation spans over more than one partition, mount these partitions as well. For example, if you have a different partition for /var, then do:
$ mount /dev/hd?? /mnt/var
$ swapon /dev/hd??
Note
When the setup script has upgraded the selected packages an upgrade log will be displayed. Make sure the last line in the log says “0 error(s)”
. If you missed/forgot to install certain packages, you can just mount the CRUX CD-ROM and use pkgadd to install them (e.g. pkgadd /mnt/crux/opt/package#1.0-1.pkg.tar.gz).
$ mount --bind /dev /mnt/dev $ mount --bind /tmp /mnt/tmp $ mount -t proc proc /mnt/proc $ mount -t sysfs none /mnt/sys $ chroot /mnt /bin/bash
Note
# <dev> <dir> <type> <options> <dump> <pass> [..] devpts /dev/pts devpts defaults 0 0
If you plan to use GRUB (which is included in the ISO) make sure you read the installation notes in the appendix of this document.
The package system (pkgutils) is made with simplicity in mind, where all packages are plain tar.gz files (i.e. without any kind of meta data).
Packages follow the naming convention <name>#<version>-<release>.pkg.tar.gz, where <name> is the name of the program, <version> is the version number of the program, and <release> is the version number of the package.
The pkg.tar.gz extension is used (instead of just tar.gz) to indicate that this is not just any tar.gz file, but a tar.gz that is meant to be installed using pkgadd.
This helps distinguish packages from other tar.gz files.
pkgadd(8), pkgrm(8), pkginfo(8), and pkgmk(8) are the package management utilities. With these utilities you can install, uninstall, inspect, make packages, or query the package database.
When a package is installed using pkgadd a new record is added to the package database (stored in /var/lib/pkg/db). The basic package system does not have any kind of dependency checking, thus it will not warn you if you install a package that requires other packages to be installed. The included prt-get tool, however, does support dependencies.
The following sections will in short describe how to use the package utilities. Additional information about these utilities can be found on their respective man page.
Installing a package is done by using pkgadd. This utility requires at least one argument, the package you want to install. Example:
$ pkgadd bash#2.05-1.pkg.tar.gz
When installing a package the package manager will ensure that no previously installed files are overwritten. If conflicts are found, an error message will be printed and pkgadd will abort without installing the package. The error message will contain the names of the conflicting files. Example:
$ pkgadd bash#2.05-1.pkg.tar.gz bin/sh usr/man/man1/sh.1.gz pkgadd error: listed file(s) already installed (use -f to ignore and overwrite)
To force the installation and overwrite the conflicting files, you can use the option -f (or --force). Example:
$ pkgadd -f bash#2.05-1.pkg.tar.gz
The package system allows a file to be owned by exactly one package. When forcing an installation the ownership of the conflicting files will be transferred to the package that is currently being installed. Directories can however be owned by more then one package.
Warning
As earlier, the package file itself does not contain any meta data. Instead, the package manager uses the package filename to determine the package name and version. Thus, when installing a package file named bash#2.05-1.pkg.tar.gz, the package manager will interpret this as a package named bash at version 2.05-1. If pkgadd is unable to interpret the filename (e.g. # is missing or the filename does not end with .pkg.tar.gz) an error message will be printed and pkgadd will abort without installing the package.
Upgrading a package is done using pkgadd with the -u option. Example:
$ pkgadd -u bash#2.05-1.pkg.tar.gz
This will replace the previously installed bash package with the new one. If you have not previously installed bash, pkgadd will print an error message. The package system does not care about the version number of the package in that you can “upgrade” version 2.05-1 with version 2.04-1 (or even with version 2.05-1 itself). The installed package will be replaced with the specified package.
Upgrading a package is equivalent to executing pkgrm followed by pkgadd with one (big) exception. When upgrading a package (with pkgadd -u) you have the option to prevent some of the already installed files from getting replaced. This is typically useful when you want to preserve configuration and log files.
When executing pkgadd the file /etc/pkgadd.conf will be read. This file can contain rules describing how pkgadd should behave when doing upgrades. A rule is built out of three fragments; event, pattern and action. The event describes in what kind of situation this rule applies. Currently only one type of event is supported, that is UPGRADE. The pattern is a filename pattern expressed as a regular expression and the action applicable to the UPGRADE event is YES or NO. More than one rule of the same event type is allowed, in which case the first rule will have the lowest priority and the last rule will have the highest priority. Example:
# # /etc/pkgadd.conf: pkgadd(8) configuration # UPGRADE ^etc/.*$ NO UPGRADE ^var/log/.*$ NO UPGRADE ^etc/X11/.*$ YES UPGRADE ^etc/X11/xorg.conf$ NO # End of file
The above example will cause pkgadd to never upgrade anything in /etc/ or /var/log/ (subdirectories included), except files in /etc/X11/ (subdirectories included), unless it is the file /etc/X11/xorg.conf. The default rule is to upgrade everything, rules in this file are exceptions to that rule.
Note
If pkgadd finds that a specific file should not be upgraded, it will install it under /var/lib/pkg/rejected/. Files in this directory are never added to the package database. The user is then free to examine, use and/or remove that file manually. Another option is to use rejmerge. For each rejected file found in /var/lib/pkg/rejected/, rejmerge will display the difference between the installed version and the rejected version. The user can then choose to keep the installed version, upgrade to the rejected version or perform a merge of the two. Example (using the above /etc/pkgadd.conf):
$ pkgadd -u bash#2.05-1.pkg.tar.gz pkgadd: rejecting etc/profile, keeping existing version $ ls /var/lib/pkg/rejected/ etc/ $ ls /var/lib/pkg/rejected/etc/ profile
Removing a package is done by using pkgrm. This utility requires one argument, the name of the package you want to remove. Example:
$ pkgrm bash
Warning
Querying the package database is done using pkginfo. This utility has a few options to answer different queries.
Option | Description |
---|---|
-i, --installed | List installed packages and their version. |
-l, --list package|file | List files owned by the specified package or contained in file |
-o, --owner pattern | List owner(s) of file(s) matching pattern. |
Examples:
$ pkginfo -i audiofile 0.2.3-1 autoconf 2.52-1 automake 1.5-1 <...> xmms 1.2.7-1 zip 2.3-1 zlib 1.1.4-1
$ pkginfo -l bash bin/ bin/bash bin/sh etc/ etc/profile usr/ usr/man/ usr/man/man1/ usr/man/man1/bash.1.gz usr/man/man1/sh.1.gz
$ pkginfo -l grep#2.5-1.pkg.tar.gz usr/ usr/bin/ usr/bin/egrep usr/bin/fgrep usr/bin/grep usr/man/ usr/man/man1/ usr/man/man1/egrep.1.gz usr/man/man1/fgrep.1.gz usr/man/man1/grep.1.gz
$ pkginfo -o bin/ls e2fsprogs usr/bin/lsattr fileutils bin/ls modutils sbin/lsmod
To address the different requirements towards package management in CRUX, a number of users started discussion about an advanced package management frontend to pkgutils, with dependency handling and support for large install transactions. The result of this community effort is prt-get, a tool which provides a number of features on top of pkgutils while keeping pkgutils' original character and power. Its main features are
Nowadays prt-get is an official project and tool of the CRUX project.
A full description can be found in the manual of prt-get.
Creating a package is done using pkgmk. This utility uses a file called Pkgfile, which contains information about the package (such as name, version, etc) and the commands that should be executed in order to compile the package in question. To be more specific, the Pkgfile file is actually a bash(1) script, which defines a number of variables (name, version, release and source) and a function (build). Below is an example of what a Pkgfile file might look like. The example shows how to package the grep(1) utility. Some comments are inserted for explanation.
# Specify the name of the package. name=grep # Specify the version of the package. version=2.4.2 # Specify the package release. release=1 # The source(s) used to build this package. source=(ftp://ftp.ibiblio.org/pub/gnu/$name/$name-$version.tar.gz) # The build() function below will be called by pkgmk when # the listed source files have been unpacked. build() { # The first thing we do is to cd into the source directory. cd $name-$version # Run the configure script with desired arguments. # In this case we want to put grep under /usr/bin and # disable national language support. ./configure --prefix=/usr --disable-nls # Compile. make # Install the files, BUT do not install it under /usr, instead # we redirect all the files to $PKG/usr by setting the DESTDIR # variable. The $PKG variable points to a temporary directory # which will later be made into a tar.gz-file. Note that the # DESTDIR variable is not used by all Makefiles, some use prefix # and others use ROOT, etc. You have to inspect the Makefile in # question to find out. Some Makefiles do not support redirection # at all. In those cases you will have to create a patch for it. make DESTDIR=$PKG install # Remove unwanted files, in this case the info-pages. rm -rf $PKG/usr/info }
In reality you do not include all those comments, thus the real Pkgfile for grep(1) looks like this:
# Description: GNU grep, egrep and fgrep # URL: http://www.gnu.org/software/grep/grep.html # Maintainer: Per Lidén, per at fukt dot bth dot se name=grep version=2.4.2 release=1 source=(ftp://ftp.ibiblio.org/pub/gnu/$name/$name-$version.tar.gz) build() { cd $name-$version ./configure --prefix=/usr --disable-nls make make DESTDIR=$PKG install rm -rf $PKG/usr/info }
Note
When the build() function has been executed, the $PKG directory will be made into a package named <name>#<version>-<release>.pkg.tar.gz. Before the package creation is completed, pkgmk will check the content of the package against the .footprint file. If this file does not exist, it will be created and the test will be skipped. The .footprint file will contain a list of all files that should be in the package if the build was successful or a list of all the files that were installed in $PKG (if the .footprint did not already exist). If there is a mismatch the test will fail and an error message will be printed. You should not write the .footprint file by hand. Instead, when a package has been upgraded and you need to update the contents of the .footprint file you simply do pkgmk -uf. This test ensures that a rebuild of the package turned out as expected.
If the package built without errors it's time to install it by using pkgadd and try it out. I highly recommend looking at the Pkgfile in another package(s), since looking at examples is a great way to learn.
Many settings pertaining to the package build process can be adjusted by editing the pkgmk(8) configuration file /etc/pkgmk.conf. Some of these configurable settings include:
Here are some examples:
PKGMK_SOURCE_MIRRORS=(http://fileserver.intranet/crux/sources/)
This setting instructs pkgmk to attempt to fetch all source archives from http://fileserver.intranet/crux/sources/ before falling back to the source URL specified in the Pkgfile. Multiple URLS can be separated by spaces.
PKGMK_SOURCE_DIR="/usr/ports/srcfiles"
This example instructs pkgmk to store and find source archives in /usr/ports/srcfiles. An example benefit of this setup would be the ability to store /usr/ports/srcfiles on an NFS server on your local network for use by multiple crux installations. PKGMK_PACKAGE_DIR can be set and used the same way.
PKGMK_WORK_DIR="/usr/ports/work/$name"
This example instructs pkgmk to use /usr/ports/work/$name as a work area for building the specified package. Building the grep package would result in the work area being /usr/ports/work/grep. An alternative would be to use a tmpfs as your work directory.
There are a few more settings which can be found in the pkgmk.conf man page.
Directory | Description |
---|---|
/usr/bin/ | User command/application binaries |
/usr/sbin/ | System binaries (e.g. daemons) |
/usr/lib/ | Libraries |
/usr/include/ | Header files |
/usr/lib/<prog>/ | Plug-ins, addons, etc |
/usr/man/ | Man pages |
/usr/share/<prog>/ | Data files |
/usr/etc/<prog>/ | Configuration files |
/etc/ | Configuration files for system software (daemons, etc) |
name
, version
, release
, and source
. Other names could be in conflict with internal variables in pkgmk.
$name
and $version
variables to make the package easier to update/maintain. For example, source=(http://xyz.org/$name-$version.tar.gz) is better than source=(http://xyz.org/myprog-1.0.3.tar.gz) since the URL will automatically updated when you modify the $version
variable.
source=(...)
and not source=...
Provide a header including the following fields:
Name | Meaning |
---|---|
Description | A short description of the package; keep it factual |
Maintainer | Your full name and e-mail address, obfuscated if you want |
Packager | The original packager's full name and e-mail address |
URL | A webpage with more information on this software package |
Depends on | A list of dependencies, separated either by spaces or commas |
Depends on
can be omitted if there are no dependencies; Packager
can be omitted if the maintainer and packager are the same person.
Example header
# Description: Terminal based IRC client for UNIX systems # URL: http://www.irssi.org/ # Maintainer: Jukka Heino, jukka at karsikkopuu dot net # Packager: Daniel K. Gebhart, dkg at con-fuse dot org # Depends on: glib
A port is a directory containing the files needed for building a package using pkgmk. This means that this directory at least has the files Pkgfile (which is the package build description) and .footprint (which is used for regression testing and contains a list of files this package is expected to contain once it is built). Further, a port directory can contain patches and/or other files needed for building the package. It is important to understand that the actual source code for the package is not necessarily present in port directory. Instead the Pkgfile contains an URL which points to a location where the source can be downloaded.
The use of the word port in this context is borrowed from the BSD world, where a port refers to a program that has been ported to a system or platform. The word can sometimes be a bit misleading since most programs require no actual porting to run on CRUX (or on Linux in general).
The term Ports System refers to a remote repository containing ports and a client program capable of downloading ports from that repository. CRUX users use the ports(8) utility to download ports from the repository and place them in /usr/ports/. The ports utility uses rsync(1) to do the actual downloading/synchronization.
CRUX' ports are organized in so called collections. There are three different layers of ports:
core, opt and xorg are the three primary collections of CRUX. They're maintained by the CRUX development team which ensures that they're consistent and working well together. Those three collections are also enabled by default in CRUX.
The contrib collection is a collection which is provided by experienced port maintainers: some are part of the CRUX development team, while others are regular users. Its goal is to reduce the number of duplicate ports provided in the individual collections. If you're a seasoned port maintainer, you might even want to join the contrib collection.
As those ports are not provided officially by the CRUX development team, this collection is disabled by default.
Using HttpUp, every user can publish his or her own ports easily; the only requirement for that is some webspace to upload the ports. Publishing ports in an HttpUp repository is the easiest way to contribute back to the CRUX community.
When CRUX is installed for the first time the local ports structure (/usr/ports/) is empty. To bring your local ports structure up to date you use the ports utility with the -u option. Example:
$ ports -u
The -u option means update, and tells ports to contact the ports repository and download new and updated ports. The output from this execution is something like this:
Updating file list from crux.nu::ports/crux-2.8/core/ Updating collection ports/crux-2.8/core/ ... Updating file list from crux.nu::ports/crux-2.8/opt/ Updating collection ports/crux-2.8/opt/ ... Updating file list from crux.nu::ports/crux-2.8/xorg/ Updating collection ports/crux-2.8/xorg/ ... Finished successfully
The output reveals which files are downloaded, updated and deleted.
When the local ports structure has been updated the directory /usr/ports/ will contain two package categories, core and opt. Under each of these directories you will find ports. You can simply browse around in the directory structure to find out which ports are available.
$ cd /usr/ports/core/ $ ls autoconf/ gdbm/ ncurses/ sendmail/ automake/ gettext/ net-tools/ shadow/ bash/ glibc/ netkit-base/ slocate/ bc/ grep/ netkit-ftp/ strace/ bin86/ groff/ netkit-telnet/ sysfsutils/ bindutils/ grub/ nfs-utils/ sysklogd/ binutils/ gzip/ openssh/ sysvinit/ bison/ hdparm/ openssl/ tar/ bzip2/ hotplug/ patch/ tcp_wrappers/ coreutils/ httpup/ pciutils/ tcsh/ cpio/ iptables/ perl/ time/ curl/ jfsutils/ pkg-config/ traceroute/ db/ kbd/ pkgutils/ udev/ dcron/ less/ portmap/ unzip/ dhcpcd/ libstdc++-compat/ ports/ usbutils/ diffutils/ libtool/ ppp/ util-linux/ e2fsprogs/ libusb/ procps/ vim/ ed/ lilo/ prt-get/ wget/ expat/ m4/ psmisc/ which/ file/ make/ rc/ xfsprogs/ filesystem/ man/ rdate/ zip/ findutils/ man-pages/ readline/ zlib/ flex/ mktemp/ reiserfsprogs/ gawk/ module-init-tools/ rsync/ gcc/ nasm/ sed/
You can also use ports with the -l option to list all local ports. Example:
$ ports -l core/autoconf core/automake core/bash core/bc core/bin86 core/bindutils core/binutils ...
If you are looking for a specific package, it might be easier to use this approach (e.g. ports -l | grep sendmail
) to find out if the package is available and if so in which category it is located.
To find out if the ports structure carries ports that are different (likely newer) compared to the versions currently installed you can use the option -d. If version differences are found, the output from the above command could look something like this:
$ ports -d Collection Name Port Installed core glibc 2.3.6-3 2.3.6-2 opt gtk 2.8.12-1 2.8.11-1
If no version differences were found, i.e. the system is in sync with the ports structure, the output will simply be:
$ ports -d No differences found
Once you have found a port that you want to build and install you simply go into the desired port directory and use pkgmk to build it. Example:
$ cd /usr/ports/core/gawk $ pkgmk -d
The -d option means download missing source files and tells pkgmk to download the source(s) specified in the Pkgfile (in case the source is already downloaded this option is ignored). When the download is completed the package will be built. If the package was built successfully you can use pkgadd to install or upgrade it. Example:
$ pkgadd gawk#3.1.5-3.pkg.tar.gz
To make life a bit easier these two steps can be made into one by using the options -i (for install) or -u (for upgrade). Example:
$ pkgmk -d -i
or
$ pkgmk -d -u
This will download, build and then install/upgrade the package. Note that the package will only be installed/upgraded if the build is successful.
As previously mentioned, the 'contrib' collection contains useful ports of experienced port maintainers. Since they are not provided by the CRUX development team, you should be slightly more critical with respect to quality and security. However, most members of the 'contrib' collections are well respected members of the community.
To enable it for ports, do
$ cd /etc/ports $ mv contrib.rsync.inactive contrib.rsync
To let prt-get know that you want it to use the contrib tree too, edit /etc/prt-get.conf and uncomment the line prtdir /usr/ports/contrib
(i.e. remove the hashmark in the beginning of the line. After that, it should look like this:
### ### prt-get conf ### # note: the order matters: the package found first is used prtdir /usr/ports/core prtdir /usr/ports/opt # the folloing line enables the user maintained contrib collection prtdir /usr/ports/contrib
Now, run ports -u
and you're ready to use the ports from contrib.
Normaly building packages requires root-privileges. This is critical because a malicious or badly designed port can damage your system. The fakeroot command provides a way to build ports as normal user. Particularly when you build packages from user contributed repositories you should always invoke fakeroot:
$ fakeroot pkgmk -d
You can also make prt-get to use fakeroot. There is manual on the CRUX website describing how to achieve that.
Reagarding package and ports management there are many tasks which can be done in several steps with the CRUX standard tools introduced above. The port prt-utils in the opt repository contains a collection of such scripts. The usage of these scripts is documented in the corresponding man pages. In the documentation section of the CRUX website is an overview of all the scripts in prt-utils.
The following runlevels are used in CRUX (defined in /etc/inittab).
Runlevel | Description |
---|---|
0 | Halt |
1 (S) | Single-user Mode |
2 | Multi-user Mode |
3-5 | (Not used) |
6 | Reboot |
The initialization scripts used in CRUX follow the BSD-style (as opposed to the SysV-style) and have the following layout.
File | Description |
---|---|
/etc/rc | System boot script |
/etc/rc.single | Single-user startup script |
/etc/rc.modules | Module initialization script |
/etc/rc.multi | Multi-user startup script |
/etc/rc.local | Local multi-user startup script (empty by default) |
/etc/rc.shutdown | System shutdown script |
/etc/rc.conf | System configuration |
/etc/rc.d/ | Service start/stop script directory |
Modify /etc/rc.modules, /etc/rc.local and /etc/rc.conf according to your needs.
The following configuration variables are found in /etc/rc.conf.
Variable | Description |
FONT |
Specifies which console font to load at system startup. The contents of this variable will be passed as argument to setfont(1). The available fonts are located in /usr/share/kbd/consolefonts/. Example: |
KEYMAP |
Specifies which console keyboard map to load at system startup. The contents of this variable will be passed as argument to loadkeys(1). The available keyboard maps are located in /usr/share/kbd/keymaps/. Example: |
TIMEZONE |
Specifies the timezone used by the system. The available zone description files are located in /usr/share/zoneinfo/. Example: |
HOSTNAME |
Specifies the hostname. Example: |
SYSLOG |
Specifies the system logging daemon(s) to run at startup. Example: |
SERVICES |
Specifies which services to start at system startup. The services specified in this array must have a matching start/stop script in /etc/rc.d/. When entering multi-user mode the specified scripts will be called in the specified order with the argument start. At system shutdown or when entering single-user mode these scripts will be called in the reverse order with the argument stop. Example: |
Starting with CRUX 2.5, glibc does not contain all possible locales anymore, thus you'll have to generate the locales you need/use. The following example is a typical setup for swedish users, replace sv_SE*
with the locale you want:
# localedef -i sv_SE -f ISO-8859-1 sv_SE # localedef -i sv_SE -f ISO-8859-1 sv_SE.ISO-8859-1 # localedef -i sv_SE -f UTF-8 sv_SE.UTF-8
The network configuration is found in the service script /etc/rc.d/net. To enable this service you need to add net to the SERVICES array in /etc/rc.conf. By default this service script only configures the lo device and a static IP adress for eth0, you have to add additional ip(8) commands if you want to setup other network devices (eth0, eth1, etc). Example:
#!/bin/sh # # /etc/rc.d/net: start/stop network # case $1 in start) # loopback /sbin/ip addr add 127.0.0.1/8 dev lo broadcast + scope host /sbin/ip link set lo up # ethernet /sbin/ip addr add 192.168.1.100/24 dev eth0 broadcast + /sbin/ip link set eth0 up # default route /sbin/ip route add default via 192.168.1.1 ;; stop) /sbin/ip route del default /sbin/ip link set eth0 down /sbin/ip addr del 192.168.1.100/24 dev eth0 /sbin/ip link set lo down /sbin/ip addr del 127.0.0.1/8 dev lo ;; restart) $0 stop $0 start ;; *) echo "usage: $0 [start|stop|restart]" ;; esac # End of file
if you want to configure your system to be a DHCP client you use the dhcpcd(8) command (instead of ip(8)). Example:
#!/bin/sh # # /etc/rc.d/net: start/stop network # case $1 in start) # loopback /sbin/ip addr add 127.0.0.1/8 dev lo broadcast + scope host /sbin/ip link set lo up # ethernet /sbin/dhcpcd -t 10 ;; stop) /sbin/dhcpcd -x /sbin/ip link set lo down /sbin/ip addr del 127.0.0.1/8 dev lo ;; restart) $0 stop $0 start ;; *) echo "usage: $0 [start|stop|restart]" ;; esac # End of file
Note
Manual ip configuration (CRUX < 2.3):
#!/bin/sh # # /etc/rc.d/net: start/stop network # case $1 in start) /sbin/ifconfig lo 127.0.0.1 /sbin/ifconfig eth0 195.38.1.140 netmask 255.255.255.224 /sbin/ifconfig eth1 192.168.0.1 netmask 255.255.255.0 /sbin/route add default gw 195.38.1.129 ;; stop) /sbin/ifconfig eth1 down /sbin/ifconfig eth0 down /sbin/ifconfig lo down ;; restart) $0 stop $0 start ;; *) echo "usage: $0 [start|stop|restart]" ;; esac # End of file
DHCP Configuration (CRUX < 2.3):
#!/bin/sh # # /etc/rc.d/net: start/stop network # case $1 in start) /sbin/ifconfig lo 127.0.0.1 /sbin/dhcpcd eth0 [add additional options if needed] ;; stop) killall -q /sbin/dhcpcd /sbin/ifconfig lo down ;; restart) $0 stop $0 start ;; *) echo "usage: $0 [start|stop|restart]" ;; esac # End of file
CRUX uses SHA512 passwords by default. To change the password encryption method set the ENCRYPT_METHOD variable in /etc/login.defs to DES, MD5 or SHA256.
Furthermore, when compiling programs that use the crypt(3)
function to authenticate users you should make sure that these programs are linked against the libcrypt library (i.e. use -lcrypt when linking) which contains the SHA512 version of the crypt function (this version is backwards compatible and understands DES passwords as well).
The kernel source, which is found in /usr/src/linux-3.6.x/ is not installed using pkgadd. If you decide to upgrade your kernel you can safely do so by manually replacing the kernel source with a newer version (or place it somewhere else). This will not make the package database inconsistent (since it's not installed with pkgadd) nor will it affect the kernel headers found in /usr/include/linux and /usr/include/asm since these are not symlinks to the kernel source, but instead contain copies of the headers.
Many common problems are answered in the FAQ document, so if you experience problems please check whether http://crux.nu/Main/Faq contains answers to your questions already.
If you have further questions, there's a dedicated mailing list for CRUX, and an IRC channel. Actual information about these can be found on the Community page of our wiki.
CRUX 2.8 uses GNU GRUB 2. GRUB 0.9x has become "GRUB Legacy" and is no longer actively developed.
Installing a new boot manager is like modifying the partition table using fdisk or installing a new system kernel. Please create a rescue boot disk first!
To install GRUB, use grub-install:
# grub-install /dev/sdX
Replace /dev/sdX with the appropriate device node for the drive on which you want to install the boot loader, for example /dev/sda. grub-install copies the appropriate GRUB image files into /boot/grub and runs grub-setup to install the boot loader into the boot sector of the specified drive.
Once GRUB has been installed, a configuration file needs to be created.
GRUB can attempt to create a configuration file automatically with the grub-mkconfig tool. grub-mkconfig searches for installed kernels in a set of default locations. In order for grub-mkconfig to find the installed kernel it should be named something like the following:
For example, grub-mkconfig would be able to properly locate a kernel saved as /boot/vmlinuz-3.5.4 but NOT a kernel saved as /boot/linuxkernel-3.5.4.
Once the kernel is saved in the proper location, run grub-mkconfig to automatically create the GRUB configuration file. grub-mkconfig outputs the file to the standard output (stdout) by default:
# grub-mkconfig > /boot/grub/grub.cfg
grub-mkconfig's output can be altered by setting variables in a configuration file, /etc/default/grub. This file is NOT created by default and is not required. For more information, see the GRUB manual at http://www.gnu.org/software/grub/manual/.
If preferred, a grub.cfg file can be created manually. For more information see the GRUB manual at http://www.gnu.org/software/grub/manual/. A simple example configuration might look like the following:
# Display the menu for 10 seconds set timeout=10 # Boot the first entry by default set default=0 # Boot entries follow # Default CRUX boot entry menuentry "CRUX 2.8" { linux (hd0,msdos2)/boot/vmlinuz-3.5.4 root=/dev/sda2 quiet } # Single-user recovery entry menuentry "CRUX 2.8 single-user mode" { linux (hd0,msdos2)/boot/vmlinuz-3.5.4 root=/dev/sda2 quiet single } # Memory test entry menuentry "MemTest86+ 4.20" { linux16 (hd0,msdos2)/boot/memtest86+-4.20.bin }
Save the manual configuration file as /boot/grub/grub.cfg.