linux

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

node815, in Ubuntu is my daily driver but I'm thinking of setting this up on my never used Raspberry PI -- anyone using it? How tough do you think it will be as a first project?

Brings back memories of running “The Upper Room BBS” and “007 BBS” as a teenager in the late 80’s as a SYSOP. Those were fond memories, of having someone dial into your computer and making online friends from across the country sometimes.

I think now though, you can just Telnet into different BBS’s still.

www.telnetbbsguide.com/bbs/list/brief/

wowwoweowza,

This looks amazing! Thank you.

KISSmyOS, in The Unity Desktop Environment an Underrated Masterpiece

I always hated how it took away screen real estate from the top and the side for no good reason

elbarto777,

Clock in the top center of the screen with no native configuration option to put back on the side because fuck you!

Wes_Dev,

It also tried to save space with auto hiding the sidebar and using global menus built into the panel, instead of having a panel and then a titlebar.

Aatube,
@Aatube@kbin.social avatar

The universal menu bar saves space by shrinking application menus. Almost every DE has an application bar and I don’t see why you hate that.

dewritoninja, in The Unity Desktop Environment an Underrated Masterpiece

Last time I used unity full time was 3 years ago on an old hp, couldn’t run gnome for some reason and I was very noo in Linux at the time so I installed Ubuntu 16 and upgraded it to 18. The aesthetic was very windows 7. It was alright but I prefer gnome

sbv, in The Unity Desktop Environment an Underrated Masterpiece

I used Unity for five or six years. It was undeniably fine. I had no complaints.

Mohamad20ZX,

But isn’t the new version great

sbv,

Probably? I switched employers and I’m running osx now. I prefer Unity, but osx works too.

Flaky,
@Flaky@iusearchlinux.fyi avatar

I used it at university. I don’t think anyone there complained about it, and these people were not Linux users…

toomanyjoints69,

That might be why tbh. Unity seems very intuitive as long as someone has an open mind similar to the expectation that a mac will be different than wibdows.

sbv,

That’s good! It should be usable and intuitive for everybody.

Ramin_HAL9001, (edited ) in The Unity Desktop Environment an Underrated Masterpiece

As far as I understand, Unity is mostly just a Gtk-based desktop environment similar to Cinnamon, but with the Unity shell and launcher, and the global menu.

As a long-time Mac user I always liked the global menu, but it was just such a pain to always have to patch Gtk to get it to work, and in the end it isn’t such a huge improvement to my quality of life that I think it is worth the trouble. It is nice that Unity takes care of this for you. That said, and I hate to admit it, but I think Gnome actually is more stable than Unity, mostly because there is so much more financial backing for it, so it is hard for me to recommend using Unity unless you really just love the aesthetics of it.

Mohamad20ZX,

Ok but you know that im using the official Ubuntu unity flavor thats maintained and i really just want to be unique using an Underrated de instead of gnome and the like but kde is also great as well and i will switch to it after i get a customized to unity first

entropicdrift,
@entropicdrift@lemmy.sdf.org avatar

I love your spirit here, but please add punctuation to your comments in the future.

Mohamad20ZX,

Why are you guys like this its just a very passionate post talking about the unity de

Aatube,
@Aatube@kbin.social avatar

It makes you a bit harder to understand

Mohamad20ZX,

Oh its my keyboard being not functioning well again

mitrosus,

Actually I am liking her writing. (Not native myself either.)

Dudewitbow, in 13" or smaller Linux laptop - best replacement for aging chromebook?

From a guy who processes thousands of devices in e-waate recycling, legit any refurb lenovo thinkpad/dell precision/hp elitebook laptop. People will stop using tech way before they should be stopped being practically used.

Imo i think thinkpads are better value(due to sheer volume in market) and they tend to have several options (normal laptop vs 2 in 1 vs slim laptop vs big screen vs one with a gpu in it)

Nimrod,

I think this is the way forward.

I’d love it if I could find something with a decent GPU so it could run some Minecraft action.

Is eBay my best bet?

TCB13, in Best practices in mounting NAS shares?
@TCB13@lemmy.world avatar
possiblylinux127, in Best practices in mounting NAS shares?

I just mount the share in my file manager

possiblylinux127, in Why didn't anyone remind me the dual booting exists?

We used to dual boot before virtualization matured.

PseudoSpock, in https://redstrate.com/blog/2023/11/my-work-in-kde-for-november-2023/
@PseudoSpock@lemmy.dbzer0.com avatar

Downvoting for the thumbnail image.

astraeus,
@astraeus@programming.dev avatar

Upvoting for the thumbnail image

Cute fox girl gets +1

TheGrandNagus,

The original Linux mascot almost was a Fox girl called Xenia.

possiblylinux127, in Red Hat Enterprise Linux 10 Dropping The X.Org Server Except For XWayland

Makes sense

tkf, in Best practices in mounting NAS shares?
@tkf@infosec.pub avatar

I’m curious, what file system do you use to mount your share? (SMB, SSHFS, WebDAV, NFS…?) I’ve never managed to get decent performance on a remote-mounted directory because of the latency, even on a local network, and this becomes an issue with large directories

NotAnArdvark,

Agreed on the latency issues. I tested SMB and NFS once and found them to be pretty much the same in that regard.

I’m interested to test iSCSI, as for some reason I think it might be better designed for latency.

dan, (edited )
@dan@upvote.au avatar

If you want the lowest latency, you could try NBD. It’s a block protocol but with less overhead compared to iSCSI. github.com/NetworkBlockDevice/nbd/tree/master

Like iSCSI, it exposes a disk image file, or a raw partition if you’d like (by using something like /dev/sda3 or /dev/mapper/foo as the file name). Unlike iSCSI, it’s a fairly basic protocol (the API is literally only 9 commands). iSCSI is essentially just regular SCSI over the network.

NFS and SMB have to deal with file locks, multiple readers and writers concurrently accessing the same file, permissions, etc. That can add a little bit of overhead. With iSCSI and NBD, it assumes only one client is using the file (because it’s impossible for two clients to use the same disk image at the same time - it’ll get corrupted) and it’s just reading and writing raw data.

Rockslide0482,

main thing to note is that NFS is an object based storage (acts like a share) where iSCSI is block based (acts like a disk). You’d really only use iSCSI for things like VM disks, 1:1 storage, etc. For home use cases unless you’re selfhosting (and probably even then) you’re likely gonna be better off with NFS.

if you were to do iSCSI I would recommend its own VLAN. NFS technically should be isolated too, but I currently run NFS over my main VLAN, so do what ya gotta do

phx,

Yeah, there are a few limitations to each. NFS, for example, doesn’t play nicely with certain options if you’re using a filesystem overlay (overlays), which can be annoying when using it for PXE environments. It does however allow you to mount in several remote machines simultaneously, which I don’t think iSCSI would play nicely with.

SMB though has user-based authentication built in, watch can be quite handy esp if you’re not into setting up a whole Kerberos stack in order to use that functionality with NFS.

SpaceCadet,
@SpaceCadet@feddit.nl avatar

I’ve found that NFS gives me the best performance and the least issues. For my use cases, single user where throughput is more important than latency, it’s indistinguishable from a local disk. It basically goes as fast as my gigabit NIC allows, which is more or less the maximum throughput of the hard disks as well.

A benefit of NFS over SMB is that you can just use Unix ownerships and permissions. I do make sure to synchronize UIDs and GIDs across my devices because I could never get idmapping to work with my NAS.

2xsaiko,
@2xsaiko@discuss.tchncs.de avatar

idmapping

idmap only works with Kerberos auth, but iirc I didn’t have to set anything up specifically for it. Though I’ve also never really had to test it since my UIDs match coincidentally, I just tested with the nfsidmap command.

merthyr1831, in The Linux kernel has been accidentally hardcoded to a maximum of 8 cores for nearly 20 years

Would’ve been nice of them to compile the kernel with a fix applied to see how much of an impact it has (though even in the post they seem to suggest that it’s not that impactful unless you run massive clusters)

Bluefruit, in Why didn't anyone remind me the dual booting exists?

imo dual booting is kinda clunky. Id rather have a vm of windows tbh. I dont like restarting my pc to swtich OS.

But hey if you like it, more power to you man.

Rooskie91,

Are there any performance losses running Windows VM to play games? Asking as I am new to this.

JPAKx4,

Only did it bc anti cheats. I would use vms otherwise.

Bluefruit,

Ah I gotcha. Another option im considering is using a separate pc for windows and using a kvm to switch between them. That may be a good option for you as well if you can swing it.

JPAKx4,

Unfortunately no, I’m trying to save money atm.

eclipse, in Help me decide my first distro for Audio.

If you are new to Linux just use Fedora. Everything will just work and you can install all your apps via the store.

SatyrSack,

Specifically, I’d recommend Fedora Jam. It has all sorts of audio stuff preconfigured/preinstalled for musicians

labs.fedoraproject.org/en/jam/

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linux@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #