• 3 Posts
  • 18 Comments
Joined 1 year ago
cake
Cake day: July 17th, 2023

help-circle



  • root@skynet:~# ntfsfix -b -d /dev/sda1  
    Mounting volume... NTFS signature is missing.  
    FAILED  
    Attempting to correct errors... NTFS signature is missing.  
    FAILED  
    Failed to startup volume: Invalid argument  
    NTFS signature is missing.  
    Trying the alternate boot sector  
    Unrecoverable error  
    Volume is corrupt. You should run chkdsk.  
    
    root@skynet:~# ntfsfix -b -d /dev/sda2  
    Mounting volume... OK  
    Processing of $MFT and $MFTMirr completed successfully.  
    Checking the alternate boot sector... OK  
    NTFS volume version is 3.1.  
    Going to un-mark the bad clusters ($BadClus)... No bad clusters...OK  
    NTFS partition /dev/sda2 was processed successfully.
    

    turned off windows quick start ran chkdks D: and waited…then shut down and put drive back into linux and reboot. still no


    any ideas? clearly not the larger partition, which is good.





  • Grapheneos can be used almost identically to stock android. You can install google apps and use them or not. The biggest piece of it is the options.

    There is no account associated to GOS. You can login to an existing google account etc, just like any android.

    GOS has messages for SMS only. It had a Gallery app for photos and a files app for system files. There aren’t many apps it comes with, so getting alternative apps is easy. Mostly via Fdroid (or droidify for a more modern looking app). For a better photos app, I recommend “Aves” For a drive app, a private option would be proton drive. Notes app can be anything you want, but GOS doesn’t come with one. If you want to use google notes you can. I wouldn’t recommend it, but you can. There are lots on Fdroid to choose from.

    As for cloud sync, GOS doesn’t do this, but again, you can use any other service you’d normally use to sync. I use Syncthing to sync a folder on my phone to a folder on my PC. That way I can have things like my photos easily on desktop and have backups.

    As for app stores, GOS doesn’t recommend Aurora because they don’t sign the apps the provide, but I use it anyways, as it is the best way to get apps without a google account.

    You definitely don’t need your own Nextcloud or Homelab. I prefer paying for hardware I own instead of cloud things, but both have good positives.

    Also, your questions aren’t stupid their great! You’re just learning about this stuff that that’s amazing. Keep learning.


  • Dust0741@lemmy.worldOPtoPrivacy@lemmy.mlISP junk generator
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    6 months ago

    Little curl shell script that works:

    #!/bin/bash
    
    # Random_Curl_Request.sh
    
    # CSV file containing websites
    CSV_FILE="/home/user/Documents/randomSiteVisitor/websites.csv"
    
    # Get a random line from the CSV file
    RANDOM_LINE=$(shuf -n 1 "$CSV_FILE")
    
    # Extract the website URL from the random line
    WEBSITE=$(echo $RANDOM_LINE | cut -d ',' -f 1)
    
    # Make a curl request to the random website every minute
    while true; do
        curl $WEBSITE
        sleep 60
    
        # Get a new random line from the CSV file
        RANDOM_LINE=$(shuf -n 1 "$CSV_FILE")
    
        # Extract the website URL from the new random line
        NEW_WEBSITE=$(echo $RANDOM_LINE | cut -d ',' -f 1)
    
        # Update the website URL for the next iteration
        WEBSITE=$NEW_WEBSITE
    done