• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net » da
Trace: • aptitude • mediaserver • blogging • Welcome to your new DokuWiki • Travian Analyzer Bookmarklet • VBoxManage (The VirtualBox CLI) • fstyp • community • convert • error

da
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.

Starts with
  • Exact match
  • Starts with
  • Ends with
  • Contains
Any namespace
  • Any namespace
  • info (30)
  • blog (19)
  • p (2)
  • wiki (2)
  • z (2)
  • tag (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • database
  • recommendation
  • standard
  • Project PDA
  • DynDNS Updates without a Client
  • Project PDA
  • Projects
  • MySQL: Backup
  • MySQL: Create Database
  • Database Administration
  • MySQL: Remove Database
  • andunix Infos
  • Blackbox
  • Projects
  • Data Collector
  • Projects
  • PADD
  • Projects

Fulltext results:

Travian Map Download Script @z:travian
20 Hits, Last modified: 13 years ago
oad the map.sql from Travian and import it to the database. ===== config.inc ===== <code bash> # # database DB_USER="travian" # set this to your database user DB_PASS="travian" # set this to your database password DB_INST="travian" # set this to you
Formatting Syntax @wiki
13 Hits, Last modified: 5 years ago
e simple markup language, which tries to make the datafiles to be as readable as possible. This page c... = == Headline Level 5 == By using four or more dashes, you can make a horizontal line: ---- =====... pp cpp-qt cpp-winapi csharp css cuesheet c_winapi dart dcl dcpu16 dcs delphi diff div dos dot d ecmasc... hlighting but want a downloadable file, specify a dash (''-'') as the language code: ''%%<code - myfil
MySQL: Backup @info:mysql:database
9 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 databas
CloudTable @z:cloudtable
7 Hits, Last modified: 13 years ago
~~META:date created = 2010-02-02 18:04~~ ====== CloudTable ====== ===== Big Picture ===== This conce... ications. Also the users will be stored here. The data store stores the "payload" data. These two are separated to enable usage of diffentent databases or even techniques. This could be files fo
MySQL: Create Database @info:mysql:database
6 Hits, Last modified: 13 years ago
====== MySQL: Create Database ====== ==== Create Database ==== <code sql> CREATE DATABASE IF NOT EXISTS `{db}`; </code> ==== Create Database and Grant Rights to a User ==== <code sql>
Debug Server Certificate from Client @info:cryptography:openssl
5 Hits, Last modified: 12 years ago
Fc6QSJMB7dfYwmp6Be6KoJDQ6bPjA1kZNzQyUejEo FeFuU4X+dAKy/bjvQkKzeXdhc3luFQ0IuqRYITIKYP2q/rPhl72qmBl5IQSO... JXb/5IC1tdGmpnc5mCtJ5D YD7HWyoSbhruyzmuwzWdqLxdsC/DAgMBAAGjggF3MIIBczAfBgNVHSMEGDAWgBSt vZh6NLQm9/rEJl... onds) TLS session ticket: 0000 - a0 74 cd da 9f 5c f5 b1-ca ea 52 c0 55 5c a0 6c .t...\....R... 0010 - 48 02 bc aa bf 50 52 7b-ab 40 9b 02 d1 da 54 44 H....PR{.@....TD 0020 - 3d 5c aa 8d f
Project PDA @blog:2011
5 Hits, Last modified: 13 years ago
~~META:date created = 2011-10-27 22:48~~ ====== Project PDA ====== I'm currently working on a project... Palm and others. But they all were just Personal Datastorages. I always missed the "Assistant" part f... sting. Parts of the project are (so far): * **Data Collector**: Collection of API Implementations to connect to several (Web-)Services and access data there * **Blackbox**: Entity Storage. Stores
Generate a Test Key @info:cryptography:openssl
5 Hits, Last modified: 11 years ago
te a Test Key ====== openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout testkey.key -out t... [[http://www.openssl.org/docs/apps/req.html#item__days|-days 365]]'': when the -x509 option is being used this specifies the number of days to certify the certificate for. The default is
MySQL: Remove Database @info:mysql:database
4 Hits, Last modified: 13 years ago
====== MySQL: Remove Database ====== ==== Remove Database ==== <code sql> DROP DATABASE IF EXISTS `{db}`; </code> {{tag>admin database mysql sql}}
MySQL: Create User @info:mysql:user
4 Hits, Last modified: 10 years ago
FIED BY '{passwd}'; </code> ==== Create User and Database ==== * Usually, ''{user}'' == ''{db}'' ... ES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ; CREATE DATABASE IF NOT EXISTS `{db}`; GRANT ALL PRIVILEGES... </code> Simpler Alternative: <code sql> CREATE DATABASE IF NOT EXISTS `dbname` DEFAULT CHARACTER SE... L ON `dbname`.* TO 'dbuser'@'dbhost' IDENTIFIED BY 'dbpass'; </code> {{tag>admin database mysql sql}}
List Open Ports @info:sysadmin
4 Hits, Last modified: 9 years ago
0.0.0.0:* 407/avahi-daemon: r udp 0 0 0.0.0.0:68 ... 0.0.0.0:* 407/avahi-daemon: r udp6 0 0 :::546 ... :::* 407/avahi-daemon: r udp6 0 0 :::51486 :::* 407/avahi-daemon: r </code> {{tag>sysadmin admin linux networ
Oracle: Recovery Manager @info:oracle
4 Hits, Last modified: 13 years ago
=== Delete all archive logs but keep the last 45 days: <code sql> DELETE ARCHIVELOG ALL COMPLETED BE... 45'; </code> To remove archive logs older than 3 days without prompting, e.g. via cron, after backup ... could be (deleting all logs except the last three days): <code bash> #!/bin/bash . ${HOME}/.profile... L COMPLETED BEFORE 'SYSDATE -3'; EXIT __EOF__ </code> {{tag>admin database dba oracle rman sysadmin}}
localeadm @info:solaris
4 Hits, Last modified: 13 years ago
y of this report can be found in /var/sadm/system/data/locales.list </code> ==== List Installable Loc... SO8859-1, fr_CA.UTF-8 ] Northern Europe (neu) [ da_DK.ISO8859-1, da_DK.ISO8859-15, da_DK.UTF-8, fi_FI.ISO8859-1, fi_FI.ISO8859-15, fi_FI.UTF-8, is_IS.ISO8859-1, is_IS.UT
Android Backup @info:android
4 Hits, Last modified: 13 years ago
command. It will automatically insert the current date in the filename: <code bash> adb backup -apk -shared -all -f $(date '+%Y-%m-%d').db </code> If you are havong prob... ill-server sudo adb start-server </code> <file> * daemon not running. starting it now on port 5037 * * daemon started successfully * </file> After this, t
Project PDA @p:pda
3 Hits, Last modified: 13 years ago
d a real Personal Digital Assistant. * [[.:dc:|Data Collector]]: Collection of API Implementations to connect to several (Web-)Services and access data there * [[.:blackbox:|Blackbox]]: Entity Stor... es etc. * [[.:padd:|PADD]]: Personal Access and Data Display. Named after the Star Trek Pads, it imp
ZFS Playground @blog:2009
3 Hits, Last modified: 17 years ago
MySQL: Remove User @info:mysql:user
3 Hits, Last modified: 13 years ago
database @tag
3 Hits, Last modified: 12 years ago
Cleanup Packages @info:linux:debian
2 Hits, Last modified: 12 years ago
Android Apps @info:android
2 Hits, Last modified: 13 years ago
Oracle @info:oracle
2 Hits, Last modified: 10 years ago
Command Line Audio @info:mac
2 Hits, Last modified: 13 years ago
Data Collector @p:pda:dc
2 Hits, Last modified: 13 years ago
Home Server Goals @blog:2010
2 Hits, Last modified: 10 years ago
init @info:linux:debian
2 Hits, Last modified: 13 years ago
exiftool @info:script
2 Hits, Last modified: 9 years ago
DokuWiki @wiki
1 Hits, Last modified: 5 years ago
Project Idea: WikiTable @blog:2009
1 Hits, Last modified: 17 years ago
Oracle Errors @info:oracle
1 Hits, Last modified: 13 years ago
MySQL: View Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
MySQL: Revoke Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
MySQL: Grant Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
MySQL: Change Password @info:mysql:user
1 Hits, Last modified: 12 years ago
Set PHP Variables in .htaccess Files @blog:2010
1 Hits, Last modified: 16 years ago
Virtual Network Visualization @blog:2009
1 Hits, Last modified: 17 years ago
Database @info:db
1 Hits, Last modified: 13 years ago
Database Administration @info:mysql:database
1 Hits, Last modified: 13 years ago
Hello Drupal @blog:2010
1 Hits, Last modified: 16 years ago
How To Create a Moveable VM with VirtualBox @blog:2010
1 Hits, Last modified: 16 years ago
Start and Stop the Apple File Server from Command Line @blog:2011
1 Hits, Last modified: 10 years ago
IPS Repository Appliance @blog:2010
1 Hits, Last modified: 15 years ago
Travian Village Planner - Tribe & Village Name @blog:2009
1 Hits, Last modified: 17 years ago
Memory Usage of a Solaris Container (Zone) @blog:2010
1 Hits, Last modified: 16 years ago
Drupal: Reverse Proxy @blog:2010
1 Hits, Last modified: 13 years ago
Found Geocache GC1VY11 "Ringpromenade" @blog:2009
1 Hits, Last modified: 16 years ago
Upgrade Solaris 11/OpenSolaris from Text to Graphical @blog:2010
1 Hits, Last modified: 15 years ago
DynDNS Updates without a Client @info:script
1 Hits, Last modified: 13 years ago
AirPort Command Line Interface @info:mac
1 Hits, Last modified: 10 years ago
OpenSolaris / VirtualBox: Mount Shared Folder @blog:2009
1 Hits, Last modified: 17 years ago
Travian Village Planner @blog:2009
1 Hits, Last modified: 13 years ago
Dice Roller @blog:2009
1 Hits, Last modified: 17 years ago
Plaintext @info:cryptography
1 Hits, Last modified: 13 years ago
Oracle: SQLplus Scripting @info:oracle
1 Hits, Last modified: 13 years ago
Make your Mac feel at Home @info:mac
1 Hits, Last modified: 10 years ago
ReLAX @blog:2009
1 Hits, Last modified: 16 years ago
jps - Java Virtual Machine Process Status Tool @info:java
1 Hits, Last modified: 13 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