User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 12:22, 6 October 2015 (diff | hist) . . (+160) . . Find (current)
- 11:34, 1 October 2015 (diff | hist) . . (+1,096) . . Sysctl (current)
- 14:30, 21 September 2015 (diff | hist) . . (+111) . . N Udev (Created page with "== Disable new-style interface naming == <pre> ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules </pre>") (current)
- 14:15, 21 September 2015 (diff | hist) . . (+499) . . N Systemd/network (Created page with "== Static IP setup == File: <code>/etc/systemd/network/wired.network</code> <pre> [Match] Name=eth0 [Network] DNS=8.8.8.8 Address=192.168.101.2/24 Address=123.123.123.123/32...") (current)
- 10:39, 21 August 2015 (diff | hist) . . (+183) . . Sysctl
- 06:40, 19 August 2015 (diff | hist) . . (+214) . . Sysctl
- 15:28, 5 August 2015 (diff | hist) . . (+103) . . N Sysctl (Created page with "== Disable rp_filter == <pre> for i in /proc/sys/net/ipv4/conf/*/rp_filter; do echo 0 > $i done </pre>")
- 16:38, 3 August 2015 (diff | hist) . . (+140) . . N Iproute2 (Created page with "== Add a VLAN == <pre> ip link add link eth0 name eth0.100 type vlan id 100 </pre> == Remove a VLAN == <pre> ip link delete eth0.100 </pre>") (current)
- 19:54, 5 July 2015 (diff | hist) . . (+132) . . N Openssl (Created page with "== Generate self-signed certificate == <pre> openssl req -x509 -nodes -days 365 -newkey rsa:2048 -out out.crt -keyout out.key </pre>") (current)
- 11:03, 1 July 2015 (diff | hist) . . (+352) . . Find
- 16:05, 24 June 2015 (diff | hist) . . (+286) . . N Xargs (Created page with "== Build argument list from previous output == <pre> command | xargs ls -l </pre> == Run command per line of previous output == <pre> command | xargs -L1 ls -l </pre> == Run...") (current)
- 16:07, 21 June 2015 (diff | hist) . . (+117) . . Cryptsetup (current)
- 22:30, 13 June 2015 (diff | hist) . . (+857) . . N Entropy (Created page with "== View available entropy == <pre> cat /proc/sys/kernel/random/entropy_avail </pre> == Increase available entropy == This is applicable to non-interactive machines such as se...") (current)
- 20:24, 12 June 2015 (diff | hist) . . (+77) . . N Tar (Created page with "== List files in archive without extracting == <pre> tar tf <file.tar> </pre>") (current)
- 19:36, 8 June 2015 (diff | hist) . . (+99) . . N Filefrag (Created page with "== Check fragmentation information about a given file == <pre> filefrag -v /var/log/messages </pre>") (current)
- 13:21, 2 June 2015 (diff | hist) . . (+105) . . N Gdisk (Created page with "== Convert MBR to GPT without data loss == <pre> gdisk /dev/sdX </pre> Then type <code>w</code> as input.") (current)
- 08:22, 30 May 2015 (diff | hist) . . (+886) . . N Xorg.conf (Created page with "== Xorg.conf file for QEMU/KVM VMs == <pre> # This is an Xorg configuration file for QEMU/KVM virtual machines. # It lets you run with resolutions larger than 800x600. # # Sa...") (current)
- 18:28, 25 May 2015 (diff | hist) . . (+56) . . Android/adb (current)
- 18:03, 25 May 2015 (diff | hist) . . (+58) . . N Android/adb (Created page with "== View Android system log file == <pre> adb logcat </pre>")
- 18:02, 25 May 2015 (diff | hist) . . (+291) . . N Android/fastboot (Created page with "== Common fastboot commands == <pre> fastboot flash recovery recovery.img </pre> <pre> fastboot flash boot boot.img </pre> <pre> fastboot flash cache cache.img </pre> <pre> fa...") (current)
- 05:03, 25 May 2015 (diff | hist) . . (+177) . . Git (current)
- 02:09, 25 May 2015 (diff | hist) . . (+197) . . X (current)
- 02:07, 25 May 2015 (diff | hist) . . (+103) . . N X (Created page with "== startx fails with repeated "Invalid MIT-MAGIC-COOKIE-1" == <pre> rm ~/.Xauthority* rm ~/.ICE* </pre>")
- 04:15, 21 May 2015 (diff | hist) . . (+206) . . N Qemu (Created page with "== Mount qcow2 image == === To start === <pre> modprobe nbd max_part=63 qemu-nbd -c /dev/nbd0 image.img mount /dev/nbd0p1 /mnt/image </pre> === To finish === <pre> umount /mn...") (current)
- 03:30, 3 May 2015 (diff | hist) . . (+213) . . N Tune2fs (Created page with "== Find filesystem creation date == <pre> tune2fs -l /dev/sdX </pre> <code>-l</code> list the contents of the filesystem superblock, including the current values of the parame...") (current)
- 02:07, 3 May 2015 (diff | hist) . . (+172) . . N Resize2fs (Created page with "== Resize ext4 partition to end of partition boundary == <pre> resize2fs /dev/sdX3 </pre> == Resize ext4 partition to specific size == <pre> resize2fs /dev/sdX3 50G </pre>") (current)
- 07:52, 19 April 2015 (diff | hist) . . (-1) . . m Find
- 07:52, 19 April 2015 (diff | hist) . . (+467) . . Find
- 13:11, 14 April 2015 (diff | hist) . . (+5) . . Miscellaneous (current)
- 13:10, 14 April 2015 (diff | hist) . . (+360) . . Miscellaneous
- 07:48, 7 April 2015 (diff | hist) . . (+126) . . N Miscellaneous (Created page with "== How many additional threads did a process spawn? == <pre> strace <process_name> 2>&1 | grep -e fork -e clone | wc -l </pre>")
- 04:49, 3 April 2015 (diff | hist) . . (+101) . . N Lsof (Created page with "== List open files on / in RW or W mode only == <pre> lsof / | grep -e "digit:\+\(u\|w\)" </pre>") (current)
- 13:02, 24 March 2015 (diff | hist) . . (+106) . . N Stty (Created page with "== Change terminal width == <pre>stty cols 237</pre> == Change terminal height == <pre>stty rows 63</pre>") (current)
- 04:56, 23 March 2015 (diff | hist) . . (0) . . m Arch/VLC (current)
- 04:56, 23 March 2015 (diff | hist) . . (+58) . . Arch/VLC
- 04:55, 23 March 2015 (diff | hist) . . (+162) . . N Arch/VLC (Created page with "== Segmentation fault (core dumped) == Remove the following plugins: <pre> libnotify_plugin.so libkate_plugin.so libgnomevfs_plugin.so gui/libqt4_plugin.so </pre>")
- 12:54, 22 March 2015 (diff | hist) . . (0) . . Sgdisk (→Wipe MBR and GPT partition tables) (current)
- 12:54, 22 March 2015 (diff | hist) . . (+187) . . N Sgdisk (Created page with "== Wipe MTR and GPT partition tables == <pre> sgdisk -Z /dev/sdX </pre> <code>-Z</code> same as <code>--zap-all</code> — Zap (destroy) the GPT and MBR data structures an...")
- 12:47, 22 March 2015 (diff | hist) . . (+349) . . Mdadm (current)
- 12:41, 22 March 2015 (diff | hist) . . (+463) . . N Mdadm (Created page with "== Remove a drive from an active array == <pre> mdadm --manage /dev/md0 --fail /dev/sdX # set the drive as failed mdadm --manage /dev/md0 --remove /dev/sdX # remove the drive...")
- 11:14, 21 March 2015 (diff | hist) . . (+51) . . Benchmarks (current)
- 11:14, 21 March 2015 (diff | hist) . . (-22) . . Benchmarks
- 11:12, 21 March 2015 (diff | hist) . . (+2,234) . . Benchmarks
- 11:02, 21 March 2015 (diff | hist) . . (+1,405) . . N Benchmarks (Created page with "== RAID 6 + LUKS == <pre> eclipse shared # dd if=/dev/zero of=file bs=64M count=100 conv=fdatasync 100+0 records in 100+0 records out 6710886400 bytes (6.7 GB) copied, 19.457...")
- 21:15, 8 March 2015 (diff | hist) . . (+162) . . N Tmux (Created page with "== Setting environment variables == Press <code>CTRL+B</code> and then <code>:</code> (colon)<br /> Type the following: <pre> set-environment ENV_VAR VALUE </pre>") (current)
- 06:32, 4 February 2015 (diff | hist) . . (+95) . . N Debian/dpkg (Created page with "== Find out which package a file belongs to == <pre> dpkg -S `readlink -f /path/to/java` </pre>") (current)
- 23:14, 29 January 2015 (diff | hist) . . (+145) . . Git
- 23:10, 29 January 2015 (diff | hist) . . (+166) . . Git
- 22:35, 29 January 2015 (diff | hist) . . (+338) . . Git
- 22:09, 29 January 2015 (diff | hist) . . (+158) . . Git
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)