Skip Navigation

Posts
0
Comments
391
Joined
3 yr. ago

Living 20 minutes into the future. Eccentric weirdo. Virtual Adept. Time traveler. Thelemite. Technomage. Hacker on main. APT 3319. Not human. 30% software and implants. H+ - 0.4 on the Berram-7 scale. Furry adjacent. Pan/poly. Burnout.

I try to post as sincerely as possible.

  • Nobody is using all of sudo's features because those features are for different use cases. Case in point, LDAP support. At home, pretty much nobody uses it. But on the job, where there are tens to hundreds of machines that someone might need, and they're all hooked into LDAP for centralized authentication management, it makes sense to have that built into sudo. Same with Kerberos support - at home, forget it, but in a campus environment where Kerberos (and possibly AFS) are part of the network, it makes sense.

  • He's trying to turn Linux into Windows NT. And Microsoft hired him as a reward for doing so.

  • Thing is, Protonmail has been telling people this from the very beginning. It's like it gets rediscovered every year or so when somebody else gets busted.

  • They start with Mac clients because those devs use Macs.

  • Yeah, nah.

  • Points 0 and 1: None of this is new. This goes back to 2011 or 2012.

    Point 2: If someone gets hold of your phone and unlocks it (meaning, they can interact with it), they have access to your Signal messages on-board. This is why additional security measures (not using biometrics, encrypting your phone natively) are recommended. If your phone is off and someone dumps the data from it, they get encrypted data.

  • If you're going self-hosted with your stuff, have you consider a bookmarking webapp like Shaarli? You can even export your bookmarks from your browser and import them.

  • Out of my toolkit:

    • Audio and video? yt-dlp, hands down.
    • Files? The plugin DownThemAll for Firefox.
  • Have you tried a rebalance? What's up over there?

  • In a journalistic context, a ZKP can't prove veracity of the information.

    Let's say you have a hoax that you want to pull on a journo. You cook up something that looks legit, like the blueprints for a super secret stealth fighter or something. You find a way to apply a ZKP to that file (let's say an elaborate cryptographic hash). You leak the file to the journo. They ask for you to iterate on the ZKP a few hundred thousand times (which is on the low side for a ZKP) - easy to do, because you came up with it.

    But that doesn't mean the file's legit. That's a separate problem, and not one that is technological in nature.

  • Looking at balancing might be right place to start. ref, https://archive.kernel.org/oldwiki/btrfs.wiki.kernel.org/index.php/FAQ.html#Help.21_I_ran_out_of_disk_space.21

    You might want to start by rebalancing by percentages and not all at once. If nothing else it'll tell you much sooner if you're on the right track or not. Something like sudo btrfs balance start -dusage=20 -musage=20 /mnt/disk3 to work on only blocks that are 20% full or less. That should coaleace them into single data blocks and free up some others.

  • For non-profits (like 501(c)(3)'s) that's not unusual. Non-profits are more like specialized tools for the board of directors than like companies.

    Source: First ten years of my career were at non-profits.

  • Sounds like they want to crack down on seedboxes.

  • There has to be a way of getting FreeDOS onto the SD card. Way back when, there used to be ways of getting a floppy disk (and hard drive, I did it a few times) bootable with the SYS command to write the boot files to the right places. That was MS-DOS, though.

    Hmm.

    This article seems like it could be helpful.. It's for creating a disk image, not a drive, but the commands should work if you substitute in the SD card you want to use.

    Please note that I haven't actually tried any of this. I'm at work and trying to pull together what scraps of knowledge I still have from my DOS days into something that seems coherent. This might not work, so please treat it as kicking some ideas around over coffee right now!

    ms-sys basically does the same thing that format /s and sys a: used to do back in the days of DOS. That makes a drive bootable. So, you'd partition and format your SD card as VFAT or FAT32 from your box (I don't know if you have a Linux box or a Windows machine, or what). I'm guessing it'd be something like this:

     
        
    sudo fdisk /dev/mmcblk0
    
    # New DOS disk label
    o
    
    # New partition.
    n
    p
    1
    
    
    t
    c
    a
    1
    w
    
      

    Format the partition on the SD card:

     
        
    sudo mkfs.vfat -c -v -F32 /dev/mmcblk0p1
    
      

    Then use ms-sys to write the MBR to the SD card.

     
        
    sudo ms-sys --mbrdos /dev/mmcblk0p1
    
      

    Mount the SD card. Download FreeDOS and uncompress it. I think that would be FD13-FullUSB.zip. There doesn't seem to be a downloadable archive of "Here's all the stuff that's in the disk image," just the disk image. Some gymnastics do seem to be required to mount it:

     
        
    sudo losetup /dev/loop0 FD13FULL.img
    sudo fdisk -l /dev/loop0
    
    Disk /dev/loop0: 512 MiB, 536870912 bytes, 1048576 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0x00000000
    
    Device       Boot Start     End Sectors   Size Id Type
    /dev/loop0p1 *       63 1048319 1048257 511.8M  e W95 FAT16 (LBA)
    
      

    The gymnastics in question have to do with mounting a partition of the disk image, because you can't just set up the disk image and manipulate it like a disk device. In this case, it's calculating where to mount the FreeDOS partition: sector size * first sector == 512 * 63 == 32256

     
        
    sudo losetup -d /dev/loop0
    sudo losetup -o 32256 /dev/loop0 FD13FULL.img
    sudo mount /dev/loop0 /mnt
    
      

    From there, it looks like you'll have to look at /mnt/setup.bat to figure out how to do a manual setup of FreeDOS on the SD card. There is also a /mnt/FDOS-x86/SETUP.BAT file that I think will have to be read through to get the process figured out.

    Again, this is all theoretical. I've no idea if it'll work without tinkering with it on real hardware. It's as close to figuring out how to do a manual installation as I have time for right now.

  • Is it not kept in a git repository?

  • Hot on the heels of piracy spiking when streaming media libraries were being pared down. This reads like a shot against seedboxes.

  • People don’t use turn signals, speed through residential neighborhoods, change lanes in the middle of intersections, it’s insane.

    It's been like that since I was a kid in the 80's.

  • Thanking? No. That would be impolitic.

    Quietly using? They'd be foolish not to.

  • I was working on my final project in a class in undergrad on the campus VAX. VMS had a versioned filesystem, which is to say that every time you saved a file (like your source code in LSE), it would create a new file (e.g., FINAL.COB;23). I was getting confused by all of the versions of my project so I decided to clean some of the older ones out:

    DELETE FINAL.COB;1*

    DELETE FINAL.COB;2*

    I had to run to the data center the VAX was in halfway across campus to beg the sysadmins to restore $STUDENTS:[DRWHO.CS1337]FINAL.COB;* from the hourly tape backup (at least there was that) and re-debug the last two functions so I could hand it in before midnight. Lesson learned: Don't worry about cleaning up your workspace until after you're done.