• skip to content

andunix.net

User Tools

  • Log In

Site Tools

  • Recent Changes
  • Media Manager
  • Sitemap
You are here: andunix.net » co
Trace: • Travian Village Planner • solaris10 • settings • virtualbox • init • mac • webhosting • geocache • certification • blogging

co
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 (10)
  • info:mysql (9)
  • info:solaris (9)
  • info:mac (7)
  • info:oracle (7)
  • info:script (7)
  • info:linux (6)
  • info:code (4)
  • info:db (4)
  • info:java (4)
  • info:sysadmin (4)
  • info:webdesign (3)
  • info:javascript (2)
  • info:prog (2)
  • info:android (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:

  • WiFi Config QR-Code
  • Git
  • Coding
  • andunix Infos
  • Disable Core Dumps
  • Comapct Sparse Image
  • Command Line Audio
  • Oracle: List Accounts with Objects
  • Compare directories
  • Change Encoding with iconv
  • URL Encoding
  • Eclipse
  • Specify Java VM for Eclipse
  • andunix Infos
  • Compare a Key with its Certificate
  • Convert a Certificate
  • Convert a Key

Fulltext results:

Cleanup Packages @info:linux:debian
25 Hits, Last modified: 12 years ago
ckage is removed, it is only uninstalled, but the configuration remains on the system. This is a good ... you are able to reinstall the package and have it configured with the old configuration. But if you want to cleanup this old stuff, you can ge a list of uninstalled (but not purged) packages with this command: <code bash> dpkg --get-selections | grep '
VBoxManage (The VirtualBox CLI) @info:virtualbox
22 Hits, Last modified: 12 years ago
f the output of ''VBoxManage'' without options. <code> Oracle VM VirtualBox Command Line Management Interface Version 4.2.16 (C) 2005-2013 Oracle Corporation All rights reserved. </code> ===== Usage: ===== VBoxManage [<general option>] <command>
localeadm @info:solaris
21 Hits, Last modified: 13 years ago
caleadm ====== The localeadm utility queries and configures Solaris locales through a command line interface. * man page: [[http://docs.oracle.com/cd/E18752_01/html/816-5166/localeadm-1m.html#REF... o mount it (insert your path in the first line. <code bash> ISOIMG="/share/iso/sol-10-u8-ga-sparc-dvd
Mercurial
18 Hits, Last modified: 13 years ago
s ==== Ignore ''.DS_Store'' and ''._*'' files: <code> (^|/)\._[^/]+$ (^|/)\.DS_Store$ </code> ==== NetBeans ==== These expressions exclude the directo... also exclude ''bin'', ''gen'', ''nbbuild'' or the complete ''nbproject'' directory. Only in the top directory, but not in subdirectories: <code> ^build$ ^dist$ ^nbproject/private$ </code> On
Virtual Network Visualization @info:solaris
16 Hits, Last modified: 13 years ago
upports virtual networks using virtual interfaces connected with virtual switches. This feature was in... ight also be interested in the [[http://blogs.sun.com/observatory/en_US/entry/crossbow_virtual_wire_de... tual Wire Demo Tool]]. ===== dladm2dot.pl ===== <code perl> #! /usr/bin/perl $STYLE{'etherstub'} = "shape=box"; $STYLE{'phys'} = "color=black"; $STYLE{'vnic'} = "color=blue"; #$STYLE
Debug Server Certificate from Client @info:cryptography:openssl
15 Hits, Last modified: 12 years ago
.sh/|langui.sh]]. openssl s_client -showcerts -connect www.andunix.net:443 Informations about the ... p://www.openssl.org/docs/apps/s_client.html#item__connect|-connect www.andunix.net:443]]'': This specifies the host and optional port to connect to. If not specified then an attempt is made
Disable Core Dumps @info:linux
12 Hits, Last modified: 12 years ago
====== Disable Core Dumps ====== To disable core dumps create a file ''/etc/security/limits.d/no_core_dumps'' with the content ''* hard core 0'': <code bash> echo '* hard core 0' > /etc/security/limit
Oracle: Recovery Manager @info:oracle
12 Hits, Last modified: 13 years ago
ager ====== ===== Start Recovery Manager ===== <code bash> rman target / </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 remove archive logs older th
Firefox Extensions @info:prog:firefox
11 Hits, Last modified: 12 years ago
addons.mozilla.org/firefox/addon/self-destructing-cookies/|Self-Destructing Cookies]] |Removes cookies after closing the tab or navigating to another site. | ===== Web Developer... // ^ |[[https://addons.mozilla.org/firefox/addon/colorzilla/|ColorZilla]] | | |[[https://addons.moz
Command Line Audio @info:mac
11 Hits, Last modified: 13 years ago
~~META:date created = 2009-06-19 16:17~~ ====== Command Line Audio ====== ===== Change Mac Audio Volume from Command Line ===== To change the audio volume from remote of my Mac at home, I needed a command line tool which I can use via ssh. I've found it here: [[http://osxdaily.com/2007/04/28/change-the-system-volume-from-the-com
Oracle: SPFile and PFiles @info:oracle
10 Hits, Last modified: 13 years ago
o a PFile, just enter the following in SQLplus: <code sql> CREATE PFILE FROM SPFILE; </code> It will create a PFile ''${ORACLE_HOME}/dbs/init${ORACLE_SI... path to the PFile instead of ${PATH_TO_PFILE}. <code sql> SHUTDOWN IMMEDIATE; STARTUP NOMOUNT PFILE=... ' CREATE SPFILE FROM PFILE; SHUTDOWN IMMEDIATE; </code> If your PFile is located at ''/db/oracle/conf
MacPorts @info:mac
10 Hits, Last modified: 10 years ago
= ===== List Ports ===== list requested ports: <code bash> port echo requested | cut -d ' ' -f 1 | uniq </code> list installed ports: <code bash> port -qv installed </code> ===== Housekeeping ===== When ports are updated, the old port is
Android Backup @info:android
10 Hits, Last modified: 13 years ago
id Backup ====== To backup your device, use this 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 problems with the connection ("adb: unable to connect for backup"), check the l
rmdir for OSX @info:mac
9 Hits, Last modified: 10 years ago
ettings. This makes removing directories from the command line quite complicated: <code bash> $ rmdir test rmdir: test: Directory not empty $ rm test/.DS_Store $ /bin/rmdir test </code> I wrote a small bash function to remove direc
jps - Java Virtual Machine Process Status Tool @info:java
9 Hits, Last modified: 13 years ago
has a ''jps'' tool wich is a bit like the ''ps'' command. ''jps'' lists all ''java'' Processes of a u... r. You can find the man page at [[http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/jps.html]]. I'm u... more examples: List all java processes: ''jps'' <code> 55719 hourglass.jar 51299 jEdit 51610 Main 56026 Jps </code> Long listing: ''jps -l'' <code> 55719 /Users/
SSH @info:sysadmin
9 Hits, Last modified: 10 years ago
Increase the Tomcat Upload Limit @info:sysadmin
9 Hits, Last modified: 9 years ago
Disable a Service @info:linux:debian
8 Hits, Last modified: 9 years ago
Compare directories @info:script
8 Hits, Last modified: 7 years ago
JAX-WS Debugging @info:java
8 Hits, Last modified: 11 years ago
MySQL: Create User @info:mysql:user
8 Hits, Last modified: 10 years ago
Setting the Timezone @info:linux:debian
8 Hits, Last modified: 13 years ago
DynDNS Updates without a Client @info:script
7 Hits, Last modified: 13 years ago
Oracle: List Accounts with Objects @info:oracle
6 Hits, Last modified: 13 years ago
Convert a Key @info:cryptography:openssl
6 Hits, Last modified: 7 years ago
Download a Server Certificate @info:cryptography:openssl
6 Hits, Last modified: 11 years ago
Oracle: Resize Instance @info:oracle
6 Hits, Last modified: 13 years ago
Change Encoding with iconv @info:script
6 Hits, Last modified: 13 years ago
Solaris Manuals @info:solaris
5 Hits, Last modified: 13 years ago
List Open Ports @info:sysadmin
5 Hits, Last modified: 9 years ago
Git @info:code
5 Hits, Last modified: 7 years ago
Make your Mac feel at Home @info:mac
5 Hits, Last modified: 10 years ago
WiFi Config QR-Code
5 Hits, Last modified: 10 years ago
Generate a Test Key @info:cryptography:openssl
4 Hits, Last modified: 11 years ago
Shell Script Variables @info:script
4 Hits, Last modified: 10 years ago
Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
4 Hits, Last modified: 13 years ago
MySQL: Backup @info:mysql:database
4 Hits, Last modified: 13 years ago
Comapct Sparse Image @info:mac
4 Hits, Last modified: 10 years ago
Automatic Submission of a Form if an Element is changed @info:javascript
4 Hits, Last modified: 13 years ago
Package Repositories @info:solaris
4 Hits, Last modified: 13 years ago
MySQL: Remove User @info:mysql:user
4 Hits, Last modified: 13 years ago
MySQL: Change Password @info:mysql:user
4 Hits, Last modified: 12 years ago
Plaintext @info:cryptography
4 Hits, Last modified: 13 years ago
MySQL: Create Database @info:mysql:database
4 Hits, Last modified: 13 years ago
File System @info:solaris
3 Hits, Last modified: 13 years ago
Convert a Certificate @info:cryptography:openssl
3 Hits, Last modified: 11 years ago
Compare a Key with its Certificate @info:cryptography:openssl
3 Hits, Last modified: 13 years ago
Cursor Size @info:linux:gnome
3 Hits, Last modified: 10 years ago
AirPort Command Line Interface @info:mac
3 Hits, Last modified: 10 years ago
Print all certificates in a file @info:cryptography:openssl
2 Hits, Last modified: 13 years ago
Set the Timezone on Debian @info:sysadmin:debian
2 Hits, Last modified: 13 years ago
Set a Mac's Hostname @info:mac
2 Hits, Last modified: 10 years ago
Command Line Tools Used in My Scripts @info:script
2 Hits, Last modified: 13 years ago
Coding @info:code
2 Hits, Last modified: 13 years ago
/etc @info:solaris
2 Hits, Last modified: 13 years ago
Oracle: EXP @info:oracle
2 Hits, Last modified: 13 years ago
MySQL: Revoke Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
Install the Java-Plugin for Firefox @info:java
2 Hits, Last modified: 11 years ago
Specify Java VM for Eclipse @info:code:eclipse
2 Hits, Last modified: 12 years ago
MySQL: View Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
Oracle: SQLplus Scripting @info:oracle
2 Hits, Last modified: 13 years ago
Reload Page @info:javascript
2 Hits, Last modified: 13 years ago
MySQL: Remove Database @info:mysql:database
2 Hits, Last modified: 13 years ago
Print Information about a Signature @info:cryptography:openssl
2 Hits, Last modified: 11 years ago
pargs for Linux @info:linux
2 Hits, Last modified: 12 years ago
MySQL: Grant Permissions @info:mysql:permissions
2 Hits, Last modified: 13 years ago
Thunderbird Extendsions
2 Hits, Last modified: 13 years ago
Shadows @info:webdesign:css
2 Hits, Last modified: 13 years ago
ISO 3166-1 alpha-2 @info:db:iso:3166-1
1 Hits, Last modified: 13 years ago
Solaris: List Devices @info:solaris
1 Hits, Last modified: 13 years ago
ISO 3166-1 @info:db:iso:3166-1
1 Hits, Last modified: 13 years ago
URL Encoding @info:webdesign
1 Hits, Last modified: 12 years ago
ISO 3166-2 @info:db:iso:3166-2
1 Hits, Last modified: 13 years ago
Java @info:java
1 Hits, Last modified: 13 years ago
ISO 3166-2:DE @info:db:iso:3166-2
1 Hits, Last modified: 13 years ago
exiftool @info:script
1 Hits, Last modified: 9 years ago
Eclipse @info:code:eclipse
1 Hits, Last modified: 11 years ago
Firefox @info:prog:firefox
1 Hits, Last modified: 13 years ago
Print Information about a Key @info:cryptography:openssl
1 Hits, Last modified: 11 years ago
root login with bash @info:script
1 Hits, Last modified: 13 years ago
Border @info:webdesign:css
1 Hits, Last modified: 13 years ago
/etc/path_to_inst @info:solaris:etc
1 Hits, Last modified: 13 years ago
Oracle Errors @info:oracle
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