unix:freebsd:system_builds:basic_freebsd_installation
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
unix:freebsd:system_builds:basic_freebsd_installation [2019/11/05 15:19] – rodolico | unix:freebsd:system_builds:basic_freebsd_installation [2025/01/06 19:15] (current) – rodolico | ||
---|---|---|---|
Line 9: | Line 9: | ||
When it comes time to partition the drive, I choose //manual// and set up from the command line. The main reason for this is that the FreeBSD installer in automatic mode does not allow you to set up without a swap partition, and I like **swap files** instead of swap partitions. While possibly slower, you have the flexibility to adjust the amount of space allocated to swap. This has saved me headaches in the past. | When it comes time to partition the drive, I choose //manual// and set up from the command line. The main reason for this is that the FreeBSD installer in automatic mode does not allow you to set up without a swap partition, and I like **swap files** instead of swap partitions. While possibly slower, you have the flexibility to adjust the amount of space allocated to swap. This has saved me headaches in the past. | ||
- | From the command line, do the following. This assumes your boot drive is ada0. This is directly stolen from [[http:// | + | Also, just because it simplifies things, I remove all of the data drives. Normally, we have a single boot drive, then several drives which will contain data, generally as a ZFS file system. By removing the drives, I know which one is the one I want to install onto. This can cause problems since adding drives after a system is configured can rename existing drives. However, if your boot drive is on an internal connection (most modern servers have this capability) or you make sure it is in the first drive bay, drive renaming is not an issue. |
+ | |||
+ | From the command line, do the following. This assumes your boot drive is ada0. This is directly stolen from [[http:// | ||
+ | |||
+ | We are working in blocks, for the most part, which are normally 512bytes long. | ||
<code bash> | <code bash> | ||
Line 15: | Line 19: | ||
gpart create -s gpt ada0 | gpart create -s gpt ada0 | ||
# add a very, very small partition for boot | # add a very, very small partition for boot | ||
- | gpart add -t freebsd-boot -s 512k -a4k -l ssdboot ada0 | + | # This begins at block 40 (2M) and is 472 blocks long (236k) |
+ | gpart add -t freebsd-boot -b 40 -s 472 -l ssdboot ada0 | ||
# set it up to be bootable | # set it up to be bootable | ||
gpart bootcode -b /boot/pmbr -p / | gpart bootcode -b /boot/pmbr -p / | ||
Line 21: | Line 26: | ||
# if you want, you can specify the size with the -s parameter | # if you want, you can specify the size with the -s parameter | ||
# as in '-s 100g' to only use 100G | # as in '-s 100g' to only use 100G | ||
+ | # For SSD's without TRIM, set at 80% of available space | ||
gpart add -t freebsd-ufs -l ssdrootfs -b 1m ada0 | gpart add -t freebsd-ufs -l ssdrootfs -b 1m ada0 | ||
# format the second partition. | # format the second partition. | ||
Line 30: | Line 36: | ||
**Note:** the referenced article actually uses separate partitions for /var and /usr. In my case, we are generally setting things up in a way that this is just over complication, | **Note:** the referenced article actually uses separate partitions for /var and /usr. In my case, we are generally setting things up in a way that this is just over complication, | ||
- | Complete the installation | + | Complete the installation. |
- | ===== Post Installation | + | <code bash>pw user mod username -G wheel</ |
+ | |||
+ | where // | ||
+ | |||
+ | ===== Post Installation | ||
Note that /tmp is missing and there is no swap space. The first thing I want to do is set /tmp and /var/tmp to use the same ramdisk (aka tmpfs). Assuming I have sufficient RAM, I can allocate some space for tmp, which makes things faster and cleaner. | Note that /tmp is missing and there is no swap space. The first thing I want to do is set /tmp and /var/tmp to use the same ramdisk (aka tmpfs). Assuming I have sufficient RAM, I can allocate some space for tmp, which makes things faster and cleaner. | ||
Additionally, | Additionally, | ||
+ | |||
+ | - Make a backup copy of /etc/fstab | ||
+ | - create a 4G file to be used for swap space. modify size as necessary | ||
+ | - Create the entry in fstab for the swap space | ||
+ | - turn on swap | ||
+ | - create a tmpfs entry in fstab for /tmp | ||
+ | - move /var/tmp to point to /tmp | ||
+ | - activate /tmp. This could cause instability if something is being used, so reboot very soon | ||
+ | - display mounts (prove we did what we expected to) | ||
+ | - reboot to be on safe side | ||
<code bash> | <code bash> | ||
- | # create a 4G file to be used for swap space. modify size as necessary | + | cp /etc/fstab /etc/fstab.bak |
dd if=/ | dd if=/ | ||
- | # Create the entry in fstab | ||
echo ' | echo ' | ||
- | # create | + | swapon -a |
echo ' | echo ' | ||
- | # move /var/tmp to point to /tmp | ||
rm -fR /var/tmp | rm -fR /var/tmp | ||
ln -s /tmp /var/tmp | ln -s /tmp /var/tmp | ||
- | # activate /tmp. This could cause instability | ||
rm -fR /tmp/* | rm -fR /tmp/* | ||
mount /tmp | mount /tmp | ||
- | # Just to be on the safe side, reboot | + | mount |
reboot | reboot | ||
</ | </ | ||
+ | ===== Install some basic packages ===== | ||
- | I generally like some things that are not installed by default for FreeBSD (or Debian | + | I generally like some things that are not installed by default for FreeBSD (or Linux, or Microsoft Windows, or Apple OSX, for that matter). For instance, I accept the larger size of bash for the extra functionality, |
+ | * joe (because it's my favorite editor) | ||
+ | * bash (a lot more robust than sh) | ||
+ | * perl5 (I write a lot of perl scripts) | ||
+ | * pv (very cool for long running copies) | ||
+ | * sudo (allows users to be elevated to root without giving them root's password) | ||
+ | * screen (very, very cool for long running processes) | ||
+ | * webmin (if you want a webui for managing a lot of things on the system) | ||
+ | * ipmitool (if this is a server with ipmi enabled functions) | ||
+ | * pbzip2 and xz (good compression technologies) | ||
+ | * smartmontools (monitors your hard drive health) | ||
+ | * postfix (if you need a full MTA) | ||
- | Because of that, I tend to write sets of scripts and/or instructions. | + | I've label the steps as to indicate what the code is setting up so you can easily not use some packages. |
- | <code bash basicinstall.sh> | + | - Install the packages<code bash> |
- | #! / | + | pkg install joe perl5 pv pbzip2 sudo screen |
- | + | </ | |
- | #NOTE: this is an sh script, the default for FreeBSD | + | - Choose a mailer |
- | #sh requires the # for a comment be a part of a word, | + | - dma - small smtp server |
- | #thus the commenting style here. | + | - edit /etc/dma/dma.conf to meet your needs. Fully commentend, or man dma |
- | #we install bash which is a more powerful shell that I | + | - Create |
- | #like a lot. | + | - postfix |
- | + | - Set up postfix and disable | |
- | #install some basic tools. screen is a very useful tool. | + | |
- | #I use sudo to give users access to root without knowing the password | + | |
- | + | ||
- | pkg install joe postfix bash perl5 pv pbzip2 sudo screen | + | |
- | + | ||
- | #Expect the question, and answer " | + | |
- | #Would you like to activate Postfix in /etc/mail/mailer.conf [n]? y | + | |
- | + | ||
- | #now that they are installed, start configuring them. | + | |
- | + | ||
- | #Add IPMI if desired. Note that IPMI is only useful | + | |
- | #for physical machines that have the IPMI interface | + | |
- | + | ||
- | #enable ipmi module | + | |
- | pkg install | + | |
- | kldload ipmi | + | |
- | echo ' | + | |
- | + | ||
- | #set up bash | + | |
- | mount -t fdescfs fdesc /dev/fd | + | |
- | cp /etc/fstab /etc/fstab.bak | + | |
- | echo '# enable bash' >> /etc/fstab | + | |
- | echo ' | + | |
- | chsh -s bash rodolico | + | |
- | + | ||
- | + | ||
- | #shut down sendmail, disable it, and enable postfix | + | |
service sendmail stop | service sendmail stop | ||
sysrc postfix_enable=" | sysrc postfix_enable=" | ||
sysrc sendmail_enable=" | sysrc sendmail_enable=" | ||
- | |||
- | #sets up postfix configuration as only mail server | ||
mv / | mv / | ||
install -m 0644 / | install -m 0644 / | ||
- | |||
- | #clean up some stuff left over by sendmail | ||
echo ' | echo ' | ||
echo ' | echo ' | ||
echo ' | echo ' | ||
echo ' | echo ' | ||
- | #add postfix user to mail group so it has access to sasl | ||
pw group mod mail -m postfix | pw group mod mail -m postfix | ||
- | #start postfix | ||
service postfix start | service postfix start | ||
- | #configuration stored in / | + | </ |
+ | - Set up bash (optional)< | ||
+ | cp /etc/fstab / | ||
+ | echo '# enable bash' >> / | ||
+ | echo ' | ||
+ | chsh -s bash username | ||
+ | </ | ||
+ | - Set up webmin< | ||
+ | echo " | ||
+ | / | ||
+ | - Set up ipmitool< | ||
+ | echo ' | ||
+ | - Set up smartmontools to monitor your drives< | ||
+ | cp / | ||
+ | echo ' | ||
+ | chmod 755 / | ||
+ | echo ' | ||
+ | service smartd start | ||
</ | </ | ||
- | Note: when you created a new user, if you did not add them to the wheel group, you will need to do that after the fact (or they can not issue the su command to become root). Add a user to the wheel group with the following: | + | ===== References ===== |
+ | * [[https://doxfer.webmin.com/ | ||
+ | * [[http:// | ||
+ | * [[https:// | ||
- | < | ||
- | |||
- | where // |
unix/freebsd/system_builds/basic_freebsd_installation.1572988781.txt.gz · Last modified: 2019/11/05 15:19 by rodolico