[ add comment ] ( 10 views ) | [ 0 trackbacks ] | permalink
http://www.mustwatch.cz/film/collapse/
[ add comment ] ( 5 views ) | [ 0 trackbacks ] | permalink
II-V-I dominantní jádro ¨
X /\ = Xmaj = Xj = velká 3, velká 7 (půltón od root), a 5 nebo 6, velká 9
X-7 = Xmin7 = Xm7 = malá 3, malá 7 (celý tón od root), a 5 nebo 6, velká 9
X7 = Xdom7 = velká 3, malá 7 (celý tón od root), a velká 6 nebo velká 9
Xsus7 = X7sus4 = velká 3 zvýšená o púltón, malá 7, velká 6, velká 9
akord se staví od 3 nebo 7 stupně
tritónová subsituce
Chord substitution often results from an attempt to provide smooth voice leading. Using the tritone substitution, the roots of the ii-V-I progression move down by half-steps, instead of ascending 4ths. For example, in the key of C the progression becomes Dm7, Db7, CM rather than Dm7, G7, CM.
http://hum.lss.wisc.edu/jazz/substitutions.html
[ 4 comments ] ( 17 views ) | [ 0 trackbacks ] | permalink
for example, when you are at the console in mc, copying files, and some kernel event is put on screen then it helps to get out the mess
[ add comment ] ( 5 views ) | [ 0 trackbacks ] | permalink
increasing the number of veth/vif pairs, may be ignored by modprobe since 5.3
options netloop nloopbacks=16
increasing the max number of file loopbacks (/dev/loop*)
options loop max_loop=32
the option of /etc/modprobe.conf
# cat /etc/modprobe.conf
alias eth0 e1000e
alias eth1 e1000e
alias eth2 e1000e
alias eth3 e1000e
alias eth4 e1000e
alias eth5 e1000e
alias scsi_hostadapter sata_sil24
alias scsi_hostadapter1 ata_piix
alias scsi_hostadapter2 ahci
options loop max_loop=32
options netloop nloopbacks=16
[ add comment ] ( 6 views ) | [ 0 trackbacks ] | permalink
If you need to improve the antispam performance of Zimbra suite then the adding a few more settings could be helpful.
the defaukt zimbraMtaRestriction policy is set as below:
[linux ~]$ zmprov gacf | grep zimbraMtaRestriction
zimbraMtaRestriction: reject_invalid_hostname
zimbraMtaRestriction: reject_non_fqdn_sender
I'm using this:
[zimbra@linux ~]$ zmprov gacf | grep zimbraMtaRestriction zimbraMtaRestriction: reject_invalid_hostname
zimbraMtaRestriction: reject_non_fqdn_sender
zimbraMtaRestriction: reject_non_fqdn_recipient
zimbraMtaRestriction: reject_unknown_sender_domain
zimbraMtaRestriction: reject_unknown_recipient_domain
zimbraMtaRestriction: reject_unauth_pipelining
zimbraMtaRestriction: reject_unauth_destination
zimbraMtaRestriction: reject_rbl_client bl.spamcop.net
zimbraMtaRestriction: reject_rbl_client sbl.spamhaus.org
zimbraMtaRestriction: reject_rbl_client cbl.abuseat.org
zimbraMtaRestriction: reject_rbl_client dul.dnsbl.sorbs.net
to set the values use the following command:
[zimbra@linux ~]$ zmprov mcf zimbraMtaRestriction reject_invalid_hostname \
zimbraMtaRestriction reject_non_fqdn_sender \
zimbraMtaRestriction reject_non_fqdn_recipient \
zimbraMtaRestriction reject_unknown_sender_domain \
zimbraMtaRestriction reject_unknown_recipient_domain \
zimbraMtaRestriction reject_unauth_pipelining \
zimbraMtaRestriction reject_unauth_destination \
zimbraMtaRestriction "reject_rbl_client bl.spamcop.net" \
zimbraMtaRestriction "reject_rbl_client sbl.spamhaus.org" \
zimbraMtaRestriction "reject_rbl_client cbl.abuseat.org" \
zimbraMtaRestriction "reject_rbl_client dul.dnsbl.sorbs.net"
to turn on antispam filtering in zimbra (SpamAssassin):
zmlocalconfig -e amavis_dspam_enabled=true
reccomended reading
[ add comment ] ( 8 views ) | [ 0 trackbacks ] | permalink
get vlan
/etc/sysconfig/network-scripts>cat ifcfg-bond1.x
DEVICE=bond1.x
BOOTPROTO=none
BRIDGE=xenbr1
ONBOOT=yes
VLAN=yes
just a bridge
/etc/sysconfig/network-scripts>cat ifcfg-xenbr1
DEVICE=xenbr1
TYPE=Bridge
BOOTPROTO=none
ONBOOT=yes
DELAY=0
NM_CONTROLLED=no
with ip
/etc/sysconfig/network-scripts>cat ifcfg-xenbr0
DEVICE=xenbr0
TYPE=Bridge
BOOTPROTO=none
IPADDR=X.X.X.X
NETMASK=255.255.255.0
ONBOOT=yes
DELAY=0
NM_CONTROLLED=no
[ add comment ] ( 5 views ) | [ 0 trackbacks ] | permalink
[ add comment ] ( 5 views ) | [ 0 trackbacks ] | permalink
http://www.cyberciti.biz/nixcraft/linux ... ures/mrtg/
Install httpd, mod_ssl and net-snmp
yum install httpd
yum install mod_ssl
/etc/init.d/httpd start
chkconfig httpd on
yum install net-snmp-utils net-snmp
chkconfig --add snmpd
Put snmpd.conf in place
cat > /etc/snmp/snmpd.conf
com2sec local localhost public
group MyRWGroup v1 local
group MyRWGroup v2c local
group MyRWGroup usm local
view all included .1 80
access MyROGroup "" any noauth exact all none none
access MyRWGroup "" any noauth exact all all none
syslocation Unknown (edit /etc/snmp/snmpd.conf)
syscontact Root <root@localhost> (configure /etc/snmp/snmp.local.conf)
pass .1.3.6.1.4.1.4413.4.1 /usr/bin/ucd5820stat
Test and install mrtg
service snmpd restart
snmpwalk -v 1 -c public localhost IP-MIB::ipAdEntIfIndex
chkconfig snmpd on
yum install mrtg
Create config
mkdir -p /var/www/html/mymrtg/
cfgmaker --global 'WorkDir: /var/www/html/mymrtg' --output /etc/mrtg/mymrtg.cfg public@localhost
Generate index.html
vi /etc/mrtg/mymrtg.cfg
indexmaker --output=/var/www/html/mymrtg/index.html /etc/mrtg/mymrtg.cfg
Setup script
cat > /sbin/mymrtg.sh
#!/bin/bash
env LANG=C /usr/bin/mrtg /etc/mrtg/mymrtg.cfg 2>&1 1>/dev/null
^D
Install script
chmod +x /sbin/mymrtg.sh
/sbin/mymrtg.sh
crontab -e
Put crontab on
crontab -l
*/5 * * * * /sbin/mymrtg.sh
[ add comment ] ( 6 views ) | [ 0 trackbacks ] | permalink
http://www.hvar.komerce.cz/fakebook/
http://www.sheetmusicdirect.com/
http://www.youtube.com/watch?v=xWKwQuE9g7U&NR=1
[ 5 comments ] ( 16 views ) | [ 0 trackbacks ] | permalink