There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

lemmy.world

Archer , to mildlyinfuriating in You can't uninstall this software without being forced to participate in their survey

Time to introduce them to 'lil Bobby Tables

sweBers ,

Delete from response where id = *

Bonus points if you can enumerate all tables.

MigratingtoLemmy , to linux in Slackware turns 30 today

It is so nostalgic, although I struggle to see a good reason to use this as a daily driver other than if you need stability that might even exceed that of Debian Stable.

I need some tips on how the old-timers manage installation of packages without dependency management.

This is probably one the most Unix-like Linux-based operating systems ever. Gentoo probably comes next with Void being third in said list. If one didn’t want to run BSD but still wanted similarities with old Unix systems, this is probably it.

Thanks to the Slackware team for such a fantastic distribution.

limelight79 ,

I started with Linux using Slackware in the late 90s. I had to give up on it - first on the desktop around 2007, then on my server maybe 5 years ago. Dependency hell. For the server, the final straw was when I got some Ubiquiti equipment and needed to run the Unifi controller - I just did not want to deal with figuring out the dependencies and then worrying about them every time I updated.

The desktop and laptop run Kubuntu, and the server runs Debian. It’s so nice being able to update things without having to worry. And I haven’t noticed any effective difference in stability or anything like that. Just that much less time I spend maintaining things.

Sorry, Patrick!

MigratingtoLemmy ,

I wonder if the UnRaid team has figured out an easier method to take care of dependencies, considering they run a webserver with considerable assets on Slackware.

Slackware will always be a consideration for me since I do not like systemd (philosophical reasoning), but yes, managing dependencies manually is a pain and said pain grows with almost every package that one installs and then needs to upgrade. I wonder what was the motivation for the Slackware team to not include automatic dependency management to their distribution, which would likely have been my choice for lean and stable distribution over Debian if it had that feature.

Junkdata ,

If i remember right, it takes a lot of resources to maintain a package manager, and the focus on slackware is to be on the improving the distro overwall hence its superb stability. Community members have created sbopkg + sbotools to create a 3rd party package manager if you want to go that route on slackware. Sbotools would be the gui to take care of depenencies

MigratingtoLemmy ,

Thanks for mentioning them, I didn’t know about this. Glad to know that the main focus is on the essentials

limelight79 ,

From a server point of view, where it’s focused on a limited set of functions, with a limited group of packages, it’s not too bad. I can see it working fine for that purpose.

But a general purpose server that does several things in my house… It gets messy.

afb ,

We don’t install packages without dependancy management, for the most part. We use one of the half-dozen or so pkgtools wrappers made by community members that interface with SBo and handles the dependencies for us (examples include slapt-get, slpkg, and sbotools). Also, Flatpak/Distrobox/Nix etc are all available and easy enough to install if slackbuilds.org doesn’t have what I need (rare tbh).

ThaijsClan , to mildlyinfuriating in You can't uninstall this software without being forced to participate in their survey

That’s when you just list all the swear words you can think of

Jimmycrackcrack ,

It’s Mother’s Day

reddig33 , to mildlyinteresting in The underside of the center console in this 2022 Ram truck has some handy math formulas and some tool conversions

That’s a nice touch from someone on the Ram design team.

ech , to mildlyinfuriating in You can't uninstall this software without being forced to participate in their survey

no no no no no no no no no no no no no no no

Conditions met

ari_verse , to linux in Slackware turns 30 today

This brings back so many memories! My first distro some 25 years ago now! Something to tell my kids about. I remember it took me a couple of days to get audio to work on my first install! And I still loved it. So much water has passed under the bridge. Now 100% of the production envirnoment at work is Linux-based and so are the devices at the other end of the wire/airlink. And so are our phones, home servers and on and on. Linux skills have had the highest return

MooseBoys , to linux in Slackware turns 30 today

Way back in 1993

<img src=“private_ryan_old.gif” />

noja , to aww in Heckin' Sophistimicated

This dog is as fully millennial as any dog ever was.

thepianistfroggollum , to mildlyinfuriating in You can't uninstall this software without being forced to participate in their survey

Use Revo uninstaller to rip every shred of it off your system.

sourcepie OP ,

I did so when I was uninstalling it. Great piece of software

TheSaneWriter , to lemmyshitpost in Great. I'm a mouse.
@TheSaneWriter@lemmy.thesanewriter.com avatar

This is not an ethical mousetrap.

BlueEther , to linux in Slackware turns 30 today
@BlueEther@no.lastname.nz avatar

I’m not that old of a linux user, I think Slack may have been the second distro that I tried in probably 2000 after starting on Mandrake

Borgzilla ,
@Borgzilla@lemmy.ca avatar

Same here. Mandrake 8.2 was a buggy mess, but I have fond memories of it.

toasteranimation , (edited )
@toasteranimation@lemmy.world avatar

error loading comment

CheesyGordita , to mildlyinteresting in The underside of the center console in this 2022 Ram truck has some handy math formulas and some tool conversions

Not seeing the chart for alcoholic drinks to body weight to insure minimum level of intoxication for truck operation.

Caboose12000 , to linux in Slackware turns 30 today

how does it hold up today?

ashok36 ,

I can’t speak for Slackware itself but Unraid is based on Slackware and has been very successful. I’ve been running it for several years now with few hiccups.

toasteranimation ,
@toasteranimation@lemmy.world avatar

Give the live os a spin-up slackware.nl/slackware-live/

gens , (edited )

On slackware-current. Latest kde, mesa, fairly new lts kernel. All vanilla software (with security patches). Xfce, and more. No official gnome. Everything works, simple system. No official package dependency resolution, install a lot of packages recommended (they in groups). Good for me.

Edit: oh, and very stable

Junkdata ,

I have an intel arc 380 gpu, i know slackware current has preconfigured kernel. I havent tried building my own kernel but would it be easier using preconfigured or just build it?

I know intel arc requires 6.2 kernel as the driver and i believe mesa 22(or newer) .

gens ,

Current has mesa 23.1.3 and kernel 6.1.

Been a while since i built a kernel. Way i did it was (as root):

  • download from kernel.org into /usr/src/ (wget https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.4.3.tar.xz for example)
  • cd /usr/src/ and tar xvf the-downloaded-tarball
  • rm linux - it’s a link to kernel source, so that programs can compile against the kernel (rarely necessary)
  • ln -s linux-downloaded-one linux - makes new link to downloaded kernel
  • cp linux-installed-kernel/.config linux/ - copy the old config to the new
  • cd linux then make oldconfig - a lot of questions about all the new options, that should include the new arc drivers if they are not included into old ones
  • make menuconfig or make nconfig - are TUI-s to configure the kernel. nconfig has a search (F8)
  • make bzImage modules - to compile the kernel and modules (basically shared libs)
  • make modules_install - copies modules to /lib/modules/version (important as most drivers are modules)
  • cp arch/x86_64/boot/bzImage /boot/vmlinuz-version - copy the kernel core to /boot
  • edit /etc/lilo.conf - if you use grub then idk
  • go to bottom, copy the whole block including image = … , keep the original to have a bootable kernel
  • change /boot/vmlinuz to whatever i called mine
  • run lilo
  • reboot
  • reorder lilo boot order if i forgot to before, and lilo then reboot again to confirm

Not the official slackware way, but… actually slack is the slackware way. Have borked my system plenty of times and had to dig up the install cd/usb to fix it.

There is documentation on slackbook slackbook.org/…/system-configuration-kernel.html but it’s a bit outdated. You can always ask questions on the official forum www.linuxquestions.org/questions/slackware-14/

For all other questions see this: www.youtube.com/watch?v=Qt9MP70ODNw

PipedLinkBot ,

Here is an alternative Piped link(s): piped.video/watch?v=Qt9MP70ODNw

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I’m open-source, check me out at GitHub.

Junkdata ,

Many thanks for this, ill be going through this thouroughly to see about getting this running. This is huge help thanks again.

blackfire , to mildlyinfuriating in You can't uninstall this software without being forced to participate in their survey

You selected ‘other’ just select one of the predefined and you are straight out. Do you care if its the right one or not???

sourcepie OP ,

I do care because I don’t want to fall victim to their dark patterns and be coerced into providing them with free market research

Stovetop ,

If you lie, then the data is worthless anyways. Or even harmful to their objective.

yoz , to mildlyinteresting in I ordered a box of multiple microwave soups from Amazon, and about half of them are missing the label

Contact amazon and say that when it arrived it was missing labels and content inside are also missed. They will refund or send new package for you. Also, dont feel bad because its trillion dollar company and they became a trillion dollar company by ripping off businesses and individuals

dingus OP ,

deleted_by_author

  • Loading...
  • rsn ,
    @rsn@lemmy.world avatar

    Go through customer support (chat).

    islandofcaucasus ,

    It’s likely not Amazon itself that is selling these soups, Amazon usually is a market for 3rd party sellers. The actual seller would have to eat the cost of the refund or replacement, so amazon isn’t losing any money.

    That said, the company who did sell these needs to have better standards

    3ntranced ,

    Real talk, every Amazon package I’ve ever asked a refund before has been fulfilled no questions asked. When I was a poor college student trying to grow weed in a closet I bought a LED grow light, arrived, said it didnt. Repeated until I had 6 lights and figured they will eventually catch on.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines