[–] 2 points 2 years ago

The original interview is no longer available, but here are references.

Microsoft CEO and incontinent over-stater of facts Steve Ballmer said that "Linux is a cancer that attaches itself in an intellectual property sense to everything it touches," during a commercial spot masquerading as a interview with the Chicago Sun-Times on June 1, 2001.

Ballmer was trying to articulate his concern, whether real or imagined, that limited recourse to the GNU GPL requires that all software be made open source.

"The way the license is written, if you use any open-source software, you have to make the rest of your software open source," Ballmer explained to an excessively credulous, un-named Sun-Times reporter who, predictably, neglected to question this bold assertion.

https://www.theregister.com/2013/08/24/top_10_steve_ballmer_quotes_from_microsoft_history/

"Ballmer: I may have called Linux a cancer but now I love it" https://www.zdnet.com/article/ballmer-i-may-have-called-linux-a-cancer-but-now-i-love-it/

"Former Microsoft CEO Ballmer does about-face on Linux technology" https://www.reuters.com/article/us-microsoft-ballmer-linux-idUSKCN0WC2RA/

  • source
  • parent
  • context
  • [–] 1 point 2 years ago

    My guesstimate is you have around 1,400 4K DVD rips. Do you need all of them?

    You probably should look at RAID 6 with a cold spare (i.e. a drive sitting alongside the server.

    ZFS allows you to create spare disks. ZFS spare disks are hot spares which are swapped in for faulty disks and swapped out when you replace the faulty disk.

    I suggest that you calculate the cost to build this server, you should allow for NAS specific drives rather than the cheapest desktop drives.

    You will need PCI to SATA cards to connect you drives.

    I suggest that you look at the NAS builds on PC Part Picker.

    Have a look at these pages

    https://www.wundertech.net/diy-nas-build-guide/ https://nascompares.com/guide/build-your-own-nas-in-2024-should-you-bother/ https://www.storagereview.com/review/how-to-build-a-diy-nas-with-truenas-core

    Finally check how much power and heat the server will produce. A server with that many drives will loud.

  • source
  • [–] 5 points 2 years ago

    I would look for a printer that supports Web Services for Devices (WSD) or Airscan (eSCL). These protocol allows you setup a scanner without installing a driver.

    Here are a couple of starting points for sane-airscan. I discovered it long after I had installed the drivers for my all-in-one.

    https://wiki.archlinux.org/title/SANE#Sharing_your_scanner_over_a_network

    https://manpages.ubuntu.com/manpages/jammy/man5/sane-airscan.5.html

    https://github.com/alexpevzner/sane-airscan

  • source
  • [–] 2 points 2 years ago

    Have a look at the size of the Finnish waste repository.

    "They'll hold a total of 5,500 tonnes of waste," says Joutsen. "So Onkalo will take all the high-level nuclear waste produced by Finland's five nuclear power plants in their entire life cycles."

    https://www.bbc.com/future/article/20230613-onkalo-has-finland-found-the-answer-to-spent-nuclear-fuel-waste-by-burying-it

    The Finnish repository is designed with a life of 100,000 years. Homo sapiens (i.e us) have existed for about 300,000 years.

    Article about the problems warnings that will comprehensible in 10,000 years https://www.bbc.com/future/article/20200731-how-to-build-a-nuclear-warning-for-10000-years-time

  • source
  • parent
  • context
  • [–] 1 point 2 years ago (1 child)

    Chrome reports the memory a tab uses if you hover over the tab. Look at the task manager within your browser. Try clicking on the burger bar, then "More tools" and "Task Manager" within the browser.

  • source
  • parent
  • context
  • [–] 2 points 2 years ago

    As @damium@programming.dev says you may be able to do this with find command. This command lists all PDF files under ~/tmp that were created more than 7 days ago and does a directory listing. You could use this as a basis to move create an archive of individual files.

    find ~/tmp -ctime +7 -iname "*pdf" -exec ls -rlht {} \;

    The find command also has a -delete flag.

    I have in the past used this combination to implement file management. I don't have access to the script any more. I don't remember why we used a shell script rather than logrotate as per @oddityoverseer@lemmy.world

  • source
  • parent
  • context
  • [–] 4 points 2 years ago

    YMMV, but here are some reasons

    • Some people prefer to use Linux.
    • Some software runs better on Linux than Windows or Mac (e.g. Docker runs natively on Linux but on Windows and Mac the Docker desktop creates a Linux VM to run Docker on).
    • You have a portable, local development environment without Virtual Machines.

    I have a laptop that belongs to my employer and a personal Linux laptop. It is quicker to use the Linux machine than to work out if I can now install WSL 2 or find a Linux instance to do some Linux work.

  • source
  • parent
  • context
  • view more: next ›