StudyBSD

Episode 000 - Installing NetBSD 4.0Our first video from 2007


In this archive episode from 2007, Allan walks you through installing NetBSD 4.0 and compiling the lynx text-bases web browser and perl from source code. Then we add a regular user account and add them to the wheel group.


Show Notes:

Compile Lynx:

    ftp lynx.isc.org
	user ftp
	pass bleh
    cd release
    get lynx2.8.6.tar.gz
    quit
    tar -xzf lynx2.8.6.tar.gz
    cd lynx2-8-6
    ./configure
    make 
    make install
    rehash
    whereis lynx

Compile Perl:

    lynx http://www.perl.com
	  (find and download the latest stable version of perl)
    tar -xzf stable.tar.gz
    cd perl-5.8.8
    ./Configure -de
    make all install
    rehash

Add a User, allow them to su to root:

    useradd -m -s /bin/ksh -c 'Test User' testuser
    passwd testuser
    usermod -G wheel testuser
By:
blog comments powered by Disqus

Page Generated in 377ms