This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I just thought this was interesting--so copying here. Not my words: | |
| In this article I (Edmundo Carmona) will describe an experience I had that began with the failure of some RAID5 disks at the Hospital of Pediatric Especialties, where I work. While I wouldn’t wish such an event on my worst enemy, it was something that made me learn about the power of knowledge—a deep knowledge, which is so important in the hacking culture. | |
| Are you in dire straights with your hard drive? | |
| We at Free Software Magazine had a major hardware crash. The good guys at DTI DATA performed hard drive recovery and saved our magazine! | |
| Friday, April 29, 2005 | |
| This article has downloads! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # aria2c https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2025-10-02/2025-10-01-raspios-trixie-arm64-lite.img.xz | |
| # unxz 2025-10-01-raspios-trixie-arm64-lite.img.xz | |
| # | |
| # qemu-img convert -f raw -O qcow2 2025-10-01-raspios-trixie-arm64-lite.img raspios-lite.qcow2 | |
| # qemu-img resize raspios-lite.qcow2 +20G | |
| # | |
| # rm 2025-10-01-raspios-trixie-arm64-lite.img | |
| Use Raspberry Pi Imager to build an image |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /bin/qemu-system-arm64 \ | |
| -name raspios-lite,process=raspios-lite \ | |
| -machine virt,accel=kvm \ | |
| # -cpu cortex-a72 \ | |
| -cpu max \ | |
| -smp cores=3 \ | |
| -m 4G \ | |
| -device virtio-balloon \ | |
| -pidfile raspios-lite.pid \ | |
| -rtc base=utc,clock=host \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /bin/qemu-system-arm64 \ | |
| -name alpine-v3.22,process=alpine-v3.22 \ | |
| -machine virt,accel=kvm \ | |
| -cpu max \ | |
| -smp cores=3 \ | |
| -m 4G \ | |
| # -boot d | |
| -device virtio-balloon \ | |
| -pidfile alpine-v3.22.pid \ | |
| -rtc base=utc,clock=host \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://cwa.omg.lol | |
| https://adriannasvitak.com | |
| https://albertocinco.com | |
| http://iamnotana.com | |
| http://experiment-now.de/corporate-life | |
| https://aleesteele.com | |
| https://april.wiki | |
| https://aram.sh | |
| https://asandei.com | |
| https://carolwightman.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ArgparseDBsOrPaths(argparse.Action): | |
| def __call__(self, parser, namespace, values, option_string=None): | |
| if values is None: | |
| return None | |
| databases = [] | |
| if values == [STDIN_DASH]: | |
| print(f"{parser.prog}: Reading from stdin...", file=sys.stderr) | |
| stdin_paths = sys.stdin.readlines() | |
| paths = None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > The Mojave Desert through the Eyes of the Minarchist | |
| > The game starts off in almost perfect balance | |
| > Each faction tolerates each other | |
| > fighting | |
| > but never killing off each other | |
| > Then you start the game and you throw it all out of balance | |
| > The Mojave is pretty unforgiving | |
| > but if it's one thing | |
| > it is fair | |
| > It doesn't choose sides |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name MangaPlus Spacebar Navigation | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.4 | |
| // @description Use space/shift+space to simulate clicks for MangaPlus navigation. | |
| // @author You | |
| // @match https://mangaplus.shueisha.co.jp/viewer/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function untracked -w 'git status' | |
| git status --porcelain --short $argv | awk 'substr($0, 1, 2) == "??" {print substr($0, 4)}' | string unescape --style=script | |
| end | |
| function added -w 'git status' | |
| git status --porcelain --short $argv | awk 'substr($0, 1, 1) == "A" && substr($0, 2, 1) == " " {print substr($0, 4)}' | string unescape --style=script | |
| end | |
| function deleted -w 'git status' | |
| git status --porcelain --short $argv | awk 'substr($0, 1, 1) == " " && substr($0, 2, 1) == "D" {print substr($0, 4)}' | string unescape --style=script |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /var/lib/plocate/plocate.db: Permission denied | |
| ls -lahg /var/lib/plocate/ | |
| Permissions Size User Group Date Modified Name | |
| .rw-r-----@ 337M root colord 1 Aug 01:02 plocate.db | |
| Solution: | |
| sudo chown :plocate /var/lib/plocate/plocate.db | |
| but why does this happen? |
NewerOlder