• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net » es
Trace: • photo • outdoor • country • Mercurial • germany • eyetv • homeserver • MacPorts • key • standard

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

Ends with
  • Exact match
  • Starts with
  • Ends with
  • Contains
@info
  • Any namespace
  • info:cryptography (8)
  • info:solaris (8)
  • info:mysql (7)
  • info:script (6)
  • info:oracle (5)
  • info:code (2)
  • info:java (2)
  • info:mac (2)
  • info:sysadmin (2)
  • info:android (1)
  • info:javascript (1)
  • info:linux (1)
  • info:prog (1)
  • info:virtualbox (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:

  • Oracle: Resize Instance
  • Oracle: SPFile and PFiles
  • Compare directories
  • DynDNS Updates without a Client
  • Shell Script Variables
  • Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202)
  • File System
  • Solaris: List Devices
  • Package Repositories
  • Web Design
  • andunix Infos
  • URL Encoding
  • Print all certificates in a file
  • Cleanup Packages
  • Border
  • CSS - Cascading Stylesheets
  • Shadows
  • andunix Infos

Fulltext results:

localeadm @info:solaris
51 Hits, Last modified: 13 years ago
==== localeadm ====== The localeadm utility queries and configures Solaris locales through a command line interface. * man page: [[http://docs.oracle.com/cd/E18752_0... OIMG}`'' Now you can use localeadm. ===== Examples ===== ==== List Installed Locales ==== <code ba
Cleanup Packages @info:linux:debian
40 Hits, Last modified: 12 years ago
====== Cleanup Packages ====== ===== Purge uninstalled Packages ===== If a package is removed, it is only uninstalled, but ... n ge a list of uninstalled (but not purged) packages with this command: <code bash> dpkg --get-select... this list directly to aptitude to purge the packages: <code bash> aptitude purge $(dpkg --get-selecti
VBoxManage (The VirtualBox CLI) @info:virtualbox
28 Hits, Last modified: 12 years ago
list [--long|-l] vms|runningvms|ostypes|hostdvds|hostfloppies| bridgedifs|hostonlyifs|dhcpservers|hostinfo| ... hostcpuids|hddbackends|hdds|dvds|floppies| usbhost|usbfilters|systemproperties|extpacks| groups s
Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
16 Hits, Last modified: 13 years ago
====== Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) ====== I'm preparing m... inistrator (SCSA)]] certification. This are my notes taken while studying the preparation books. ===== Managing File Systems ===== ==== List Devices ==== To list the system's devices, you can use the following commands: * ''dmesg'' * ''format''
Generate a Test Key @info:cryptography:openssl
12 Hits, Last modified: 11 years ago
nerate a Test Key ====== openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout testkey.key -o... ttp://www.openssl.org/docs/apps/req.html#item__nodes|-nodes]]'': if this option is specified then if a private key is created it will not be encrypted. ... : when the -x509 option is being used this specifies the number of days to certify the certificate for
Git @info:code
11 Hits, Last modified: 7 years ago
-bare [DIR] === Log === See commits between branches: git log master..develop ===== Branches ===== === List Branches === git branch === Switch Branch === git checkout BRANCH === Delete Branc... ch === git push origin -d BRANCH === List unmerges branches === List branches with commits, which ar
Package Repositories @info:solaris
9 Hits, Last modified: 13 years ago
====== Package Repositories ====== There's a list of multi-OS repositories at [[http://wikis.sun.com/display/IpsBestPractices/Directory+of+Package+Repositories]]. More on IPS, the Image Package System can be found at: * http
Mercurial
9 Hits, Last modified: 13 years ago
dy ''.hgignore'' expressions: ==== Ignore Mac Files ==== Ignore ''.DS_Store'' and ''._*'' files: <code> (^|/)\._[^/]+$ (^|/)\.DS_Store$ </code> ==== N... eans ==== These expressions exclude the directories ''build'', ''dist'' and ''nbproject/private''. De... Only in the top directory, but not in subdirectories: <code> ^build$ ^dist$ ^nbproject/private$ </cod
Oracle: SPFile and PFiles @info:oracle
8 Hits, Last modified: 13 years ago
====== Oracle: SPFile and PFiles ====== Oracle reads its parameters from a file called "SPFile". You ... ionally, Oracle can read the parameters from "PFiles", which are regular text files. ===== Create PFile ===== To export the SPFiles to a PFile, just enter the following in SQLplus: <
MySQL: Backup @info:mysql:database
7 Hits, Last modified: 13 years ago
se ===== <code bash> # set or replace the variables $USER, $PASS and $DB mysqldump --add-drop-table -... -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 --execu
Firefox Extensions @info:prog:firefox
7 Hits, Last modified: 12 years ago
on/greasemonkey/|Greasemonkey]] |Customize webpages using JavaScript. | |[[https://addons.mozilla.or... s.mozilla.org/firefox/addon/self-destructing-cookies/|Self-Destructing Cookies]] |Removes cookies after closing the tab or navigating to another site. | ===== Web Developer Exte
Print all certificates in a file @info:cryptography:openssl
7 Hits, Last modified: 13 years ago
====== Print all certificates in a file ====== This command is especially helpful if you want to use Tomcat-/Java-Keystore-Certificates with the Apache webserver. Use the -print_certs to print all the certificates and then cut the file and store each certificate ... pkcs7.html#item__in|-in file.pem]]'': This specifies the input filename to read from or standard input
rmdir for OSX @info:mac
6 Hits, Last modified: 10 years ago
==== rmdir for OSX ====== The Finder on OSX creates ''.DS_Store'' files in the directories to store its settings. This makes removing directories from the command line quite complicated: <code
Debug Server Certificate from Client @info:cryptography:openssl
5 Hits, Last modified: 12 years ago
ate from Client ====== Credit for this example goes to "[[http://langui.sh/2009/03/14/checking-a-remo... ect|-connect www.andunix.net:443]]'': This specifies the host and optional port to connect to. If not ... =PositiveSSL CA 2 --- No client certificate CA names sent --- SSL handshake has read 3229 bytes and written 443 bytes --- New, TLSv1/SSLv3, Cipher is ECDH
Virtual Network Visualization @info:solaris
4 Hits, Last modified: 13 years ago
s supports virtual networks using virtual interfaces connected with virtual switches. This feature was introduced with [[http://www.opensolaris.org/os/pro... rnal network(s), I created a perl script which takes the output of ''dladm show-link'' and ''dladm show-linkprop -o link,value -p zone'' and generates a dot-File, which then can be rendered using [[ht
Android Backup @info:android
4 Hits, Last modified: 13 years ago
Print Information about a Key @info:cryptography:openssl
4 Hits, Last modified: 11 years ago
jps - Java Virtual Machine Process Status Tool @info:java
4 Hits, Last modified: 13 years ago
Compare directories @info:script
3 Hits, Last modified: 7 years ago
MySQL: Create User @info:mysql:user
3 Hits, Last modified: 10 years ago
exiftool @info:script
3 Hits, Last modified: 9 years ago
Plaintext @info:cryptography
3 Hits, Last modified: 13 years ago
Solaris: List Devices @info:solaris
2 Hits, Last modified: 13 years ago
Make your Mac feel at Home @info:mac
2 Hits, Last modified: 10 years ago
Compare a Key with its Certificate @info:cryptography:openssl
2 Hits, Last modified: 13 years ago
Solaris Manuals @info:solaris
2 Hits, Last modified: 13 years ago
MySQL: Change Password @info:mysql:user
2 Hits, Last modified: 12 years ago
Change Encoding with iconv @info:script
2 Hits, Last modified: 13 years ago
Print Information about a Certificate @info:cryptography:openssl
2 Hits, Last modified: 10 years ago
Cryptography @info:cryptography
2 Hits, Last modified: 13 years ago
Specify Java VM for Eclipse @info:code:eclipse
2 Hits, Last modified: 12 years ago
DynDNS Updates without a Client @info:script
2 Hits, Last modified: 13 years ago
MySQL: Grant Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
MySQL: Revoke Permissions @info:mysql:permissions
1 Hits, Last modified: 13 years ago
JAX-WS Debugging @info:java
1 Hits, Last modified: 11 years ago
List Open Ports @info:sysadmin
1 Hits, Last modified: 9 years ago
Shell Script Variables @info:script
1 Hits, Last modified: 10 years ago
MySQL: View Permissions @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
root login with bash @info:script
1 Hits, Last modified: 13 years ago
File System @info:solaris
1 Hits, Last modified: 13 years ago
Oracle: Resize Instance @info:oracle
1 Hits, Last modified: 13 years ago
Oracle Errors @info:oracle
1 Hits, Last modified: 13 years ago
Oracle: List Accounts with Objects @info:oracle
1 Hits, Last modified: 13 years ago
CSS - Cascading Stylesheets @info:webdesign:css
1 Hits, Last modified: 13 years ago
SSH @info:sysadmin
1 Hits, Last modified: 10 years ago
/etc @info:solaris
1 Hits, Last modified: 13 years ago
Oracle @info:oracle
1 Hits, Last modified: 10 years ago
MySQL: Create Database @info:mysql:database
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