Fulltext results:
- VBoxManage (The VirtualBox CLI) @info:virtualbox
- the output of ''VBoxManage'' without options. <code> Oracle VM VirtualBox Command Line Management Int... -2013 Oracle Corporation All rights reserved. </code> ===== Usage: ===== VBoxManage [<general opti... uppress the logo [--settingspw <pw>] provide the settings password [--settingspwfile <file>] provide a file containing the settings password ===== C
- Cleanup Packages @info:linux:debian
- (but not purged) packages with this command: <code bash> dpkg --get-selections | grep 'deinstall$' </code> You can feed this list directly to aptitude to purge the packages: <code bash> aptitude purge $(dp
- localeadm @info:solaris
- mount it (insert your path in the first line. <code bash> ISOIMG="/share/iso/sol-10-u8-ga-sparc-dvd.iso" LOFIDEV=$(lofiadm -a ${ISOIMG}) echo LOFIDEV=${LOFIDEV} mount -F hsfs ${LOFIDEV} /mnt </code> Note: If you're using the bourne shell (instead of
- Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
- ks. ===== Managing File Systems ===== ==== List Devices ==== To list the system's devices, you can use the following commands: * ''dmesg'' * ''format'' * ''prtconf'' * ''sysdef'' ==== Reconfigure Devices ==== To reconfigure the devices, you can perform any of these actions:
- Android Apps @info:android
- ersion. * [[https://play.google.com/store/apps/details?id=com.google.zxing.client.android|Barcode Scanner]] * [[https://play.google.com/store/apps/details?id=de.fun2code.android.webdrive|DavDrive]] / [[https://play.google.com/store/apps/details?id=de.
- Debug Server Certificate from Client @info:cryptography:openssl
- ====== Debug Server Certificate from Client ====== Credit for this example goes to "[[http://langui.s... connect to. If not specified then an attempt is made to connect to the local host on port 443. ===== ... -connect www.andunix.net:443 CONNECTED(00000003) depth=1 C = GB, ST = Greater Manchester, L = Salford... EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxGTAXBgNV BAMT
- Mercurial
- ==== Ignore ''.DS_Store'' and ''._*'' files: <code> (^|/)\._[^/]+$ (^|/)\.DS_Store$ </code> ==== NetBeans ==== These expressions exclude the directories ''build'', ''dist'' and ''nbproject/private''. Depending on your project setup, you may want to als
- Oracle: Recovery Manager @info:oracle
- er ====== ===== Start Recovery Manager ===== <code bash> rman target / </code> ===== Delete Archive Logs ===== Delete all archive logs but keep the last 45 days: <code sql> DELETE ARCHIVE
- Virtual Network Visualization @info:solaris
- '' and generates a dot-File, which then can be rendered using [[http://www.graphviz.org/|Graphviz]]. ... com/observatory/en_US/entry/crossbow_virtual_wire_demo_tool|Crossbow Virtual Wire Demo Tool]]. ===== dladm2dot.pl ===== <code perl> #! /usr/bin/perl $STYLE{'etherstub'} = "shape=box";
- Border @info:webdesign:css
- ====== Border ====== ===== Image Border ===== {{glow_border.png|}} border-image: url("glow_border.png") 30 30 30 30 stretch stretch; border-width: 12px;
- fstyp @info:solaris
- ample ===== ==== UFS: ''fstyp'' ==== fstyp /dev/rdsk/c1t0d0s0 <file> ufs </file> ==== UFS: ''fstyp -v'' ==== fstyp -v /dev/rdsk/c1t0d0s0 <file> ufs magic 11954 format dynamic time Wed Dec 23 17:26:29 2009 sblkno 16 cblkno 24 ... maxbpg 2048 optim time maxcontig 128 rotdelay 0ms rps 167 csaddr 760 cssize 716
- Android Backup @info:android
- ====== Android 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 ... nect for backup"), check the listing of connected devices: <code bash> adb devices </code> Which may
- Disable a Service @info:linux:debian
- sable a Service ====== To disable a service: <code bash> service <service> stop update-rc.d <service> enable|disable </code> With ''systemd'' (starting with Debian 8): <code bash> systemctl disable <service> </code> To (re)enable a service: <code bash> upda
- Oracle: SPFile and PFiles @info:oracle
- 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_SID}... ath 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/config
- MySQL: Create User @info:mysql:user
- QL: Create User ====== ==== Create User ==== <code sql> CREATE USER '{user}'@'%' IDENTIFIED BY '{passwd}'; </code> ==== Create User and Database ==== * Usually, ''{user}'' == ''{db}'' <code sql> CREATE USER '{user}'@'%' IDENTIFIED BY '{pas