| 26 |
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 |
| 27 |
x create custom kernel conf-file |
x create custom kernel conf-file |
| 28 |
- cd usr/src/sys/i386/conf/ |
- cd usr/src/sys/i386/conf/ |
| 29 |
- copy default kenrnel GENERIC to eg MYKERNEL |
- copy default kernel GENERIC to eg MYKERNEL |
| 30 |
- edit/modify MYKERNEL |
- edit/modify MYKERNEL |
| 31 |
x configure sources(really?) |
x configure sources(really?) |
| 32 |
- run /usr/sbin/config MYKERNEL |
- run /usr/sbin/config MYKERNEL |
| 65 |
x Use firewall_type = "OPEN" for default policy 'OPEN' (allow all) |
x Use firewall_type = "OPEN" for default policy 'OPEN' (allow all) |
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
- Backup: |
| 70 |
|
x bacula (http://www.bacula.org) |
| 71 |
|
Bacula is a set of computer programs that permit you (or the system administrator) to manage backup, |
| 72 |
|
recovery, and verification of computer data across a network of computers of different kinds. |
| 73 |
|
In technical terms, it is a network client/server based backup program. |
| 74 |
|
Bacula is relatively easy to use and efficient, while offering many advanced storage management features |
| 75 |
|
that make it easy to find and recover lost or damaged files. |
| 76 |
|
Bacula source code has been released under the GPL version 2 license. |
| 77 |
|
x created debian package, cause we can't found any other |
| 78 |
|
x wrote some notes about how to build an debian binary package |
| 79 |
|
http://www.netfrag.org/~jonen/computing/docs/build_bacula_deb.html |
| 80 |
|
o create 'postinst' and 'prerm' scripts for saving configs on update, etc. |
| 81 |
|
x tested network backup with Director, Storage Daemon and File Daemon(Client) |
| 82 |
|
at different hosts, works great! |
| 83 |
|
x tested backup to FileStorage, instead of using tapes drives |
| 84 |
|
(if someone would like to sponsor some tape drive, you're more than welcome!) |
| 85 |
|
notes: |
| 86 |
|
x remember to use different 'LabelFormat' filename at each pool ! |
| 87 |
|
x use compression at 'FileSet' definition, where GZIP is equal to GZIP6, means compression-level 6 (1-9) |
| 88 |
|
example: |
| 89 |
|
# ====== snip FileSet ============ |
| 90 |
|
FileSet { |
| 91 |
|
Name = "Full Set" |
| 92 |
|
Include = signature=MD5 compression=GZIP { |
| 93 |
|
/home |
| 94 |
|
} |
| 95 |
|
Exclude = { *.o } |
| 96 |
|
} |
| 97 |
|
# ====== snip FileSet ============ |
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
- Linux & Wireless Lan: |
- Linux & Wireless Lan: |
| 102 |
x install modules: |
x install modules: |
| 103 |
x prims2 chipset based: |
x prims2 chipset based: |
| 124 |
o use IPSEC |
o use IPSEC |
| 125 |
o or some other ideas? |
o or some other ideas? |
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
- Linux & Bluetooth |
- Linux & Bluetooth |
| 130 |
With some tweaking bluetooth works as expected. |
With some tweaking bluetooth works as expected. |
| 131 |
You will need the above mentioned patch patch-2.4.20-mh6 to have full functionality with 2.4.20. Then add |
You will need the above mentioned patch patch-2.4.20-mh6 to have full functionality with 2.4.20. Then add |
| 244 |
#-------- end post ------------------------------- |
#-------- end post ------------------------------- |
| 245 |
|
|
| 246 |
|
|
|
- Backup: |
|
|
x bacula (http://www.bacula.org) |
|
|
Bacula is a set of computer programs that permit you (or the system administrator) to manage backup, |
|
|
recovery, and verification of computer data across a network of computers of different kinds. |
|
|
In technical terms, it is a network client/server based backup program. |
|
|
Bacula is relatively easy to use and efficient, while offering many advanced storage management features |
|
|
that make it easy to find and recover lost or damaged files. |
|
|
Bacula source code has been released under the GPL version 2 license. |
|
|
x created debian package, cause we can't found any other |
|
|
x wrote some notes about how to build an debian binary package |
|
|
http://www.netfrag.org/~jonen/computing/docs/build_bacula_deb.html |
|
|
o create 'postinst' and 'prerm' scripts for saving configs on update, etc. |
|
|
x tested network backup with Director, Storage Daemon and File Daemon(Client) |
|
|
at different hosts, works great! |
|
|
x tested backup to FileStorage, instead of using tapes drives |
|
|
(if someone would like to sponsor some tape drive, you're more than welcome!) |
|
|
notes: |
|
|
x remember to use different 'LabelFormat' filename at each pool ! |
|
|
x use compression at 'FileSet' definition, where GZIP is equal to GZIP6, means compression-level 6 (1-9) |
|
|
example: |
|
|
# ====== snip FileSet ============ |
|
|
FileSet { |
|
|
Name = "Full Set" |
|
|
Include = signature=MD5 compression=GZIP { |
|
|
/home |
|
|
} |
|
|
Exclude = { *.o } |
|
|
} |
|
|
# ====== snip FileSet ============ |
|
|
|
|
|
|
|
| 247 |
- misc: |
- misc: |
| 248 |
x finding processes using special device(module) and kill them(example for alsa modules): |
x finding processes using special device(module) and kill them(example for alsa modules): |
| 249 |
:# lsof -t /dev/{audio,dsp,midi,mixer,music,sequencer,sndstat} | xargs kill |
:# lsof -t /dev/{audio,dsp,midi,mixer,music,sequencer,sndstat} | xargs kill |
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
<hr/> |
<hr/> |
| 254 |
$Id$ |
$Id$ |