Description
FreeBSD installer wizard
Project information
FreeBSD Easy Installation Generator is an web application (PHP script) which creates one big installation script for FreeBSD applications and configurations.
People who often install/configure FreeBSD can change a lot of manual configuration items into automatic ones (like installing Ports, changing banners etc).
Features:
- Automatic installation of some common ports (and easily extendable by editting the installation script)
- Update `locate` database
- Automatic reboot after installation
System requirements:
FreeBSD and default shell (/bin/sh)
Supported operating systems
Supported operating systems
- FreeBSD
Installer : http://www.rootkit.nl/freebsd/installer.php
Referance: http://rootkit.nl/projects/freebsd_easy_installation_generator.html
Results > Posts Filed Under > FreeBsd
FreeBSD Easy Installation Generator
adding ip to the freebsd server, freebsd ip add,More IP address on One NIC in freebsd
Setup 2 or More IP address on One NIC
# ifconfig se0 inet 192.168.X.X netmask 255.255.255.255 alias
To have this IP alias loaded after reboot then edit and add the following line to /etc/rc.conf
Code:
Quote:
# ifconfig_se0_alias0=”inet 192.168.X.X netmask 255.255.255.255″
To remove the IP address:
Code:
Quote:
# ifconfig se0 inet 192.168.X.X -alias
Finally, Restart FreeBSD network service using network restart script:
# /etc/rc.d/netif restart && /etc/rc.d/routing restart
Display alias and real ip using ifconfig se0 command:
# ifconfig se0
here is the example rc.conf
hostname=”static.pearlin.info”
# default router interface
defaultrouter=”10.10.1.1″
ifconfig_em0=”inet 10.10.1.2 netmask 255.255.255.0″
ifconfig_em0_alias0=”inet …
how to start stop network service in freebsd, restart stop network in freebsd
FreeBSD is a Unix-like free operating system. You can install to choose third party software on FreeBSD from the Ports Collection. Many services such as POP3 server daemons, IMAP, etc. could be started using the inetd.
However, networking can be stop or started using special script located in /etc/rc.d/ directory. This directory includes script to stop or start network, and other services such as SSH server.
FreeBSD 5.x/6.x and above version – start or stop network
FreeBSD 5.x/6.x and above version comes with …
Obtaining the Ports Collection in freebsd, Ports collection in freebsd
Before you can install ports, you must first obtain the Ports Collection–which is essentially a set of Makefiles, patches, and description files placed in /usr/ports.
When installing your FreeBSD system, sysinstall asked if you would like to install the Ports Collection. If you chose no, you can follow these instructions to obtain the ports collection:
CVSup Method
This is a quick method for getting and keeping your copy of the Ports Collection up to date using CVSup protocol. If you want to learn …