bleistift2
@bleistift2@sopuli.xyz
- Comment on Dear Faith IV 10 hours ago:
How dare they entertain us‽ Off with their head!
- Comment on Dear Faith IV 2 days ago:
This doesn’t look like an automated signature to me.
- Comment on I was all set but then saw the sign and moved over one to the left 3 days ago:
“Finally a hole I can hit!”
- Comment on meow meow meow 3 days ago:
Planck’s constant is h. k is usually used for the Boltzmann constant.
- Comment on No u 🫵 4 days ago:
The horizon is always flat, no matter how high you climb. You’d need a rocket to get far enough away from the surface to see its curvature.
- Comment on Pls respond 5 days ago:
I think if you don’t brush your teeth, they might end up looking like this.
- Comment on Push to eliminate sales tax on food and groceries in Missouri runs into resistance 1 week ago:
Tax cuts only benefit corporations. They already price their goods at the maximum that consumers will (read: are able to) pay. Guess what happens if consumers can suddenly pay 10% more because they don’t have to pay 10% tax?
- Comment on the black bellied pangolin 1 week ago:
What is this meme talking about?
The name of order Pholidota comes from Ancient Greek Φολιδωτός – “clad in scales” from φολίς pholís “scale”.
The name “pangolin” comes from the Malay word pengguling meaning “one who rolls up” from guling or giling “to roll”;
en.wikipedia.org/wiki/Pangolin#Etymology
Constantine Rafinesque (1821) formed the Neo-Latin generic name Phataginus from the French term phatagin, adopted by Count Buffon (1763) after the reported local name phatagin or phatagen used in the East Indies.
- Comment on K... 1 week ago:
Didn’t we already do that?
- Comment on We're just scanning for the bear... 1 week ago:
Exactly, thanks.
- Comment on We're just scanning for the bear... 1 week ago:
My point wasn’t that women aren’t looking at the surroundings, but that they don’t do it as is portrayed in the image. You said it yourself: “checking and rechecking the whole time” That doesn’t match singular hotspots, but rather a more spread-out heatmap with peaks at certain positions.
- Comment on We're just scanning for the bear... 1 week ago:
- Comment on We're just scanning for the bear... 1 week ago:
Navigating that scene in real life (or even simulated) would make the data orders of magnitude more annoying to interpret. On a static image you can just overlay all eye movements and produce a heatmap. But for a subject that’s actually (or virtually) moving, none of the data would coincide and you’d have to manually find out which focus points were actually equal.
- Comment on We're just scanning for the bear... 1 week ago:
I’m not buying that heatmap data. Why are almost all the dots on the left red? That would mean that women pick a random spot and focus on that for an extended period of time before moving on to the next. This is not really how you’d investigate a scene. The right images are much more believable to me: Short glances at random points to get an overview of the scene and then re-investigating points of interest.
I am a man, though. Women: Do you really stare random points into oblivion?
- Comment on When a Nintendo lawyer joins a forum to ask for direct download links 2 weeks ago:
Did you not notice that the shirt has custom writing on it?
- Comment on 2 weeks ago:
- Comment on Nice horsie! 🐎 2 weeks ago:
Latest theory I heard was:
A 2014 study found a correlation between striping and overlap with horse and tsetse fly populations and activity. Other studies have found that zebras are rarely targeted by these insect species. Caro and colleagues (2019) studied captive zebras and horses and observed that neither could deter flies from a distance, but zebra stripes kept flies from landing, both on zebras and horses dressed in zebra print coats. […] White or light stripes painted on dark bodies have also been found to reduce fly irritations in both cattle and humans.
- Comment on Darwin was a real one. 2 weeks ago:
Sounds like a regular programmer today.
- Comment on Darwin was a real one. 2 weeks ago:
Darwin was famously seasick, but also wanted to really look at birds and shit. Bad combination.
- Comment on Nice horsie! 🐎 2 weeks ago:
What distinguishes zebras from horses is that zebras live in anonymous herds. That is, they like to clump together to ward off predators, but they don’t know or like each other. They are not a uniform group with a leader. Horses on the other hand do have authorities and followers among them. And humans can hijack the role of the leader.
- Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
It’s good you found some pathological examples, but I’m at the end of my rope here.
You can use these examples and the other information you gathered so far and ask specifically how these size discrepancies can be explained and maybe mitigated. I suggest more specialized communities for this such as !linux@lemmy.ml, !linux@programming.dev, !linux@lemmy.world, !linux4noobs@programming.dev, !linux4noobs@lemmy.world, !linuxquestions@lemmy.zip.
- Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
These differences really are insane. Maybe someone more knowledgeable can comment on why different tools differ so wildly in the total size they report.
I have never used BTRFS, so I must resort to forwarding googled results like this one.
Could you try
compsize ~? If thePerccolumn is much lower than 100% or theDisk Usagecolumn is much lower than theUncompressedcolumn, then you have some BTRFS-specific file-size reduction on your hands, which your external exFAT naturally can’t replicate. - Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
du --count-linksonly counts hard-linked files multiple types. I assumed you had a symlink loop that rsync would have tried to unwrap.For instance:
$ ls -l foo -> ./bar bar -> ./foo
If you tried to rsync that, you’d end up with the directories
foo,bar,foo/bar,bar/foo,foo/bar/foo,bar/foo/bar,foo/bar/foo/bar, ad infinitum, in the target directory. - Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
Personally, I have no more tips that those that have already been presented in this comment section. What I would do now to find out what’s going on is the age-old divide-and-conquer debugging technique:
Using rsync or a file manager (yours is Dolphin), only copy a few top-level directories at a time to your external drive. Note the directories you are about to move before each transfer. After each transfer check if the sizes of the directories on your internal drive (roughly) match those on your external drive (They will probably differ a little bit). You can also use your file manager for that.
If all went fine for the first batch, proceed to the next until you find one where the sizes differ significantly. Then delete that offending batch from the external drive. Divide the offending batch into smaller batches (select fewer directories if you tried transferring multiple; or descend into a single directory and copy its subdirectories piecewise like you did before).
In the end you should have a single directory or file which you have identified as problematic. That can then be investigated further.
- Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
I’d say you can trust that.
- Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
I’m sorry. I was stupid. If you had duplicates due to a file system loop or symlinks, they would all be under different names. So you wouldn’t be able to find them with this method.
- Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
You checked 385GiB of files by hand? Is that size made up by a few humongously large files?
I suggest using
uniqto check if you have duplicate files in there. (uniq’s input must be sorted first). If you still have the output file from the previous step, and it’s calledrsync-output.txt, dosort rsync-output.txt | uniq -dc. This will print the duplicates and the number of their occurrences. - Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
Idk if rsync traverses symlinks and filesystems by default,
From the man page:
Beginning with rsync 3.0.0, rsync always sends these implied directories as real directories in the file list, even if a path element is really a symlink on the sending side. This prevents some really unexpected behaviors when copying the full path of a file that you didn’t realize had a symlink in its path.
That means, if you’re transferring the file
~/foo/bar/file.txt, where~/foo/bar/is a symlink to~/foo/baz, thebazdirectory will essentially be duplicated and end up as the real directory/SSD/foo/barand/SSD/foo/baz. - Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
Let’s back up and check your assumptions: How did you check that the disk usage of your home folder is 385GiB and that there are 780GiB of free disk space on your external drive?
- Comment on When using rsync to backup my /home folder to an external 1TB SSD, I run out of space, how?? 2 weeks ago:
You can store the output of
rsyncin a file by usingrsync ALL_THE_OPTIONS_YOU_USED > rsync-output.txt. This creates a file called rsync-output.txt in your current directory which you can inspect later.This, however means that you won’t see the output right away. You can also use
rsync ALL_THE_OPTIONS_YOU_USED | tee rsync-output.txt, which will both create the file and display the output on your terminal while it is being produced.