Fulltext results:
- VBoxManage (The VirtualBox CLI) @info:virtualbox
- groups showvminfo <uuid>|<name> [--details] [--machinereadable] showvminfo <uuid>|<name> --log <idx> registervm <filename> unregistervm <uuid>|<name> [--delete] createvm --name <name>
- Formatting Syntax @wiki
- square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]]. Internal links are created by using square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]]. [[doku>pagename|Wiki pagenames]] are converted to lower
- How To Create a Moveable VM with VirtualBox @blog:2010
- ash> mkdir -p "${VM_DIR}" ${VBOX} -q createvm --name "${VM_NAME}" --basefolder "${BASE_DIR}" ${VBOX} -q registervm "${VM_DIR}/${VM_NAME}.xml" ${VBOX} -q storagectl "${VM_NAME}" --name "IDE Controller" --add ide ${VBOX} -q createhd --filena
- Travian Map Download Script @z:travian
- get.sh ===== <code bash> #! /bin/sh BIN_DIR=`dirname $0` . ${BIN_DIR}/config.inc echo echo "`date +'%... port.sh ===== <code bash> #! /bin/sh BIN_DIR=`dirname $0` . ${BIN_DIR}/config.inc echo "***" echo "`da... pdate.sh ===== <code sql> #! /bin/sh BIN_DIR=`dirname $0` . ${BIN_DIR}/config.inc echo "***" echo "`da... ance; INSERT INTO ${world}_alliance(aid, alliancename, alliancepopulation) SELECT DISTINCT w1.aid, w1.
- Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
- '//driver//, e.g. ''devfsadm -i sd'' ==== Device Names ==== * physical device path: ''"/pci@0/pci@0/... /pci@2/network@0" 0 "e1000g"'' * logical device name: ''e1000g0'' * logical device path: ''/dev/e100... _to_inst]]'' maps physical device paths to driver name and driver instance number. Example: "/pci@0/p... pci@1/pci@0/pci@2/network@0" 0 "e1000g" === /etc/name_to_major === Maps driver name to major device nu
- Drupal: Reverse Proxy @blog:2010
- d * ''www.example.com'' with ''$_SERVER['SERVER_NAME']'' and * ''ssl.proxy.org'' with ''$_SERVER['HT... i_set('session.cookie_path', '/'.$_SERVER['SERVER_NAME'].'/');'' \\ to limit the cookies to the path, wh... enables mutliple logins, if using multiple domain names for one installation. It has also a nice side e... SSL"){ $base_url = 'http://' . $_SERVER['SERVER_NAME']; // NO trailing slash! $cookie_domain = $_SE
- ZFS Playground @blog:2009
- ll need 1,2GB for 6 files of 200MB. The files are named like disks, but they are only files for this dem... state: ONLINE scrub: none requested config: NAME STATE READ WRITE CKSUM demo ... h 0 errors on Tue Aug 11 15:45:59 2009 config: NAME STATE READ WRITE CKSUM demo ... h 0 errors on Tue Aug 11 15:52:24 2009 config: NAME STATE READ WRITE CKSUM demo
- Set a Mac's Hostname @info:mac
- ====== Set a Mac's Hostname ====== To set the permanent hostname, use the ''scutil'' utility (enter the desired hostname instead of ''the_hostname''): <code bash> sudo scutil --set HostName the_hostname </code> === Credits
- Dice Roller @blog:2009
- ed]]. ===== HTML Form ===== <code html> <form name="rolldice" method="GET"> <input type="text" name="n" size="2"/> d <input type="text" name="s" size="2"/> + <input type="text" name="o" size="4"/> <input type="submit" value="r
- Generate a Test Key @info:cryptography:openssl
- eyout|-keyout testkey.key]]'': this gives the filename to write the newly created private key to. If this option is not specified then the filename present in the configuration file is used. * ''... ut testkey.crt]]'': this specifies the output filename to write to or standard output by default. Now y... cs12.html#item__out|-out testkey.p12]]'': the filename to write certificates and private keys to, standa
- exiftool @info:script
- ====== exiftool ====== ===== Rename Photos ===== Try it first with ''-testname'': exiftool -d %Y-%m-%d_%H%M%S%%-c.%%e "-testname<CreateDate" *.jpg Then rename the files: exiftool -d %Y-%m-%d_%H%M%S%%-c.%%e "-filename<CreateDate"
- Oracle: List Accounts with Objects @info:oracle
- , you can query them with: <code sql> SELECT USERNAME FROM ALL_USERS ORDER BY USERNAME; </code> Or, if you only want the DBAs: <code sql> SELECT USERNAME FROM DBA_USERS ORDER BY USERNAME; </code> {{tag>admin oracle sqlplus}}
- Print all certificates in a file @info:cryptography:openssl
- in|-in file.pem]]'': This specifies the input filename to read from or standard input if this option is ... le. They are preceded by their subject and issuer names in one line format. * ''[[http://www.openssl.o... _out|-out certs.pem]]'': specifies the output filename to write to or standard output by default. {{tag
- Travian Village Planner - Tribe & Village Name @blog:2009
- ====== Travian Village Planner - Tribe & Village Name ====== Yesterday, I had some time and worked on ... illage Planner. It now has an input field for the name of the village and you can select your tribe. Bot... ark”. The tribe is saved as parameter 't' and the name as 'n'. You can check it out here: * [[http:/
- MySQL: Create User @info:mysql:user
- ive: <code sql> CREATE DATABASE IF NOT EXISTS `dbname` DEFAULT CHARACTER SET = 'utf8'; GRANT ALL ON `dbname`.* TO 'dbuser'@'dbhost' IDENTIFIED BY 'dbpass'; <