• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net » al
Trace: • convert • exif • geocache • eyetv • Travian Map Download Script • Cleanup Packages • rmdir for OSX • andunix.net • certification • blogging

al
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
@info
  • Any namespace
  • info:cryptography (7)
  • info:mysql (6)
  • info:script (6)
  • info:oracle (5)
  • info:solaris (3)
  • info:android (2)
  • info:mac (2)
  • info:webdesign (2)
  • info:db (1)
  • info:java (1)
  • info:linux (1)
  • info:prog (1)
  • info:virtualbox (1)
Any time
  • Any time
  • Past week
  • Past month
  • Past year
Sort by hits
  • Sort by hits
  • Sort by last modified

Matching pagenames:

  • localeadm
  • Solaris Manuals
  • VBoxManage (The VirtualBox CLI)
  • VirtualBox
  • andunix Infos
  • Print all certificates in a file
  • ISO 3166-1 alpha-2

Fulltext results:

Cleanup Packages @info:linux:debian
12 Hits, Last modified: 12 years ago
Remove Orphans ===== If a packages is installed, all its dependencies are also automatically installed. If the selected package is removed or the depende... z Show installed size of packages found. --all-packages, -a Compare all packages, not just libs. --exclude, -e LIST Work as if pa
VBoxManage (The VirtualBox CLI) @info:virtualbox
11 Hits, Last modified: 12 years ago
e Version 4.2.16 (C) 2005-2013 Oracle Corporation All rights reserved. </code> ===== Usage: ===== ... [--nicpromisc<1-N> deny|allow-vms|allow-all] [--nicbandwidthgroup<1-N> none|<name>]
Oracle: Recovery Manager @info:oracle
5 Hits, Last modified: 13 years ago
</code> ===== Delete Archive Logs ===== Delete all archive logs but keep the last 45 days: <code sql> DELETE ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE -45'; </code> To remo... ackup run: <code sql> DELETE NOPROMPT ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE -45'; </code> A sample script could be (deleting all logs except the last three days): <code bash> #
Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
4 Hits, Last modified: 13 years ago
- <target raw device> ==== Inodes ==== * Find all hard links of a given inode: find <filesystem... mount -inum <inode> -ls * For example, to find all filesystem entries in the root filesystem for in... == newsfs === FIXME: add newfs options * List alternate superblocks: newfs -Nv <raw device> ==... :fstyp|fstyp]]'' list filesystems propeties, e.g. alternate superblocks: fstyp -v <raw device> ===
ISO 3166-1 alpha-2 @info:db:iso:3166-1
3 Hits, Last modified: 13 years ago
====== ISO 3166-1 alpha-2 ====== * urn:iso:std:iso:3166:-1:ed-2006:en#alpha-2 * http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 {{tag>standard iso country}}
root login with bash @info:script
3 Hits, Last modified: 13 years ago
'root'' from an user which has the ''root'' role. Also, the ''root'' user has the bourne shell (''/bin... m -t "su - root -c /bin/bash"' I set it up as an alias in ''.bashrc'': alias demo_root='ssh demo.lab.example.com -t "su - root -c /bin/bash"' This en
localeadm @info:solaris
3 Hits, Last modified: 13 years ago
-2, sh_BA.UTF-8, sl_SI.ISO8859-2, sl_SI.UTF-8, sq_AL.ISO8859-2, sq_AL.UTF-8, sr_CS.UTF-8, sr_YU.ISO8859-5, tr_TR.ISO8859-9, tr_TR.UTF-8, kk_KZ.UTF-8, uk_U... in) [ hi_IN.UTF-8 ] Done. </code> ==== Install all North Americal (nam) and Central Europe (ceu) Lo
Oracle: List Accounts with Objects @info:oracle
3 Hits, Last modified: 13 years ago
racle: List Accounts with Objects ====== To list all accounts (users) the objects (like tables), you ... ECTS ORDER BY OWNER; </code> If you want to list all accounts, you can query them with: <code sql> SELECT USERNAME FROM ALL_USERS ORDER BY USERNAME; </code> Or, if you onl
MySQL: Create User @info:mysql:user
3 Hits, Last modified: 10 years ago
0 ; CREATE DATABASE IF NOT EXISTS `{db}`; GRANT ALL PRIVILEGES ON `{db}` . * TO '{user}'@'%'; </code> Simpler Alternative: <code sql> CREATE DATABASE IF NOT EXIS... TS `dbname` DEFAULT CHARACTER SET = 'utf8'; GRANT ALL ON `dbname`.* TO 'dbuser'@'dbhost' IDENTIFIED BY
Plaintext @info:cryptography
2 Hits, Last modified: 13 years ago
t has reference to the operation of cryptographic algorithms, usually encryption algorithms, and is the input upon which they operate. Cleartext, by contr
Oracle: Resize Instance @info:oracle
2 Hits, Last modified: 13 years ago
nge the [[spfile_and_pfiles|SPFile]]: <code sql> ALTER SYSTEM SET pga_aggregate_target = 2G SCOPE=SPFILE; ALTER SYSTEM SET sga_target = 6G SCOPE=SPFILE; </cod
Shadows @info:webdesign:css
2 Hits, Last modified: 13 years ago
px;"></div></html> ===== Text Shadow ===== ==== Alien Glow ==== text-shadow: 0pt 0pt 6px rgb(0, 2... 6pt; text-shadow: 0pt 0pt 6px rgb(0, 255, 255);">Alien Glow</span></html> {{tag>webdesign web design
jps - Java Virtual Machine Process Status Tool @info:java
2 Hits, Last modified: 13 years ago
h is a bit like the ''ps'' command. ''jps'' lists all ''java'' Processes of a user. You can find the m... a/bin/jps -lm Here are some more examples: List all java processes: ''jps'' <code> 55719 hourglass.j
Print all certificates in a file @info:cryptography:openssl
2 Hits, Last modified: 13 years ago
====== Print all certificates in a file ====== This command is especially helpful if you want to use ... e Apache webserver. Use the -print_certs to print all the certificates and then cut the file and store
Compare directories @info:script
2 Hits, Last modified: 7 years ago
ode bash> find DIR -type f -exec shasum {} + | LC_ALL=C sort -d -k 2 > shasums.txt </code> It's important to use ''LC_ALL=C'' and the option ''-d'' of ''sort'', to get co
Virtual Network Visualization @info:solaris
1 Hits, Last modified: 13 years ago
Print Information about a Certificate @info:cryptography:openssl
1 Hits, Last modified: 10 years ago
Print Information about a Key @info:cryptography:openssl
1 Hits, Last modified: 11 years ago
Change Encoding with iconv @info:script
1 Hits, Last modified: 13 years ago
exiftool @info:script
1 Hits, Last modified: 9 years ago
Compare a Key with its Certificate @info:cryptography:openssl
1 Hits, Last modified: 13 years ago
Command Line Tools Used in My Scripts @info:script
1 Hits, Last modified: 13 years ago
Firefox Extensions @info:prog:firefox
1 Hits, Last modified: 12 years ago
Oracle: SPFile and PFiles @info:oracle
1 Hits, Last modified: 13 years ago
MacPorts @info:mac
1 Hits, Last modified: 10 years ago
MySQL: Grant Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
Mercurial
1 Hits, Last modified: 13 years ago
Oracle: EXP @info:oracle
1 Hits, Last modified: 13 years ago
Generate a Test Key @info:cryptography:openssl
1 Hits, Last modified: 11 years ago
Android @info:android
1 Hits, Last modified: 13 years ago
MySQL: Revoke Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
MySQL: Backup @info:mysql:database
1 Hits, Last modified: 13 years ago
Cryptography @info:cryptography
1 Hits, Last modified: 13 years ago
Android Backup @info:android
1 Hits, Last modified: 13 years ago
rmdir for OSX @info:mac
1 Hits, Last modified: 10 years ago
DynDNS Updates without a Client @info:script
1 Hits, Last modified: 13 years ago
CSS - Cascading Stylesheets @info:webdesign:css
1 Hits, Last modified: 13 years ago
MySQL: Create Database @info:mysql:database
1 Hits, Last modified: 13 years ago
MySQL: Change Password @info:mysql:user
1 Hits, Last modified: 12 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