Fulltext results:
- Cleanup Packages @info:linux:debian
- 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
- 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
- </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
- - <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
- ====== 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
- '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
- -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
- 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
- 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
- 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
- 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
- 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
- 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
- ====== 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
- 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