Fulltext results:
- Android Apps @info:android
- ====== Android Apps ====== Here are some links to Android Apps I'm using. Where available, there are both links, the paid and the free version. * [[https://play.google.com/store/
- Git @info:code
- Init Repository === Standard: git init [DIR] Bare: git init --bare [DIR] === Log === See commits between branches: git log master..develop ===== Br... s branches === List branches with commits, which are not in branch REF: git branch --no-merged REF For example, list unmerged branches, which are not in ''develop'': git branch --no-merged deve
- Disable Core Dumps @info:linux
- ====== 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/limits.
- Cleanup Packages @info:linux:debian
- ains on the system. This is a good thing, as you are able to reinstall the package and have it configu... If a packages is installed, all its dependencies are also automatically installed. If the selected package is removed or the dependencies change, there can be left over packages. ''deborphan'' is an ut... h> deborphan </code> If you want, you can even more suggestions for packages to remove: <code bash>
- Mercurial
- ====== Mercurial ====== ===== .hgignore ===== Some handy ''.hgignore'' expressions: ==== Ignore Mac Files ==== Ignore ''.DS_Store'' and ''._*'' files: <code> (^|/)\._[^/]+$ (^|/)\.DS_Store$ </cod
- VBoxManage (The VirtualBox CLI) @info:virtualbox
- ideo on|off] [--firmware bios|efi|efi32|efi64] ... lmacs|keepnatmacs] [more options] (run with -n... <uuid>|<name> | restore <uuid>|<name> | resto... <string> --action ignore|hold (global filters only)
- rmdir for OSX @info:mac
- or OSX ====== The Finder on OSX creates ''.DS_Store'' files in the directories to store its settings. This makes removing directories from the command li... rmdir: test: Directory not empty $ rm test/.DS_Store $ /bin/rmdir test </code> I wrote a small bash ... directories together with the contained ''.DS_Store'' file: <code bash> rmdir() { for d in "$@" do f
- Convert a Key @info:cryptography:openssl
- ert a Key ====== ===== Convert P12 to Java Keystore ===== keytool -importkeystore -srckeystore testkey.p12 -srcstoretype pkcs12 -srcalias 1 -destkeystore testkey.jks -deststoretype jks -destalias testkey
- Package Repositories @info:solaris
- ====== Package Repositories ====== There's a list of multi-OS repositories at [[http://wikis.sun.com/d... Practices/Directory+of+Package+Repositories]]. More on IPS, the Image Package System can be found at:... aris.org/pending/ |Packages in the pending repo are not qualified and not recommended for installatio... |blastwave.org Repository | |http://pkg.sunfreeware.com:9000/ |sunfreeware.com Reporitory | |http:/
- Compare a Key with its Certificate @info:cryptography:openssl
- ====== Compare a Key with its Certificate ====== Credit for this example goes to "[[https://kb.wisc.edu/middleware/page.php?id=4064|Verifying that a Private Key Mat... nt is quite always 65537. So we only need to compare the modulus. openssl x509 -noout -modulus -in ... 73703FC3932640354D63 </file> It's easier to compare them if you calculate a MD5 sum: openssl x509
- Notes for the Solaris 10 System Administration Exam (CX-310-200 & -202) @info:solaris
- ystem Administrator (SCSA)]] certification. This are my notes taken while studying the preparation boo... t'' * ''prtconf'' * ''sysdef'' ==== Reconfigure Devices ==== To reconfigure the devices, you can perform any of these actions: - ''touch /reconfigure'' and reboot the system - From OK promt, bott t
- Virtual Network Visualization @info:solaris
- rfaces connected with virtual switches. This feature was introduced with [[http://www.opensolaris.org/... un.com/observatory/en_US/entry/crossbow_virtual_wire_demo_tool|Crossbow Virtual Wire Demo Tool]]. ===== dladm2dot.pl ===== <code perl> #! /usr/bin/perl
- localeadm @info:solaris
- ease and get a matching DVD or ISO image. If you're using an ISO image, you have to mount it (insert ... path in the first line. <code bash> ISOIMG="/share/iso/sol-10-u8-ga-sparc-dvd.iso" LOFIDEV=$(lofiadm... unt -F hsfs ${LOFIDEV} /mnt </code> Note: If you're using the bourne shell (instead of bash or ksh), ... […] ----------------- The following regions are installed on maja on Donnerstag, 9. September 20
- Increase the Tomcat Upload Limit @info:sysadmin
- led Tomcat in ''/opt/tomcat'', the file will be here: ''/opt/tomcat/webapps/manager/WEB-INF/web.xml''.... led Tomcat with the package manager, it will be here: ''/usr/share/tomcat7-admin/manager/WEB-INF/web.xml'' {{tag>sysadmin admin java apache tomcat config
- DynDNS Updates without a Client @info:script
- n} - " curl --silent --show-error --insecure --user ${LOGIN} "${UPDATE_URL}?hostname=${domain}... variable) and the server's URL (''$UPDATE_URL'') are read from the config file ''~/.dyndns.cfg''. Here an example config file: <file bash dyndns.cfg> LO... e domains. Currently, I use the switch ''--insecure'' to disable the SSL certificate check. As soon a