Changes between Version 131 and Version 132 of NanoBSD
- Timestamp:
- Sep 21, 2010, 2:54:15 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NanoBSD
v131 v132 48 48 Edit the shell configuration file .cshrc: 49 49 {{{ 50 vi /root/.cshrc 51 }}} 52 check whether ftp is set to passive mode, to avoid potential firewall issues: 53 {{{ 50 $ cat <<EOF >> $HOME/.cshrc 51 # check whether ftp is set to passive mode, to avoid potential firewall issues: 54 52 setenv FTP_PASSIVE_MODE YES 55 }}} 56 set a default password for the images that you will produce 57 {{{ 53 54 # set a default password for the images that you will produce 58 55 setenv CFG_ROOT_PASSWORD [default password] 59 }}} 60 and define the svn download directory: 61 {{{ 56 57 # define the svn download directory: 62 58 setenv R /root/nanobsd 63 }}} 59 EOF 60 }}} 61 Next load your file (or login again): 62 $ source $HOME/.cshrc 64 63 65 64 A.5. install subversion . … … 105 104 For use of a Davicom DM9601 USB network controler you have to patch usbdevs and the if_udav driver: 106 105 {{{ 107 cd /usr/src/sys/dev/usb/ 108 patch < /root/nanobsd/misc/patches/usbdevs.patch 109 cd /usr/src/sys/dev/usb/net/ 110 patch < /root/nanobsd/misc/patches/if_udav.c.patch 106 $ patch -d /usr/src/sys/dev/usb -i /root/nanobsd/misc/patches/usbdevs.patch 107 $ patch -d /usr/src/sys/dev/usb/net -i /root/nanobsd/misc/patches/if_udav.c.patch 111 108 }}} 112 109