gerdesj
Evolution. It works with MS Exchange.
I have an elderly and rather unloved Gmail account for testing and spam reception only and a couple of Yubi keys so I’ll see what I can do with them. I probably ought to use the Gmail account more but I’m concerned that Google will kill it off 8) I got it when the G stood for gigabyte because everyone else set quotas in the 10s or low 100s of megabytes. “Do no evil” Google were as cool as fuck but that was a long time ago. Sad really.
such not being able to mix with any type of license
GPL licenced software merely has to comply with the GPL - make your changes available to all etc. The whole point of the GPL is to ensure that you can take but enforces that you give back too. It’s the Stone Soup thing.
MIT is loved by say Apple because they can take your work, do their thing and not have to contribute back. To be fair, Appley stuff is now quite a long way away from BSD!
As I’m feeling charitable, I should also point out that CUPS is/was largely Apple driven, as is Avahi/Bonjour. I can deploy a Linux box and expect it to find and setup available printers without having to do anything.
Use what works for you.
That looks like a cherry picked starting point. Read the whole thread for the full context.
fwiw, I don’t think anyone comes out looking particularly good. However, attempting to describe Frenck as infamous here and now is a bit rich. That minor disagreement all happened during the pandemic and I’m sure we have all passed a lot of water since then.
I doubt it. They make a hell of a noise and print at a rate of characters per second not pages per second. The ribbons suffered from similar issues as cassette tapes (the other ribbons that we had to deal with). The ribbon would dry out if not used for a few days and you’d waste paper and a lot of time.
DM printers were ideal in the guise of “line printers” - the big old IBM jobbies that munched through A3 landscape fan fold at ridiculous speeds. Home printers like the Epson FX80 or RX80 were at least affordable. I still remember the manual of our RX80 congratulating us on buying it and exhorting me to hug the printer on unpacking it. I suspect the Japanese to English translation might not have been the best.
We had to get a Centronics interface board stuffed into our C64 and get it working (sacrifice a chicken on a waxing gibbous moon night, etc)
It worked better on my 80286 box, some years later. I had to set it up in each application - Harvard Graphics, Word Perfect, Super Calc.
In around 1991 I was able to buy a 80486 based beastie, thanks to gift from granddad. In around 1993 I was given a HP LJ 4P so I could print out proofs for a Plymouth (Devon) tourist tat thing.
Nowadays I have a fairly elderly HPE MFP five toner humming away at home. Its on a VLAN that doesn’t get to see the internet. It just works. I won’t be “upgrading” it for the foreseeable future.
I like to use my enterprise number and a UUID (all in lower case, for legibility). Here’s an example:
.1.3.6.1.4.1.33230.0d456e46-67e6-11ef-9c92-7b175b3ab1f1
Now you might say that the UUID is already globally unique or at least pretty unlikely to turn up anywhere else, so why bother prefixing it with more stuff? To that I say: “I need to be absolutely or at least reasonably sure … OK nearly sure”.
Anyway, you maintain a database of these things and then attach documentation and meaning to them. An editor could abstract and hide that away.
I started this post as a joke. Not sure anymore. Why get your knickers in a twist with naming conventions for variables and constants. Programming is already a whopping layer of abstraction from what the logic gates are up to, another one wont hurt!
La derecha oprime y la izquierda libera
I just knew that would be Spanish, without being able to speak more than a few words. It works far better than our effort and is both a sardonic and satirical political comment.
Well played Spanish if that really is the equivalent in common usage. Our effort sounds like it was invented by a young child whilst responding to a BBC quiz.
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:
$ lsmod | grep iwlwifi
iwlwifi 622592 1 iwlmvm
cfg80211 1331200 3 iwlmvm,iwlwifi,mac80211
Also verify with lspci -k as above:
$ lspci -k | grep iwlwifi -A2 -B2
DeviceName: WLAN
Subsystem: Intel Corporation Raptor Lake PCH CNVi WiFi
Kernel driver in use: iwlwifi
Kernel modules: iwlwifi
00:15.0 Serial bus controller: Intel Corporation Alder Lake PCH Serial IO I2C Controller #0 (rev 01)
Subsystem: Hewlett-Packard Company Alder Lake PCH Serial IO I2C Controller
# modinfo iwlwifi
...
parm: swcrypto:using crypto in software (default 0 [hardware]) (int)
parm: 11n_disable:disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX (uint)
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)
parm: fw_restart:restart firmware in case of error (default true) (bool)
parm: nvm_file:NVM file name (charp)
parm: uapsd_disable:disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3) (uint)
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)
parm: bt_coex_active:enable wifi/bt co-exist (default: enable) (bool)
parm: led_mode:0=system default, 1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0) (int)
parm: power_save:enable WiFi power management (default: disable) (bool)
parm: power_level:default power save level (range from 1 - 5, default: 1) (int)
parm: disable_11ac:Disable VHT capabilities (default: false) (bool)
parm: remove_when_gone:Remove dev from PCIe bus if it is deemed inaccessible (default: false) (bool)
parm: disable_11ax:Disable HE capabilities (default: false) (bool)
parm: disable_11be:Disable EHT capabilities (default: false) (bool)
sysfs is a pseudo filesystem with lots of info in it. cat the files here:
$ ls -l /sys/module/iwlwifi/parameters/
… to see what your current values are set at. You can install sysfstools and run this for a neat report:
$ systool -vm iwlwifi
Module = "iwlwifi"
Attributes:
...
Parameters:
11n_disable = "0"
amsdu_size = "0"
bt_coex_active = "Y"
disable_11ac = "N"
disable_11ax = "N"
disable_11be = "N"
enable_ini = "16"
fw_restart = "Y"
led_mode = "0"
nvm_file = "(null)"
power_level = "0"
power_save = "N"
remove_when_gone = "N"
swcrypto = "0"
uapsd_disable = "3"
Mint has managed to become a meme and that’s no bad thing, per se, but it can look a bit odd to the cognoscenti. Anyone doing research by search engine looking to escape MS towards Linux will find Mint as the outstanding suggestion.
That’s just the way it is at the moment: Mint is the gateway to Linux. Embrace that fact and you are on the way to enlightenment.
I am the MD of a small IT company in the UK. I’ve run Gentoo and then Arch on my daily drivers for around 25 years. The rest of my company insist on Windows or Apples. Obviously, I was never going to entice anyone over with Gentoo or even Arch, although my wife rocks Arch on her laptop but I manage that and she doesn’t care what I call Facebook and email.
We are now at an inflection point - MS are shuffling everyone over to Azure with increasing desperation: Outlook/Exchange and MS Office will be severely off prem. by around 2026. So if you are going to move towards the light, now is a good time to get your arse in gear.
I now have Kubuntu on my work desktop and laptop. You get secure boot out of the box, along with full disc encryption and you can also run a full endpoint suite (ESET for us). That scores a series of ticks on the Cyber Essentials Plus accreditation and that is required in my world.
AD etc: CID - https://cid-doc.github.io/ pretty nifty. I’ve defined the equivalent of Windows drive letters as mounts under home, eg: ~/H: - that works really well.
Email - Gnome Evolution with EWS. Just works. Used it for years.
Office - Libre Office. I used to teach people how to use spreadsheets, word processors, databases and so on. LO is fine. Anyone attempting to tell me that LO can’t deal with … something … often gets … educated. All software has bugs - fine, we can deal with that. I recently showed someone how decimal alignment works. I also had to explain that it is standard and not a feature of LO.
For my company the year of Linux on the desktop has to be 2025 (with options on 2026). I have two employees who insist on it now and I have to cobble together something that will do the trick. I get one attempt at it and I’ve been doing application integration and systems and all that stuff for quite a while.
Linux has so much to give as an ecosystem but we do need to tick some boxes to go properly mainstream on the desktop and that needs to happen sooner rather than later.