| 12 |
o read more about BSD package systems (pkg, cvsup) |
o read more about BSD package systems (pkg, cvsup) |
| 13 |
x for simple package installation/de-installation use pkg |
x for simple package installation/de-installation use pkg |
| 14 |
x install downloaded package: |
x install downloaded package: |
| 15 |
:# pkg_add <package>-<version>.tgz |
:# pkg_add {package}-{version}.tgz |
| 16 |
x install package via remote server(only if package is available as *latest*): |
x install package via remote server(only if package is available as *latest*): |
| 17 |
pkg_add -r <package>.tgz |
pkg_add -r {package}.tgz |
| 18 |
x using cvsup |
x using cvsup |
| 19 |
x newbies could use cvsupit (not what it really does..) |
x read http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html |
| 20 |
|
x newbies could use cvsupit: |
| 21 |
:# pkg_add -r cvsupit.tgz |
:# pkg_add -r cvsupit.tgz |
| 22 |
- cvsupit will proberly ask you for the default values it |
- cvsupit will proberly ask you for the default values it |
| 23 |
place at /etc/cvsupfile, which is used by cvsup |
place at /etc/cvsupfile, which is used by cvsup |
| 25 |
x if /etc/cvsupfile already exists and you know what you do, |
x if /etc/cvsupfile already exists and you know what you do, |
| 26 |
this command will update your system (maybe run it via cron...): |
this command will update your system (maybe run it via cron...): |
| 27 |
:# /usr/local/bin/cvsup -g -L 2 /etc/cvsupfile |
:# /usr/local/bin/cvsup -g -L 2 /etc/cvsupfile |
| 28 |
|
where '-g' tells cvsup not to use a GUI, '-L 2' sets default output level to 2 |
| 29 |
|
x for available cvs tags, look at http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvs-tags.html |
| 30 |
o whats about daemon start-stop scripts (like at linux: /etc/init.d/) ? |
o whats about daemon start-stop scripts (like at linux: /etc/init.d/) ? |
| 31 |
x configure and compile custom kernel: |
x configure and compile custom kernel: |
| 32 |
x read http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html |
x read http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html |
| 65 |
Use with care though, as this opens up the firewall and changes the way it works. |
Use with care though, as this opens up the firewall and changes the way it works. |
| 66 |
x firewall is enabled at /etc/rc.conf (or /etc/rc.conf.local) |
x firewall is enabled at /etc/rc.conf (or /etc/rc.conf.local) |
| 67 |
firewall_enabled = "YES" |
firewall_enabled = "YES" |
| 68 |
firewall_type = "<firewall_type>" |
firewall_type = "{firewall_type}" |
| 69 |
x <firewall_type> is either a case at /etc/rc.firewall (/etc/rc.firewall6 for ipv6) |
x where {firewall_type} is either a case at /etc/rc.firewall (/etc/rc.firewall6 for ipv6) |
| 70 |
or some custom file to read rules from. |
or some custom file to read rules from. |
| 71 |
x Use firewall_type = "OPEN" for default policy 'OPEN' (allow all) |
x Use firewall_type = "OPEN" for default policy 'OPEN' (allow all) |
| 72 |
|
|
| 94 |
x integrated new FormProcessing classes from phphtmllib (released one day after interface to binaryclouds Formbuilder was written ;) |
x integrated new FormProcessing classes from phphtmllib (released one day after interface to binaryclouds Formbuilder was written ;) |
| 95 |
x refactored DataItem to use now phphtmllib form processing instead of interface to binarycload |
x refactored DataItem to use now phphtmllib form processing instead of interface to binarycload |
| 96 |
o review code and move to phphtmllib |
o review code and move to phphtmllib |
|
|
|
| 97 |
o XOOPS (http://xoops.org) |
o XOOPS (http://xoops.org) |
| 98 |
XOOPS is a dynamic OO (Object Oriented) based open source portal script written in PHP. |
XOOPS is a dynamic OO (Object Oriented) based open source portal script written in PHP. |
| 99 |
It is the ideal tool for developing small to large dynamic community websites, intra company portals, |
It is the ideal tool for developing small to large dynamic community websites, intra company portals, |
| 154 |
- Create Database |
- Create Database |
| 155 |
:# mysqladmin create <database> |
:# mysqladmin create <database> |
| 156 |
- Set Privileges on databases(creates user too, if not exists...): |
- Set Privileges on databases(creates user too, if not exists...): |
| 157 |
mysql>grant all on <database>.* to <user> identified by "<pass>"; |
mysql>grant all on {database}.* to {user} identified by "{pass}"; |
| 158 |
mysql>grant all on <database>.* to <user>@<domain> identified by "<pass>"; |
mysql>grant all on {database}.* to {user}@{domain} identified by "{pass}"; |
| 159 |
|
|
| 160 |
|
|
| 161 |
- Document saving: |
- Document saving: |