• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net » at
Trace: • Make your Mac feel at Home • dns • Tags • laptop • Travian Analyzer Bookmarklet • travianer • speed • photo • convert • mozilla

at
Please note, that this is an old archived version of this site. Check out the new version at andunix.net!

Search

You can find the results of your search below.

Contains
  • Exact match
  • Starts with
  • Ends with
  • Contains
@info
  • Any namespace
  • info:mysql (12)
  • info:cryptography (11)
  • info:solaris (9)
  • info:oracle (6)
  • info:linux (5)
  • info:sysadmin (5)
  • info:mac (4)
  • info:java (3)
  • info:script (3)
  • info:android (2)
  • info:code (2)
  • info:javascript (2)
  • info:prog (2)
  • info:virtualbox (2)
  • info:db (1)
  • info:webdesign (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • DynDNS Updates without a Client
  • Increase the Tomcat Upload Limit
  • Compare a Key with its Certificate
  • Convert a Certificate
  • Debug Server Certificate from Client
  • Download a Server Certificate
  • Generate a Test Key
  • Print all certificates in a file
  • Print Information about a Certificate
  • Print Information about a Signature
  • MySQL: Backup
  • MySQL: Create Database
  • Database Administration
  • MySQL: Remove Database
  • andunix Infos
  • MySQL: Create User
  • /etc/path_to_inst

Fulltext results:

VBoxManage (The VirtualBox CLI) @info:virtualbox
67 Hits, Last modified: 12 years ago
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
30 Hits, Last modified: 11 years ago
====== 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
26 Hits, Last modified: 12 years ago
====== 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
24 Hits, Last modified: 13 years ago
====== 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
18 Hits, Last modified: 13 years ago
====== 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
15 Hits, Last modified: 11 years ago
====== 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
13 Hits, Last modified: 12 years ago
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
13 Hits, Last modified: 10 years ago
====== MySQL: Create User ====== ==== Create User ==== <code sql> CREATE USER '{user}'@'%' IDENTIFIED BY '{passwd}'; </code> ==== Create User and Database ==== * Usually, ''{user}''
localeadm @info:solaris
13 Hits, Last modified: 13 years ago
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
13 Hits, Last modified: 13 years ago
"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
12 Hits, Last modified: 11 years ago
====== 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
11 Hits, Last modified: 12 years ago
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
11 Hits, Last modified: 13 years ago
====== MySQL: Create Database ====== ==== Create Database ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; </code> ==== Create Database and Gr
MySQL: Backup @info:mysql:database
10 Hits, Last modified: 13 years ago
====== 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
10 Hits, Last modified: 7 years ago
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
Virtual Network Visualization @info:solaris
9 Hits, Last modified: 13 years ago
jps - Java Virtual Machine Process Status Tool @info:java
9 Hits, Last modified: 13 years ago
Increase the Tomcat Upload Limit @info:sysadmin
9 Hits, Last modified: 9 years ago
fstyp @info:solaris
8 Hits, Last modified: 13 years ago
Print all certificates in a file @info:cryptography:openssl
8 Hits, Last modified: 13 years ago
Print Information about a Certificate @info:cryptography:openssl
8 Hits, Last modified: 10 years ago
Compare a Key with its Certificate @info:cryptography:openssl
7 Hits, Last modified: 13 years ago
Make your Mac feel at Home @info:mac
6 Hits, Last modified: 10 years ago
init @info:linux:debian
6 Hits, Last modified: 13 years ago
Package Repositories @info:solaris
6 Hits, Last modified: 13 years ago
Mercurial
5 Hits, Last modified: 13 years ago
Plaintext @info:cryptography
5 Hits, Last modified: 13 years ago
/etc/path_to_inst @info:solaris:etc
5 Hits, Last modified: 13 years ago
Command Line Audio @info:mac
4 Hits, Last modified: 13 years ago
Convert a Key @info:cryptography:openssl
4 Hits, Last modified: 7 years ago
MySQL: Remove Database @info:mysql:database
4 Hits, Last modified: 13 years ago
File System @info:solaris
4 Hits, Last modified: 13 years ago
Oracle @info:oracle
4 Hits, Last modified: 10 years ago
Android Backup @info:android
4 Hits, Last modified: 13 years ago
exiftool @info:script
4 Hits, Last modified: 9 years ago
SSH @info:sysadmin
4 Hits, Last modified: 10 years ago
Oracle: Resize Instance @info:oracle
4 Hits, Last modified: 13 years ago
Oracle: Recovery Manager @info:oracle
4 Hits, Last modified: 13 years ago
WiFi Config QR-Code
3 Hits, Last modified: 10 years ago
MySQL: Remove User @info:mysql:user
3 Hits, Last modified: 13 years ago
Android Apps @info:android
3 Hits, Last modified: 13 years ago
Oracle Errors @info:oracle
3 Hits, Last modified: 13 years ago
Print Information about a Signature @info:cryptography:openssl
3 Hits, Last modified: 11 years ago
MacPorts @info:mac
3 Hits, Last modified: 10 years ago
rmdir for OSX @info:mac
3 Hits, Last modified: 10 years ago
Specify Java VM for Eclipse @info:code:eclipse
3 Hits, Last modified: 12 years ago
MySQL: Change Password @info:mysql:user
3 Hits, Last modified: 12 years ago
CSS - Cascading Stylesheets @info:webdesign:css
2 Hits, Last modified: 13 years ago
Firefox @info:prog:firefox
2 Hits, Last modified: 13 years ago
Setting the Timezone @info:linux:debian
2 Hits, Last modified: 13 years ago
Disable a Service @info:linux:debian
2 Hits, Last modified: 9 years ago
Convert a Certificate @info:cryptography:openssl
2 Hits, Last modified: 11 years ago
Database Administration @info:mysql:database
2 Hits, Last modified: 13 years ago
List Open Ports @info:sysadmin
2 Hits, Last modified: 9 years ago
Solaris Manuals @info:solaris
1 Hits, Last modified: 13 years ago
System Administration @info:sysadmin
1 Hits, Last modified: 13 years ago
Permission Administration @info:mysql:permissions
1 Hits, Last modified: 13 years ago
Automatic Submission of a Form if an Element is changed @info:javascript
1 Hits, Last modified: 13 years ago
User Administration @info:mysql:user
1 Hits, Last modified: 13 years ago
VirtualBox @info:virtualbox
1 Hits, Last modified: 13 years ago
MySQL: Grant Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
Reload Page @info:javascript
1 Hits, Last modified: 13 years ago
Compare directories @info:script
1 Hits, Last modified: 7 years ago
Database @info:db
1 Hits, Last modified: 13 years ago
MySQL: View Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
Oracle: SQLplus Scripting @info:oracle
1 Hits, Last modified: 13 years ago
MySQL: Revoke Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
Set the Timezone on Debian @info:sysadmin:debian
1 Hits, Last modified: 13 years ago
Solaris: List Devices @info:solaris
1 Hits, Last modified: 13 years ago
Install the Java-Plugin for Firefox @info:java
1 Hits, Last modified: 11 years ago
Disable Core Dumps @info:linux
1 Hits, Last modified: 12 years ago
JAX-WS Debugging @info:java
1 Hits, Last modified: 11 years ago

Page Tools

  • Show page
  • Old revisions
  • Backlinks
  • Back to top
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution 4.0 International
CC Attribution 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki