

Right now I sneaker net it. I stash a luks encrypted drive in my locker at work and bring it home once a week or so to update the backup.
At some point I’m going to set up a RPI at a friend’s house, but that’s down the road a bit.
Right now I sneaker net it. I stash a luks encrypted drive in my locker at work and bring it home once a week or so to update the backup.
At some point I’m going to set up a RPI at a friend’s house, but that’s down the road a bit.
You could. I didn’t even think about it. I’m used to using dd
, but clonezilla is a totally viable option here.
No worries! Happy to help, and the instructions will work with the HDD, just use the HDD/boot as the in. I shouldn’t have assumed the existing boot was an ssd. Good luck!!!
If you want to clone the existing system onto the new ssd, here’s the broad strokes of what you can do.
lsblk
and note the /dev/sdX
path of the system drive. Write it down./dev/sdX
path of the new ssd. Write it down.dd
command to clone the system drive to the new ssd. The command will look like this:`dd if=/dev/existingBootDrive of=/dev/newSSDDrive bs=8M status=progress oflag=direct’
This command will clone the exact data of the system drive to the new ssd. the if
portion of the command stands for in file
, as in the source of the data you want to clone. Make sure that is your existing boot drive. of
is the out file
, the destination of the clone. Make sure that is your new ssd.
When you do this, the new drive will appear to be the same size as the old drive. This is due to the cloning, but is easily resolved by resizing the partition(s). How you do this depends on the filesystem, so refer to this guide for resizing
UUID
s on the new ssd against what’s in /etc/fstab
on the new disk. To do this, run blkid
to get a list of all the partitions and their UUID
s. Note the UUID
s of the partitions on the new ssd./etc/fstab
, you’ll have to mount the root (/
) partition of the new drive somewhere in the live system. In the terminal you should already be in the home folder of the live system user. Make a new directory with mkdir
. Call it whatever you want. So something like: mkdir newboot
lsblk
and make note of the root partition on the new ssd, then mount that to newboot
(or whatever you called it) with sudo mount /dev/sdX newboot
(where X
is the actual device label for the root parition of the new drive`/etc/fstab
with your terminal text editor of choice. Compare the UUID
s to the ones you noted. If they are the same, you’re golden (they should be the same, but I’ve also had them change on me. ymmv). If they are different, delete the old UUID
and replace it with the new UUID
for each respective partiitonUUID
s to make sure there were no mistakesI don’t use AI at all. What you described is the principal reason. I also don’t like how these giant corpos are sucking up the entirety of human output to train these models without a care to the implications of it.
Not yet. I have to look at my bookshelf and the card and see what might fit.
Do you have any lined up yet?
I was thinking about doing this as well!
+1
I self host vaultwarden and its great. Its an easy self host, and in my experience, it has never gone down on me.
That being said, my experience is anecdotal. If you do go the vaultwarden route, realize that your vault is still accessible on your devices (phone, whatever) even if your server goes down, or if you just lose network connectivity. They hold local (encrypted at rest) copies of your vault that are periodically updated.
Additionally, regardless of the route you take you should absolutely be practicing a good 3-2-1 backup strategy with your password vault, as with any other data you value.
Doesn’t solve the whole problem, but here’s a great resource for car manuals called OPERATION charm
ffs. Of course they had to slap AI on top of it. Goddammit.
Karakeep might work for you
Jaded outcast
I use my airpods with my graphene os device (also a 7a) every day. One thing I’d recommend doing is first connect the airpods to a macos/iOS device and go into settings to customize the double tap/squeeze options for your airpods. This will then be the behavior those actions will have with your graphene device. Then have all apple devices forget those airpods.
Once that’s done you should be able to have your 7a find and connect to the airpods once you put them as n pairing mode.
I love zoxide. Makes traversing the filesystem so much faster!
deleted by creator
Guess I’m lawful neutral.
Used to be true neutral, but haven’t had to convert an image to a PNG in, goah it’s been years now.
As I trying to learn as much ad I can about bash, I’d probably end up doing it lawful good.
Same here. luks encrypted drive in my work locker.