[ add comment ] ( 5 views ) | [ 0 trackbacks ] | permalink
# cat << STRING
> this is a string
> i need to print out
> on three lines
> STRING
this is a string
i need to print out
on three lines
in a script snippet
cat > /tmp/2file << EOF
this is a string
i need to print out
on three lines
EOF
[ add comment ] ( 5 views ) | [ 0 trackbacks ] | permalink
Maple
The Maple virtual midi cable is a midi driver for Windows 95/98/Me/2000/XP/Vista that can connect any midi applications on your system. http://www.hurchalla.com/Maple_driver.html
Audacity
Audacity is free, open source software for recording and editing sounds. It is available for Mac OS X, Microsoft Windows, GNU/Linux, and other operating systems. http://audacity.sourceforge.net/
[ add comment ] ( 5 views ) | [ 0 trackbacks ] | permalink
ssl ldap search without a base (eg. to get a base):
$ ldapsearch -h servername -p port_number -b "" \
-s base -D "uid=proxy" -Z -P /opt/DSRK6.3/etc/cert7.db \
-K /opt/DSRK6.3/etc/key3.d objectclass=* \
| grep ldap:
netscapemdsuffix: cn=ldap://dc=servername,dc=some_ds,dc=some_dc:389
ldapsearch
-h [server name]
myserver.mydomain.org
-p [server port]
123
-b [base name]
ou=people,ou=common,c=cz,o=mydomain,o=org
-s [Specify the scope of a search. The scope parameter
may have one of the following values:
# base - For searching only the base entry.
# one - For searching only the children of the base entry.
# sub - For searching the base entry and all its descendants (default)]
one
-D [account which performs a search]
"uid=proxy"
-w [password for the account]
blabla
-Z [make an SSL-encrypted connection]
-P [path to cert]
/opt/DSRK6.3/etc/cert7.db
-K [path to key]
/opt/DSRK6.3/etc/key3.db]
-v [run in verbose mode (diagnostics to standard output)]
-T [don't fold (wrap) long lines (default is to fold)]
-e [minimize base-64 encoding of values]
-1 [omit leading "version: 1" line in LDIF output]
[filter expression]
"(&(objectclass=posixaccount)(uid=username))"]
[which fields values]
"uid cn uidNumber gidNumber homeDirectory loginShell"
ssl ldap modify
cat > /tmp/change_shell
dn: uid=username,ou=people,ou=Common,l=***,c=***,o=***
changetype: modify
replace: loginShell
loginShell: /bin/bash
[ctrl+d]
ldapmodify -h servername -p ssl_port_number -D uid=some_user_or_proxy,ou=***,l=***,c=***,o=***k -w password \
-Z -P <certs-dir> -K <certs-dir> -f /tmp/change_shell
*A DN is typically composed of an ordered set of attribute type/attribute value pairs. Most DNs are composed of pairs in the following order:
* common name (cn)
* organization (o) or organizational unit (ou)
* country (c)
The following string-type attributes represent the set of standardized attribute types for accessing an LDAP directory. A DN can be composed of attributes with an LDAP syntax of Directory String, including the following:
* CN - CommonName
* L - LocalityName
* ST - StateOrProvinceName
* O - OrganizationName
* OU - OrganizationalUnitName
* C - CountryName
* STREET - StreetAddress
*(from IBM: http://publib.boulder.ibm.com/infocente ... gref11.htm)
syntax explained in more detail:
http://docs.sun.com/source/816-6400-10/lsearch.html
linux ldap basics (Czech)
http://hps.mallat.cz/view.php?cisloclanku=2004101401
[ add comment ] ( 4 views ) | [ 0 trackbacks ] | permalink
edit /etc/sysconfig/i18n
eng:
LANG="en_US.UTF-8"
czech:
LANG="cs_CZ.UTF-8"
[ add comment ] ( 5 views ) | [ 0 trackbacks ] | permalink
It seems, the almost identical performance between the RAID-0 and single drive setups indicates the raid 0 is not worth the price of the new disk. The nice test data are here and some a bit unbiased discussion is here. As the Raptors are currently really fast (but a noisy drives), people have tested them already in raid 0 configuration and it seems no radical performance boost at all with the raid setup.
[ 1 comment ] ( 6 views ) | [ 0 trackbacks ] | permalink
[ 2 comments ] ( 12 views ) | [ 0 trackbacks ] | permalink
T60 (High Definition Audio class driver):
http://www-307.ibm.com/pc/support/site. ... rintLenovo
Asus M2N-E:
http://support.asus.com/download/downlo ... odel=M2N-E
[ add comment ] ( 7 views ) | [ 0 trackbacks ] | permalink
"A Clean Boot will allow us to isolate any device drivers or programs that are loading at startup that may be causing a conflict with other device drivers or programs that are installed in your computer."
1) Run MSCONFIG.EXE command.
2) In the Services tab, click "Hide All Microsoft Services" and click "Disable All".
3) In the Startup tab, click "Disable All". Click OK. (This will temporarily prevent third-party programs from running automatically during start-up.)
4) Restart the computer. Does the problem still persist?
Source:
http://forums.microsoft.com/TechNet/Sho ... ;SiteID=17
[ add comment ] ( 8 views ) | [ 0 trackbacks ] | permalink
[ 2 comments ] ( 10 views ) | [ 0 trackbacks ] | permalink