Giving up control bit by bit
-
This post did not contain any content.
When I say monkey you say blunt.
Monkey!
Blunt!
Go Zip!
-
I use Windows and have never encountered what you are describing.
none of my files have ever been 'moved' to OneDrive and none of my files that are on OneDrive have ever been locked behind a paywall.
Well we all know OneDrive cost money but like you get 5 or 10GB free, and even then if you go over I'm 99% sure those files just stay on your PC.
But the moving files thing feels real. I remember testing out Fedora one time with a classmate who was trying to convince me to switch, and for some reason, even though I direct all downloads to the download folder, it was in my OneDrive somehow. So when my VM tried installing the iso, it was taking a million years to pull it from OneDrive.
Similarly, I didn't realize my Documents folder was backed up on the Cloud, so I had to find the dumbass settings to turn off backups for documents and other shit besides pictures. This is one of those moments where I understand why Linux users love a CLI, because Microsoft's menus are stupid to navigate sometimes.
The worst offender that I never managed to figure out was my ShareX files. It would save locally, but then switch to OneDrive for no reason, so my config and shortcuts would be lost, and the auto backups would also be lost. I fought with that thing for months, and only gave up cause I moved to Fedora Silverblue, in which Linux unfortunately has no app that is nearly as good as ShareX.
-
This post did not contain any content.
It's almost as if this is a computer architecture designed for idiots who don't know or care what a file is or for what purposes their data is being harvested. Everywhere I hear people falling over themselves to declare that the tablet smartphone was apple's golden gift to the world. Try to do any serious work on one, it's fucking annoying.
Whenever we make technology accessible to stupid people it becomes irritating to use and a privacy nightmare.
-
This post did not contain any content.
I can find files just fine on my Android phone, BUT when saving files on my iPad this meme would be true.
I was editing a document on my iPad, saved it in a folder labeled 'documents', searched with the files app and the document folder wasn't on my iPad or iCloud.
Come to find out the app itself made a folder named documents within itself. So in order to get it on my iPad itself i had to share the file to dropbox then redownload it 🤨
-
Opens the files app which shows all files that were recently downloaded from any app to the file system.
mine doesn't do that. also, what if you're looking for a file that's older than three weeks old? should I go fuck myself then?
-
Use a system indexer like Listary or Everything and you never have to worry about finding a file ever again, just type its name and it'll be the first result
Everything is fantastic. Plus it can be integrated (somewhat) into Classic Shell's search.
-
Funni, cause the comment below from AstralPath and lightnsfw tells a different story
Not my fault they choose to Linux on hard mode
-
This post did not contain any content.
This is a real problem with young people coming into the office. They don't know how to navigate a file system. They've never had to do it.
-
Opens the files app which shows all files that were recently downloaded from any app to the file system.
That's like piling all your paperwork on your office desk in a giant tower in the order they came in and arguing that's just as good as sorting them into files and putting them in the cabinet.
-
I can find files just fine on my Android phone, BUT when saving files on my iPad this meme would be true.
I was editing a document on my iPad, saved it in a folder labeled 'documents', searched with the files app and the document folder wasn't on my iPad or iCloud.
Come to find out the app itself made a folder named documents within itself. So in order to get it on my iPad itself i had to share the file to dropbox then redownload it 🤨
Home puter is a Mac which I only use for the Logic DAW but they have a primary app called Finder which has never found anything I asked for. Its a Finder that doesnt Find.
-
This post did not contain any content.
Android is pretty bad in many regards
But it has the best, most human-friendly user interface ever. Especially on tablets
And I’m ready to die on that hill xD
-
This post did not contain any content.
I find it funny that there's a bunch of people here who know how to use android's file system. Like, of course the Linux nerds figured out how to use it (and I love you all the more for it)
-
mine doesn't do that. also, what if you're looking for a file that's older than three weeks old? should I go fuck myself then?
You could use a different file manager. And there's a few places I would look for files : downloads, pictures, etc, or in a folder named for the app under one of those places
-
Linux:
ls
cd directory
ls
cd directory2
ls
cd directory3
...On linux you don't search, you
find
-
dpkg -S
requires a full path like the example I gave.dpkg -L samba
should work fine. What is the error you got?No error or anything, but it just doesn't have the
/etc/samba/smb.conf
file. Just doesn't have it.dpkg -S samba
does find/usr/share/samba/smb.conf
which isn't the right file either. -
I can find files just fine on my Android phone, BUT when saving files on my iPad this meme would be true.
I was editing a document on my iPad, saved it in a folder labeled 'documents', searched with the files app and the document folder wasn't on my iPad or iCloud.
Come to find out the app itself made a folder named documents within itself. So in order to get it on my iPad itself i had to share the file to dropbox then redownload it 🤨
Yeah, developers can't access those folders without some super specific permissions, so most just use the dedicated app folder.
-
I find it funny that there's a bunch of people here who know how to use android's file system. Like, of course the Linux nerds figured out how to use it (and I love you all the more for it)
Varies a ton between apps, some use private app storage on Android too (only accessible with root) or in appdata storage (restricted to system apps), or in scattered folders under the regular "user data" folders (easiest by far)
Bonus points if you have an SD card, double bonus points if you manage to have 2 of them, because then you have multiple copies of these standard user data folders
-
I find it funny that there's a bunch of people here who know how to use android's file system. Like, of course the Linux nerds figured out how to use it (and I love you all the more for it)
It's one of the most frustrating things ever. Anyone acting like navigating Android's files is anything similar to navigating any desktop computer's files needs some perspective. "You said this is difficult, but for me it's easy, therefore it's actually easy."
-
Opens the files app which shows all files that were recently downloaded from any app to the file system.
wrote on last edited by [email protected] -
No error or anything, but it just doesn't have the
/etc/samba/smb.conf
file. Just doesn't have it.dpkg -S samba
does find/usr/share/samba/smb.conf
which isn't the right file either.wrote on last edited by [email protected]You're confusing the command again
-L, --listfiles package-name... List files installed to your system from package-name. -S, --search filename-search-pattern... Search for a filename from installed packages.
dpkg -S /my/file/path
Finds which, installed, package installed the file.
dpkg -L samba | grep .conf
Greps through the list of files installed by a given package.
If the file you want isn't in there then it wasn't installed by the package itself (could be created on the fly by the binary for example), in which case obviously the package system can't track it.