Fulltext results:
- VBoxManage (The VirtualBox CLI) @info:virtualbox
- terface Version 4.2.16 (C) 2005-2013 Oracle Corporation All rights reserved. </code> ===== Usage: ===... tervm <uuid>|<name> [--delete] createvm --name <name> ... ster] [--basefolder <path>] [--uuid <uuid>] ... [--acpi on|off] [--pciattach 03:04.0] [--pciat
- Generate a Test Key @info:cryptography:openssl
- ====== Generate a Test Key ====== openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout testkey.key -out testkey.crt Informations about the used arguments from the OpenSSL man... l.org/docs/apps/req.html|req]]'': PKCS#10 certificate request and certificate generating utility. * ''[[http://www.openssl.org/docs/apps/req.html#item__
- Debug Server Certificate from Client @info:cryptography:openssl
- ====== Debug Server Certificate from Client ====== Credit for this example goes to "[[http://langui.sh/2009/03/14/checking-a-remote-certificate-chain-with-openssl/| Checking A Remote Certificate Chain With OpenSSL]]" from [[http://langui.sh/|la... nt -showcerts -connect www.andunix.net:443 Informations about the used arguments from the OpenSSL man
- DynDNS Updates without a Client @info:script
- ====== DynDNS Updates without a Client ====== My new hosting provide Strato offers DynDNS. I was searching for a DynDNS clie... s good as any other client. <code bash dyndns-update.sh> #! /bin/bash . ${HOME}/.dyndns.cfg DOMAINS=$(cat ${HOME}/.dyndns.domains) echo "$(date '+%Y-%m-%
- Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
- ====== Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) ====== I'm preparing m... achieve the [[http://www.sun.com/training/certification/solaris/scsa.xml|Sun Certified System Administrator (SCSA)]] certification. This are my notes taken while studying the preparation books. ===== Managi
- Download a Server Certificate @info:cryptography:openssl
- ====== Download a Server Certificate ====== First, load the certificate chain from the server: <code bash> openssl s_client -showcerts ... /code> This will output the whole server certificate chain. Every chertificate ist wrapped between ''-----BEGIN CERTIFICATE-----'' and ''-----END CERTIFI
- Firefox Extensions @info:prog:firefox
- t-safe-browsing-tool/|WOT, Web of Trust]] |Information about the reputation of a page. | |[[https://addons.mozilla.org/firefox/addon/self-destructing-co... ] |Removes cookies after closing the tab or navigating to another site. | ===== Web Developer Exten... |[[https://addons.mozilla.org/firefox/addon/firepath/|FirePath]] | Run XPath queries on a website |
- MySQL: Create User @info:mysql:user
- ====== MySQL: Create User ====== ==== Create User ==== <code sql> CREATE USER '{user}'@'%' IDENTIFIED BY '{passwd}'; </code> ==== Create User and Database ==== * Usually, ''{user}''
- localeadm @info:solaris
- REFMAN1Mlocaleadm-1m|localeadm(1M)]] ===== Preparation ===== Check your Solaris Release with cat /etc/release and get a matching DVD or ISO image. If you're using an ISO image, you have to mount it (insert your path in the first line. <code bash> ISOIMG="/share/i
- Oracle: SPFile and PFiles @info:oracle
- "PFiles", which are regular text files. ===== Create PFile ===== To export the SPFiles to a PFile, j... st enter the following in SQLplus: <code sql> CREATE PFILE FROM SPFILE; </code> It will create a PFile ''${ORACLE_HOME}/dbs/init${ORACLE_SID}.ora''. ==... and the write the SPFile. You have to enter the path to the PFile instead of ${PATH_TO_PFILE}. <code
- Print Information about a Key @info:cryptography:openssl
- ====== Print Information about a Key ====== openssl x509 -inform DER -in testkey.cer -noout -text Informations about the used arguments from the OpenSSL man... openssl.org/docs/apps/x509.html|x509]]'': Certificate display and signing utility. * ''[[http://www.... orm|-inform DER]]'': This specifies the input format normally the command will expect an X509 certific
- Cleanup Packages @info:linux:debian
- removed, it is only uninstalled, but the configuration remains on the system. This is a good thing, a... ckage and have it configured with the old configuration. But if you want to cleanup this old stuff, yo... is installed, all its dependencies are also automatically installed. If the selected package is remov... deborphan'' is an utility which searches for automatically installed but leftover packages. First, yo
- MySQL: Create Database @info:mysql:database
- ====== MySQL: Create Database ====== ==== Create Database ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; </code> ==== Create Database and Gr
- MySQL: Backup @info:mysql:database
- ====== MySQL: Backup ====== ===== Export a Database ===== <code bash> # set or replace the variables... {USER} -p${PASS} ${DB} </code> ===== Export all Databases individually ===== <code bash> # set or replace the variables $USER and $PASS DATE_YMD=$(date "+%Y-%m-%d") DATABASES=$(mysql --batch -u${USER} -p${PASS} mysql --execute='show database
- Git @info:code
- ry -v REF BRANCH For example, list commits in a feature branch, which are not in ''develop'': git cherry -v develop feature/FEATURE ===== Subversion ===== === Update === git svn fetch ====== Git Flow ====== === Init === git fl