Migrating here (or maybe keeping both) from @ArcaneSlime@lemmy.ml

Will put an eternal curse on your enemies for a Cinemageddon invite.

  • 4 Posts
  • 649 Comments
Joined 2 years ago
cake
Cake day: June 30th, 2023

help-circle

  • I find sometimes the gui takes a while to manipulate say 300 folders. Like if I want to move all the mp4 files from a folder structure into another directory but leave everything else you can use something like

    find /path/to/piracy/directory/ -name '*.mp4' -exec cp -r {} /path/to/piracy/storage/ \;
    

    And it’ll send em on over.

    And I didn’t remember that command, I had it in a script, so to find it to post here I just typed:

    cat ~/Documents/scripts/scriptname/
    

    And hit enter, and it gave me the info in the file. Tbh it was even easier than that, with tab completion I just had to type:

    cat Doc[tab]/sc[tab]/sc[tab]

    But back to the piracy, then to delete everything left over from that first script (like .nfo files) just

    cd ~/piracy/directory/
    rm -r *
    exit
    

    And will remove everything instantly.

    To make it easier you can make a script with the first command, even chain it with the same for avi etc, and you could probably have it auto clean the source directory afterwards, but I like to do that manually. You can also (in most piracy programs) tell it to run a script on complete, so you could have that all automated by that process (if you don’t store them in an external drive like me.) And you can get way fancier with it too, I’m very much still learning, there’s way more that can be done pretty easily. I do still use the GUI sometimes too though and for some stuff it is easier, it’s definitely not an all or nothing thing, both is better!

    Also I’m totally not a pirate that was just an example…cough cough.



  • Moving files, deleting files, text editing, converting files, stuff like btop, a lot really.

    When I started I watched a few “linux cli tutorial” and “bash basics” or “bash for beginners” type videos on youtube and followed along in my terminal like a class, pausing when needed. That’s all it took for me to be off to the races learning more because of just how easy it is to do a lot of stuff, and I still learn more all the time.

    Couple tips (really some of this applies regardless of cli or gui):

    • Keep offsite back-ups, just in case. Worst case scenario you reinstall and replace your files.

    • Be careful with sudo but otherwise you’ll be fine. That’s not to say don’t use sudo just be mindful.

    • Learn just the basics at first and then learn more as you go and get more comfortable, I kinda use the unix philosophy for it here and only learn it if I need it, most often.

    • You can save semi-commonly used commands to a txt file and reference it later, really helps for stuff you only use every now and again. There’s also the history command and ctrl+r but I still find the file useful.

    It really isn’t as hard as it had looked before I started, and I use it constantly now.





  • I mean, I understand where you’re coming from, they absolutely shouldn’t log IPs. BUT, if you’re committing crimes or even doing legal things the government doesn’t like, it would behoove you to put in the absolute bare minimum of OPSEC at least.

    Like, some people know they have STDs and don’t warn people and spread them, right? And while the spreader is obviously the problem there, some commonly accepted advice to the victim is “you should have worn a condom anyway.” And they should have worn a condom to protect themselves (and also the spreader should be held liable.)

    Like the previous example, anyone using any online service (for secrety things) should know to put a VPN condom on before they put their data inside that sexy, slutty server rack. And like how contraceptives were that knowledge needs to be spread.



  • Meanwhile on fedora over ~5yr or so I update at least once a week (or daily when I have home internet, but currently I do not so I bring my laptop to friends’ places and update on theirs every so often) and I’ve had updates break stuff only two or three times, and only once was it that serious. Like once it broke vlc and I just had to use mpv for a day or two until it updated to match and whatever issue was fixed, nbd.

    If something breaks every time you update it’s either your hardware and you’ll just always have that until you switch it up (which sucks, so hopefully not) or try a new distro if you’re having that many problems with Mint. “Every time” isn’t a “normal” user experience, it should be an uncommon annoyance, maybe common back in the day, but not anymore.