🏳️‍⚧️ Anlu 

@anlu@floss.social
1 Followers
4 Following
13 Posts
birthdateAugust/1980
Occupationdigital art, floss
CountryBrasil

but like, there is CLEARLY a way to make this happen, if you twiddle with some shit and know enough of the lower level networking tools

but man, image magick and ffmpeg are often installed in standard full user space installs

so why the fuck do i have to use tar and nc

If British Journalists DID THIS ONE THING, the "Gender Critical" movement would be finished (video)

https://www.youtube.com/watch?v=68M-vzxz2co

#transgender #trans #LGBTQ #LGBTQIA

If British Journalists DID THIS ONE THING, the "Gender Critical" movement would be finished

YouTube

In Linux, file types define how the kernel recognizes and interacts with files, influencing actions such as reading, writing, and executing them within the filesystem

Here are a list of available file types on Linux 😎👇 #sysadmin #devops #opensource

Find high-res pdf books with all my #Linux related infographics at https://study-notes.org

Trinity Desktop Environment R14.1.4 Released with Support for Ubuntu 25.04 https://9to5linux.com/trinity-desktop-environment-r14-1-4-released-with-support-for-ubuntu-25-04
GoboLinux 017.01 - Release Notes

Australia is considering making changes to build all-gender toilets. What are they?

https://www.abc.net.au/news/2025-03-20/all-gender-bathrooms-in-australia-explained/105003442

#transgender #trans #LGBTQ #LGBTQIA

Australia is considering making changes to build all-gender toilets. What are they?

With universities and sports stadiums installing gender-inclusive bathrooms, Australia is considering making changes to make it easier to do so. We unpack what the proposed changes would mean.

ABC News

Hello, Mastodon family! It's been a long time coming, but Xubuntu has officially left X behind!

https://x.com/Xubuntu/status/1886754277177123276

If you're still using X, consider sharing our update to spread awareness. We'll continue to bring you the best of #Xfce and #Linux... all in one place.

(edit: because everything is confusing and nothing makes sense... we're leaving X, formerly known as Twitter, not X11. Wayland is still very much in the future!)

Xubuntu (@Xubuntu) on X

To all of our fans, friends, and lovers of #Xfce, #Linux, and especially #Xubuntu... we've moved! Follow us at https://t.co/F3MJIl4L3f! This account will no longer be regularly maintained. Many thanks for the years of support and our 11.9K (wow!) followers! You're the best!

X (formerly Twitter)
 
×

In Linux, file types define how the kernel recognizes and interacts with files, influencing actions such as reading, writing, and executing them within the filesystem

Here are a list of available file types on Linux 😎👇 #sysadmin #devops #opensource

Find high-res pdf books with all my #Linux related infographics at https://study-notes.org

@dan_nanni does kernel actually recognize hard-links differently from regular files?

For symbolic links, there are user space tools to detect them.

For hard-links, I thought this is all handled transparently on filesystem level, and it is used on upper layers as regular files or directories.

@kravemir
In Linux ext file systems there are directory entries (inodes) and data objects. You can have two inodes pointing to the same data and that's hardlinks.
Softlinks in turn contain paths to other inodes
@dan_nanni
@kravemir good point! At the filesystem level, hard links and regular files are the same. But the way they are created differs. For hard links there must be preexisting inode and they cannot be created out of thin air like true regular files. So I guess distinction depends on where you put your focus