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.

linux

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

Presi300 , in What vm software you use on linux
@Presi300@lemmy.world avatar

Virtmanager and qemu/kvm

reddthat , in First Ubuntu 24.04 LTS Point Release Delayed By 2 Weeks
@reddthat@reddthat.com avatar

I remember when the .04 meant the 4th month in the year…

_edge ,

Still means that

BlackEco , (edited )
@BlackEco@lemmy.blackeco.com avatar

24.04 was released in April, as usual. Here we’re talking about 24.04.1, which could be seen as a “Service Pack” as it includes every patches released since then.

ryannathans ,

.1 is supposed to fix bugs not make more smh my head

BigMikeInAustin ,

What bugs has it made?

BlackEco ,
@BlackEco@lemmy.blackeco.com avatar

I think the “upgrade bugs” mentioned in the article are bugs happening when upgrading from previous LTS versions of Ubuntu, as usually the . 1 release is the first one to be suggested for upgrade to these installs.

gerdesj , in Enabling Antenna Aggregation Might Make Big Difference If Your Laptop Has An Intel Wifi Card.

Please do a little research before trying random stuff. After checking to see if you are actually using the iwlwifi module, why not find out a bit about whether the mentioned param. is available to you and what it does:

Am I using the module. If the output from this is blank, then no:


<span style="color:#323232;">$ lsmod | grep iwlwifi
</span><span style="color:#323232;">iwlwifi               622592  1 iwlmvm
</span><span style="color:#323232;">cfg80211             1331200  3 iwlmvm,iwlwifi,mac80211
</span><span style="color:#323232;">
</span>

Also verify with lspci -k as above:


<span style="color:#323232;">$ lspci -k | grep iwlwifi -A2 -B2
</span><span style="color:#323232;">        DeviceName: WLAN
</span><span style="color:#323232;">        Subsystem: Intel Corporation Raptor Lake PCH CNVi WiFi
</span><span style="color:#323232;">        Kernel driver in use: iwlwifi
</span><span style="color:#323232;">        Kernel modules: iwlwifi
</span><span style="color:#323232;">00:15.0 Serial bus controller: Intel Corporation Alder Lake PCH Serial IO I2C Controller #0 (rev 01)
</span><span style="color:#323232;">        Subsystem: Hewlett-Packard Company Alder Lake PCH Serial IO I2C Controller
</span><span style="color:#323232;">
</span>

<span style="color:#323232;"># modinfo iwlwifi
</span><span style="color:#323232;">   ...
</span><span style="color:#323232;">parm:           swcrypto:using crypto in software (default 0 [hardware]) (int)
</span><span style="color:#323232;">parm:           11n_disable:disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX (uint)
</span><span style="color:#323232;">parm:           amsdu_size:amsdu size 0: 12K for multi Rx queue devices, 2K for AX210 devices, 4K for other devices 1:4K 2:8K 3:12K (16K buffers) 4: 2K (default 0) (int)
</span><span style="color:#323232;">parm:           fw_restart:restart firmware in case of error (default true) (bool)
</span><span style="color:#323232;">parm:           nvm_file:NVM file name (charp)
</span><span style="color:#323232;">parm:           uapsd_disable:disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3) (uint)
</span><span style="color:#323232;">parm:           enable_ini:0:disable, 1-15:FW_DBG_PRESET Values, 16:enabled without preset value defined,Debug INI TLV FW debug infrastructure (default: 16) (uint)
</span><span style="color:#323232;">parm:           bt_coex_active:enable wifi/bt co-exist (default: enable) (bool)
</span><span style="color:#323232;">parm:           led_mode:0=system default, 1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0) (int)
</span><span style="color:#323232;">parm:           power_save:enable WiFi power management (default: disable) (bool)
</span><span style="color:#323232;">parm:           power_level:default power save level (range from 1 - 5, default: 1) (int)
</span><span style="color:#323232;">parm:           disable_11ac:Disable VHT capabilities (default: false) (bool)
</span><span style="color:#323232;">parm:           remove_when_gone:Remove dev from PCIe bus if it is deemed inaccessible (default: false) (bool)
</span><span style="color:#323232;">parm:           disable_11ax:Disable HE capabilities (default: false) (bool)
</span><span style="color:#323232;">parm:           disable_11be:Disable EHT capabilities (default: false) (bool)
</span><span style="color:#323232;">
</span>

sysfs is a pseudo filesystem with lots of info in it. cat the files here:


<span style="color:#323232;">$ ls -l /sys/module/iwlwifi/parameters/
</span><span style="color:#323232;">
</span>

… to see what your current values are set at. You can install sysfstools and run this for a neat report:


<span style="color:#323232;">$ systool -vm iwlwifi
</span><span style="color:#323232;">Module = "iwlwifi"
</span><span style="color:#323232;">
</span><span style="color:#323232;">  Attributes:
</span><span style="color:#323232;">     ...
</span><span style="color:#323232;">  Parameters:
</span><span style="color:#323232;">    11n_disable         = "0"
</span><span style="color:#323232;">    amsdu_size          = "0"
</span><span style="color:#323232;">    bt_coex_active      = "Y"
</span><span style="color:#323232;">    disable_11ac        = "N"
</span><span style="color:#323232;">    disable_11ax        = "N"
</span><span style="color:#323232;">    disable_11be        = "N"
</span><span style="color:#323232;">    enable_ini          = "16"
</span><span style="color:#323232;">    fw_restart          = "Y"
</span><span style="color:#323232;">    led_mode            = "0"
</span><span style="color:#323232;">    nvm_file            = "(null)"
</span><span style="color:#323232;">    power_level         = "0"
</span><span style="color:#323232;">    power_save          = "N"
</span><span style="color:#323232;">    remove_when_gone    = "N"
</span><span style="color:#323232;">    swcrypto            = "0"
</span><span style="color:#323232;">    uapsd_disable       = "3"
</span><span style="color:#323232;">
</span>
SpacePirate , in Linux Foundation Welcomes the Open Model Initiative to Promote Openly Licensed AI Models

That’s a penis dot gif

smeg ,

I think you might need to see a doctor

ssm ,
@ssm@lemmy.sdf.org avatar

clearly, it’s obviously pronounced jif

Blaster_M ,
GolfNovemberUniform ,
@GolfNovemberUniform@lemmy.ml avatar

No mister/miss. Porn creation is one of the concerns about open models because they can’t even prohibit it in the license.

smeg ,

Did you reply to the wrong comment?

GolfNovemberUniform ,
@GolfNovemberUniform@lemmy.ml avatar

No. I think the comment I replied to was supposed to mean that the person had issues with seeing sexual stuff everywhere. I disagreed because in this case porn creation is a legitimate concern.

smeg ,

That’s not discussed in the article though, I think they were just seeing a (not really that) phallic logo

GolfNovemberUniform ,
@GolfNovemberUniform@lemmy.ml avatar

Oh ok I really didn’t see that.

that_leaflet , in Linux Foundation Welcomes the Open Model Initiative to Promote Openly Licensed AI Models
@that_leaflet@lemmy.world avatar

A reminder that the Linux Foundation does what its members want. The members may not care about the Linux desktop, but more server oriented things and running LLMs on those servers.

wesker , in Lemmy predicts: Chromebooks will become the new Thinkpads
@wesker@lemmy.sdf.org avatar

Hot take. 🍿

possiblylinux127 OP ,

Actually these devices are pretty cool as the usually have a TDP of 5-7 Watts

wesker ,
@wesker@lemmy.sdf.org avatar

I don’t disagree, I was just commenting from the angle of how enthusiastic many are about ThinkPads.

I don’t know too much about Chromebooks myself, so I look forward to the banter in order to learn more.

KickMeElmo , in Lemmy predicts: Chromebooks will become the new Thinkpads

ARM is the biggest reason this is unlikely to happen imo. Software compatibility is key.

GravitySpoiled ,

How does arm limit that?

arm is up and coming

KickMeElmo ,

For a laptop style system, the vast majority of users expect x86_64 software to just work. There are ARM versions for some things, and some can be recompiled by a knowledgeable user, but most software simply won’t run.

GravitySpoiled ,

So?

Arm usage is increasing, not decreasing

cizra ,
@cizra@lemm.ee avatar

We’re at [email protected], hon. The average user uses a package manager. The majority of software is open-source and compiles for ARM just fine. Games excepted, but they won’t run on the low specs anyway.

0x0 ,

most software simply won’t run.

…for the time being…

possiblylinux127 OP ,

Just compile you software for arm. The Debian repos have a huge selection

pastermil , in Lemmy predicts: Chromebooks will become the new Thinkpads

I don’t not necessarily agree, but I like your prediction. Let’s see if it turns out correct. Time will tell.

n.b.: am a Thinkpad enthusiast myself

possiblylinux127 OP ,

I bet we will at least see a decent community

pastermil ,

I would think we already got a Chromebook community around here.

possiblylinux127 , in LibreSpeed - Speed Test

They recently got another server in Denver which makes me happy

OneCardboardBox , in Lemmy predicts: Chromebooks will become the new Thinkpads

The problem with chromebooks is that the base specs are pretty shit. A lot of them have 4 GiB of RAM and maybe 16GiB of disk if you’re lucky.

They were designed to be thin clients to connect students to the internet, and little else. Maybe they could be hacked into something useful, but I don’t think it’ll ever make a good PC. They were always destined for the landfill.

Meanwhile, the best thinkpads were quality machines back when they came out. IMO, that’s why they’re still so versatile today. Free software can’t fix bad fundamentals.

pnutzh4x0r , in Lemmy predicts: Chromebooks will become the new Thinkpads
@pnutzh4x0r@lemmy.ndlug.org avatar

I’m not so sure… for the following reasons:

  1. Despite using a version of the Linux kernel in ChromeOS, Chromebooks don’t always have the best hardware (ie. driver) support from the mainline kernel used by most distributions. That’s why there are niche distributions like GalliumOS which provide tweaks to support the touchpad and audio devices in many Chromebooks. It’s similar to how Android is Linux, but it’s not standard Linux as we are familiar with (so the hardware support is different).
  2. Many Chromebooks have really poor specs: low-wattage CPUs, small amounts of storage, low amounts of RAM. While they may be newer, they are actually probably less performant than older laptops. This has changed in recent years with the new Chromebook plus program (or whatever it is called) which mandates a reasonable set of baseline features, but that is talking about current Chromebooks and not the ones from the COVID era.
  3. Related to the previous point, many Chromebooks are not serviceable or upgradeable while Thinkpads and some recent laptops are. You are unlikely to open up a Chromebook and be able to replace say the RAM or SSD, which would be a show stopper for a lot of people that like Thinkpads.

So… unfortunately, I think this take is a bit of a miss and I dont’ really see it happening. I would be happy to be proven wrong though since my kids have two Chromebooks from the COVID era :}

possiblylinux127 OP ,

The thing is Chromebooks are flooding the market. You can get a devices for like 40 USD

Xylight , in LibreSpeed - Speed Test
@Xylight@lemm.ee avatar

Wow, the new FCC law made comcast raise my generous 10Mbps upload to 25Mbps! It’s $80 for this shit.

Gingernate ,

Good Lord you should move haha

SnotFlickerman , (edited ) in Lemmy predicts: Chromebooks will become the new Thinkpads
@SnotFlickerman@lemmy.blahaj.zone avatar

docs.mrchromebox.tech

A lot of Chromebooks can have Linux natively put on them.

I see a lot of pooh-poohing of the idea in this thread, but I think there’s people who are willing to do so.

I just took an old Lenovo ThinkCentre Chromebox 10H5 and modified the UEFI firmware with the walkthru from MrChromebox to put Xubuntu on it. It’s actually pretty snappy despite its limited hardware.

Also, I upgraded the 16gb M.2 SSD into a far more sufficient 256gb size.

The shortage of RAM is rough, but it can still be a workhorse in a lot of ways. I plan on replacing Xubuntu with a server version to get a little boost out of running it headless to drop the RAM going to rendering a GUI.

possiblylinux127 OP ,

I would with Debian plus minimal gnome (install just the gnome base package without recommends)

Another idea is to connect it to a much faster device over RDP or moonlight

thingsiplay , in Lemmy predicts: Chromebooks will become the new Thinkpads

zipso.net/chromebook-specs-comparison-table/ I didn’t know there were so many Chromebooks. I’m no longer in school (for long time) and don’t know if German schools get any netbooks or Chromebooks to work with.

lord_ryvan , in Lemmy predicts: Chromebooks will become the new Thinkpads

They are built like tanks? The Chromebook laptops I’ve come across were flimsy as aluminiumfoil. The plastic hinges were so weak you had to try to not tear the screen from the keyboard!

possiblylinux127 OP ,

That has not been my experience. If that was the case schools wouldn’t be buying them.

lord_ryvan ,

At least here I’m pretty sure schools just buy them because they come laughably cheap. Actually, my middle school’s laptops weren’t very durable either but just cheap.

Actually, now that I think of it, Chromebooks can be manufactured by anyone just like Windows laptopa, a Chromebook is just any laptop with ChromeOS pre-installed. There are probably well-built ones (maybe by Lenovo, even?) and there are probably flimsy-made ones, depending on your manufacturer?

johnyma22 ,

Google ran a huge push to get these into schools too… There was a LOT of pressure on Schools to adopt from various partners (or at least that happened in the UK)…

Google is aware of the Microsoft gains from getting people used to their products at a young age…

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines