HowTo: Upgrade FreeBSD 7.2 To FreeBSD 8 Using csup

ht‮:spt‬//www.lautturi.com
HowTo: Upgrade FreeBSD 7.2 To FreeBSD 8 Using csup

To upgrade FreeBSD 7.2 to FreeBSD 8 using csup, you will need to follow these steps:

  1. Install csup:

  2. csup is not installed by default on FreeBSD systems. To install it, you will need to run the following command:

pkg install csup
  1. Create a supfile:

  2. csup uses a configuration file called a supfile to specify the sources of the update. To create a supfile, you will need to create a new file in the /etc directory with the following content:

*default host=cvsup.freebsd.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=RELENG_8
*default delete use-rel-suffix
src-all
  1. This supfile specifies the cvsup.freebsd.org server as the source of the update, and the RELENG_8 tag as the target release.

  2. Run csup:

  3. Run the csup command with the supfile as the argument. For example:

csup /etc/supfile
  1. This will start the update process, which may take some time depending on the speed of your internet connection and the size of the update.

  2. Upgrade the system:

  3. After csup has completed downloading the updates, you will need to run the freebsd-update .

Created Time:2017-10-29 22:08:45  Author:lautturi