I need this feature despite being told, high-handedly, by the Raspberry
Pi lot that I don't and that they don't support it. Most search results
are out of date as usual.
Manjaro (KDE) does it but it doesn't work in other ways. Cinnamon does
it but seems a bit OTT.
Another Dave
Install MATE and possibly Ubuntu instead of Debian
Another Dave <dmarsden@nospam.com> wrote:Yes yes, I know all that. I just wanted to use a desk top optimised for
I need this feature despite being told, high-handedly, by the Raspberry
Pi lot that I don't and that they don't support it. Most search results
are out of date as usual.
Manjaro (KDE) does it but it doesn't work in other ways. Cinnamon does
it but seems a bit OTT.
Raspberry Pi OS is an OS distribution.
That distribution provides a desktop environment (DE).
By default RPiOS uses a DE called PIXEL based on customised LXDE.
If the default DE doesn't provide what you want, install another one.
If KDE is the thing you want, install that. Or find another DE.
Don't throw out the OS just because you want to change the window
dressing.
https://raspberrytips.com/upgrade-raspbian-lite-to-desktop/
which starts with RPiOS Lite, but you can also do it from full RPiOS by skipping to step 4.
It is also possible to skip using a DE and do it 'by hand' by installing
a window manager directly (like i3 or FVWM), which gets you basic window manipulation without also giving you a dock, system tray, file manager,
etc. I know FVWM supports multiple workspaces.
Theo
On 28/10/2023 10:14 am, Theo wrote:
Another Dave <dmarsden@nospam.com> wrote:Yes yes, I know all that. I just wanted to use a desk top optimised for
I need this feature despite being told, high-handedly, by the Raspberry
Pi lot that I don't and that they don't support it. Most search results
are out of date as usual.
Manjaro (KDE) does it but it doesn't work in other ways. Cinnamon does
it but seems a bit OTT.
Raspberry Pi OS is an OS distribution.
That distribution provides a desktop environment (DE).
By default RPiOS uses a DE called PIXEL based on customised LXDE.
If the default DE doesn't provide what you want, install another one.
If KDE is the thing you want, install that. Or find another DE.
Don't throw out the OS just because you want to change the window
dressing.
https://raspberrytips.com/upgrade-raspbian-lite-to-desktop/
which starts with RPiOS Lite, but you can also do it from full RPiOS by
skipping to step 4.
It is also possible to skip using a DE and do it 'by hand' by installing
a window manager directly (like i3 or FVWM), which gets you basic window
manipulation without also giving you a dock, system tray, file manager,
etc. I know FVWM supports multiple workspaces.
Theo
the pi. ALL desktops have the ability to use multiple workspaces except Pixel. It was removed from Pixel specifically because somebody at
Raspberry Pi couldn't be bothered to fix a bug in it.
I've installed Raspian/Bookworm on FOUR boards in the
past couple weeks. Yep, it does all the usual. ONE
very annoying aspect with Bookworm though is the
pointless demise of dhcpcd.conf and WPA_Supplicant.conf
in favor of "network manager'. If you use the 'lite'
version, no GUI, this becomes a PROBLEM if you want
to do static IPs. For the GUI versions just install
the Gnome network manager GUI thingie and use that
to set everything.
I didn't know there was a problem until I read this but you're right
there is. I have managed a static IP on an ethernet connection by
creating a file
/etc/network/interfaces.d/eth0 which contains:
Has anyone discovered how to make a Wi-Fi dongle work with bookworm
lite? If so, could you enlighten me please.
In article <NbednWsKQtdaXNj4nZ2dnZfqnPqdnZ2d@earthlink.com>,
56d.1152 <56d.1152@ztq9.net> wrote:
I've installed Raspian/Bookworm on FOUR boards in the
past couple weeks. Yep, it does all the usual. ONE
very annoying aspect with Bookworm though is the
pointless demise of dhcpcd.conf and WPA_Supplicant.conf
in favor of "network manager'. If you use the 'lite'
version, no GUI, this becomes a PROBLEM if you want
to do static IPs. For the GUI versions just install
the Gnome network manager GUI thingie and use that
to set everything.
I didn't know there was a problem until I read this but you're right
there is. I have managed a static IP on an ethernet connection by
creating a file
/etc/network/interfaces.d/eth0 which contains:
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.3
network 192.168.1.0
netmask 255.255.255.0
gateway 192.168.1.1
I *presume* it would be similar for a Wi-Fi connection but that the
file name would not be eth0 but whatever the Wi-fi interface is
called. I don't know what that is at the moment.
So I tried to get a Wi-Fi dongle to work using the usual the old
method, copying a file wpa_supplicant.conf to the boot partition of
the sd card before it is transferred to the pi. This worked great
with bullseye but fails with bookworm.
I've done some googling and found something I thought was the answer,
I had to create a file at /etc/wpa_supplicant.conf and then run it
with: wpa_supplicant -iwlan0 -c/etc/wpa_supplicant.conf -d
With only two steps I half expected it to work but of course it gave
me miles of text and failed to work.
Has anyone discovered how to make a Wi-Fi dongle work with bookworm
lite? If so, could you enlighten me please.
On 2023-11-04, Bob Latham <bob@sick-of-spam.invalid> wrote:
I didn't know there was a problem until I read this but you're right
there is. I have managed a static IP on an ethernet connection by
creating a file
/etc/network/interfaces.d/eth0 which contains:
That should[1] still work (maybe after installing the ifupdown package). Install "resolvconf" if you want to specify DNS in /etc/network/interfaces, too.
Has anyone discovered how to make a Wi-Fi dongle work with bookworm
lite? If so, could you enlighten me please.
Have a look at
https://wiki.debian.org/WiFi/HowToUse
under "manual", "Using ifupdown and wpasupplicant" - you can specify everything you usually need in /etc/network/interfaces, no need to manually create separate config files.
Nothing beats a static IP. DHCP can, and eventually WILL,
move stuff around - and then you get weird annoying failures.
On 2023-11-04, Bob Latham <bob@sick-of-spam.invalid> wrote:
I didn't know there was a problem until I read this but you're right
there is. I have managed a static IP on an ethernet connection by
creating a file
/etc/network/interfaces.d/eth0 which contains:
That should[1] still work (maybe after installing the ifupdown
package). Install "resolvconf" if you want to specify DNS in /etc/network/interfaces, too.
Has anyone discovered how to make a Wi-Fi dongle work with
bookworm lite? If so, could you enlighten me please.
Have a look at
https://wiki.debian.org/WiFi/HowToUse
under "manual", "Using ifupdown and wpasupplicant" - you can
specify everything you usually need in /etc/network/interfaces, no
need to manually create separate config files.
I'll provide a skeleton for a /system-connections template
on Monday ... there ARE a very few example on the web, but
VERY few and hard to find. They look nothing like anything
from before.
It is possible to run a dhcp server that hands out a fixed IP address
for a specific MAC.
On 11/4/23 3:02 PM, Michael Schwingen wrote:
On 2023-11-04, Bob Latham <bob@sick-of-spam.invalid> wrote:
I didn't know there was a problem until I read this but you're right
there is. I have managed a static IP on an ethernet connection by
creating a file
/etc/network/interfaces.d/eth0 which contains:
That should[1] still work (maybe after installing the ifupdown package). Install "resolvconf" if you want to specify DNS in /etc/network/interfaces, too.
And how much other stuff ???
/etc/networking worked JUST FINE and is hugely documented
There was NO reason to change.
So, basically, you now have to BREAK Deb to get it to work
like it used to. Cannonical led the way toward STUPID changes
and now Deb seems to have even exceeded THEM.
I'm gonna look into Arch ......
In article <OBGdncacO82Jvtr4nZ2dnZfqn_udnZ2d@earthlink.com>,
56d.1152 <56d.1152@ztq9.net> wrote:
I'll provide a skeleton for a /system-connections template
on Monday ... there ARE a very few example on the web, but
VERY few and hard to find. They look nothing like anything
from before.
If I understand you correctly, I'm looking forward to that.
Thanks.
Bob.
Using a separate Linux system to access the Pi's SDcard I added the
following files
/etc/network/interfaces.d/wlan0
/etc/wpa_supplicant/wpa_supplicant.conf
In my case the content is
/etc/network/interfaces.d/wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
/etc/wpa_supplicant/wpa_supplicant.conf ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
network={
ssid="MyHomeWifiName"
psk="XXXXXXXXXXXXXXXXXXXXXXXXXX"
}
My router is setup to allocate a set of fixed IP addrs based on MAC
address for some devices that use DHCP. The rest have fixed IP
addrs anyway.
In article <ui8b6h$1k37$1@dont-email.me>,
mm0fmf <none@invalid.com> wrote:
Using a separate Linux system to access the Pi's SDcard I added the
following files
/etc/network/interfaces.d/wlan0
/etc/wpa_supplicant/wpa_supplicant.conf
In my case the content is
/etc/network/interfaces.d/wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
/etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
network={
ssid="MyHomeWifiName"
psk="XXXXXXXXXXXXXXXXXXXXXXXXXX"
}
Fantastic !! It works !! Well done - thank you.
On a raspberry pi 2 with no built in wi-fi I tried a couple of
different dongles but they both worked
My router is setup to allocate a set of fixed IP addrs based on MAC
address for some devices that use DHCP. The rest have fixed IP
addrs anyway.
Yes, same here.
Thanks again.
Bob.
56d.1152 <56d.1152@ztq9.net> wrote:
On 11/4/23 3:02 PM, Michael Schwingen wrote:
On 2023-11-04, Bob Latham <bob@sick-of-spam.invalid> wrote:
I didn't know there was a problem until I read this but you're right
there is. I have managed a static IP on an ethernet connection by
creating a file
/etc/network/interfaces.d/eth0 which contains:
That should[1] still work (maybe after installing the ifupdown package). >>> Install "resolvconf" if you want to specify DNS in /etc/network/interfaces, >>> too.
And how much other stuff ???
/etc/networking worked JUST FINE and is hugely documented
There was NO reason to change.
So, basically, you now have to BREAK Deb to get it to work
like it used to. Cannonical led the way toward STUPID changes
and now Deb seems to have even exceeded THEM.
Supposedly it was because ifupdown depends on dhclient, which is now abandonware. Hence they needed to replace that part of the stack, either
with NetworkManager or systemd-networkd:
https://www.reddit.com/r/debian/comments/rhd1e4/future_of_network_configuration_in_debian/
I'm gonna look into Arch ......
Seems like Arch uses the same tools, with systemd-networkd by default: https://wiki.archlinux.org/title/Network_configuration
On 05/11/2023 16:31, Bob Latham wrote:
In article <ui8b6h$1k37$1@dont-email.me>,
mm0fmf <none@invalid.com> wrote:
Using a separate Linux system to access the Pi's SDcard I added the
following files
/etc/network/interfaces.d/wlan0
/etc/wpa_supplicant/wpa_supplicant.conf
In my case the content is
/etc/network/interfaces.d/wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
/etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
network={
ssid="MyHomeWifiName"
psk="XXXXXXXXXXXXXXXXXXXXXXXXXX"
}
Fantastic !! It works !! Well done - thank you.
On a raspberry pi 2 with no built in wi-fi I tried a couple of
different dongles but they both worked
My router is setup to allocate a set of fixed IP addrs based on MAC
address for some devices that use DHCP. The rest have fixed IP
addrs anyway.
Yes, same here.
Thanks again.
Bob.
Glad to be of help. I found stuff about this online so it's not my own
hard work here just the distillation of someone else's efforts.
On 11/5/23 9:50 AM, Theo wrote:
Supposedly it was because ifupdown depends on dhclient, which is now abandonware. Hence they needed to replace that part of the stack, either with NetworkManager or systemd-networkd:
And NOBODY else in the LiniVerse could maintain/tweak/replace
dhclient ??? This exposes a PROBLEM.
I've HAD it with stupid pointless changes in What Works.
Sounds like, horrors, MICROSOFT !
And how much other stuff ???
/etc/networking worked JUST FINE and is hugely documented
There was NO reason to change.
So, basically, you now have to BREAK Deb to get it to work
like it used to. Cannonical led the way toward STUPID changes
and now Deb seems to have even exceeded THEM.
In article <uia9di$dimp$1@dont-email.me>,
mm0fmf <none@invalid.com> wrote:
On 06/11/2023 08:47, mm0fmf wrote:
On 06/11/2023 08:24, Bob Latham wrote:
However, one word of caution. There is a strong tendency for the
OS to overwrite the file /etc/wpa_supplicant/wpa_supplicant.conf
with zeros. I've seen this with bullseye too. I suspect it is
some weird security measure to try to stop tinkering.
The solution with bullseye is to copy that file not to
/etc/wpa_supplicant but whilst the SD card is still in the PC
copy it to the boot partition. The Pi then copies this into the
correct place at boot up and marks it as valid in some way to
prevent overwrite. I've not tried this yet on bookworm, that's
up next...
Bob.
Not happening here but I do note that nmcli says wlan0 is
unmanaged.
Oh dear, replying to myself....
As it's unmanaged by NetworkManagaer, then it's being left alone.
That's just fine for what this PiZeroW is used for. I have another
PiZeroW with the same release of software that I'll play with and
will add wlan0 to NetworkManager's grasp so I can see what it does
(if anything).
Further testing just, has revealed that bookworm doesn't seem to copy
the wpa_supplicant.conf file from boot partition at boot up like
bullseye did. The only way I've found to get that file there is via
ethernet and in my case samba.
Upon reboot, sometimes the wpa_supplicant.conf files gets overwritten
with zeros and sometimes not. I've no idea why.
Bob.
What exactly is the problem being fixed here?
Just 'cos of this thread, I've been frigging around with bookworm
lite on a PiB+. After getting the firmware for my dongle - took a
long time to compile - TP-Link AC600 wireless Realtek RTL8811AU
[Archer T2U Nano], I just did:
nmcli d wifi connect "myssid" password "mypassword" ifname wlan0
It survives a reboot. My wpa_supplicant.conf file stays unchanged
(and unneeded).
The bit about it not being copied from /boot/ is
documented here: https://www.raspberrypi.com/documentation/computers/configuration.html#connect-to-a-wireless-network
Quote: "Previous versions of Raspberry Pi OS made use of a wpa_supplicant.conf file which could be placed into the boot folder
to configure wireless network settings. This is no longer possible
from Raspberry Pi OS Bookworm onwards."
I found Jeff Geerling's blog handy: https://www.jeffgeerling.com/blog/2023/nmcli-wifi-on-raspberry-pi-os-12-bookworm
What exactly is the problem being fixed here?
In article <uialr1$fcug$1@dont-email.me>,
Chris Elvidge <chris@mshome.net> wrote:
Just 'cos of this thread, I've been frigging around with bookworm
lite on a PiB+. After getting the firmware for my dongle - took a
long time to compile - TP-Link AC600 wireless Realtek RTL8811AU
[Archer T2U Nano], I just did:
nmcli d wifi connect "myssid" password "mypassword" ifname wlan0
It survives a reboot. My wpa_supplicant.conf file stays unchanged
(and unneeded).
<stunned gulp>
Are you saying that you get a wi-fi dongle to work with just one
command?
Wow, I'll try this out later.
The bit about it not being copied from /boot/ is
documented here:
https://www.raspberrypi.com/documentation/computers/configuration.html#connect-to-a-wireless-network
Quote: "Previous versions of Raspberry Pi OS made use of a
wpa_supplicant.conf file which could be placed into the boot folder
to configure wireless network settings. This is no longer possible
from Raspberry Pi OS Bookworm onwards."
Well at least my testing was correct then. :-)
I found Jeff Geerling's blog handy:
https://www.jeffgeerling.com/blog/2023/nmcli-wifi-on-raspberry-pi-os-12-bookworm
I'll have a read of that, thanks.
What exactly is the problem being fixed here?
Recently I've been using secondhand pi3 devices because they have
wi-fi built in and that just worked from raspi-config on bookworm.
Then I saw this thread and thought I'd try a pi2 with a wi-fi dongle
and I couldn't get it to work certainly not as I'd done on bullseye.
Clever fold on here told me a way to get it going and that did work.
Later I'll try your suggestion and see if that works for me. I just
don't know how you find out this stuff. :-)
Thanks for the suggestion.
Bob.
On 06/11/2023 13:44, Bob Latham wrote:
In article <uialr1$fcug$1@dont-email.me>,
Chris Elvidge <chris@mshome.net> wrote:
Just 'cos of this thread, I've been frigging around with bookworm
lite on a PiB+. After getting the firmware for my dongle - took a
long time to compile - TP-Link AC600 wireless Realtek RTL8811AU
[Archer T2U Nano], I just did:
nmcli d wifi connect "myssid" password "mypassword" ifname wlan0
It survives a reboot. My wpa_supplicant.conf file stays unchanged
(and unneeded).
<stunned gulp>
Are you saying that you get a wi-fi dongle to work with just one
command?
Wow, I'll try this out later.
Not exactly a single command <g> as I had to download and compile the
drivers for the USB dongle. That took ages! But I got both 5GHz and 2.4
GHz (80211ac). I'll try out a more simple dongle (80211n) later today.
The bit about it not being copied from /boot/ is
documented here:
https://www.raspberrypi.com/documentation/computers/configuration.html#connect-to-a-wireless-network
Quote: "Previous versions of Raspberry Pi OS made use of a
wpa_supplicant.conf file which could be placed into the boot folder
to configure wireless network settings. This is no longer possible
from Raspberry Pi OS Bookworm onwards."
Well at least my testing was correct then. :-)
I found Jeff Geerling's blog handy:
https://www.jeffgeerling.com/blog/2023/nmcli-wifi-on-raspberry-pi-os-12-bookworm
I'll have a read of that, thanks.
What exactly is the problem being fixed here?
Recently I've been using secondhand pi3 devices because they have
wi-fi built in and that just worked from raspi-config on bookworm.
Then I saw this thread and thought I'd try a pi2 with a wi-fi dongle
and I couldn't get it to work certainly not as I'd done on bullseye.
Clever fold on here told me a way to get it going and that did work.
Later I'll try your suggestion and see if that works for me. I just
don't know how you find out this stuff. :-)
Mainly, Jeff Geerling's blog (see above)
It seems (to me) that NetworkManager uses dhcpcd (not dhclient)
Thanks for the suggestion.
Bob.
internally, but I could be wrong. And wpa_supplicant seems to come into
it somewhere, but doesn't use seem to use /etc/wpa_supplicant/wpa_supplicant.conf
'wpa_cli status'
Another problem I found with RPiB+/Bookworm lite is the overscan[Snip]
settings.
which works until the (new) video driver takes over
Solution: comment out the new driver viz:
# Enable DRM VC4 V3D driver
#dtoverlay=vc4-kms-v3d
#max_framebuffers=2
On Sun, 5 Nov 2023 23:15:08 -0500
"56d.1152" <56d.1152@ztq9.net> wrote:
On 11/5/23 9:50 AM, Theo wrote:
Supposedly it was because ifupdown depends on dhclient, which is now
abandonware. Hence they needed to replace that part of the stack, either >>> with NetworkManager or systemd-networkd:
And NOBODY else in the LiniVerse could maintain/tweak/replace
dhclient ??? This exposes a PROBLEM.
Strange that - dhclient is still part of the base system in FreeBSD.
I've HAD it with stupid pointless changes in What Works.
Sounds like, horrors, MICROSOFT !
Look into the BSDs - they're not Linux and they don't follow
fashion.
In article <FcGcnQ_s4rd39dX4nZ2dnZfqn_idnZ2d@earthlink.com>,
56d.1152 <56d.1152@ztq9.net> wrote:
On 11/5/23 2:25 PM, mm0fmf wrote:
On 05/11/2023 16:31, Bob Latham wrote:
In article <ui8b6h$1k37$1@dont-email.me>,
mm0fmf <none@invalid.com> wrote:
I added the following files
/etc/network/interfaces.d/wlan0
/etc/wpa_supplicant/wpa_supplicant.conf
In my case the content is
/etc/network/interfaces.d/wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
/etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
network={
ssid="MyHomeWifiName"
psk="XXXXXXXXXXXXXXXXXXXXXXXXXX"
}
Fantastic !! It works !! Well done - thank you.
Did that work on BOOKWORM ???
Yes it does!
However, one word of caution. There is a strong tendency for the OS
to overwrite the file /etc/wpa_supplicant/wpa_supplicant.conf with
zeros. I've seen this with bullseye too. I suspect it is some weird
security measure to try to stop tinkering.
The solution with bullseye is to copy that file not to
/etc/wpa_supplicant but whilst the SD card is still in the PC copy it
to the boot partition. The Pi then copies this into the correct place
at boot up and marks it as valid in some way to prevent overwrite.
I've not tried this yet on bookworm, that's up next...
56d.1152 <56d.1152@ztq9.net> wrote:
For a GUI-less Bookworm you have to fool with the very
horrible 'nmcli' and then manually EDIT the net def
templates it creates way down in /etc/NetworkManager/
system-<something>
nmtui is much nicer to work with. On everything I run that uses NetworkManager, I make sure nmtui is installed.
On 06/11/2023 15:01, Chris Elvidge wrote:
Another problem I found with RPiB+/Bookworm lite is the overscan[Snip]
settings.
which works until the (new) video driver takes over
Overscan is yet another thing the Wayland developers can't be bother supporting, so no longer work.
Solution: comment out the new driver viz:
# Enable DRM VC4 V3D driver
#dtoverlay=vc4-kms-v3d
#max_framebuffers=2
There is no need to stop using the driver, just switch back to using X11.
On 11/6/23 2:01 AM, Ahem A Rivet's Shot wrote:
On Sun, 5 Nov 2023 23:15:08 -0500
"56d.1152" <56d.1152@ztq9.net> wrote:
On 11/5/23 9:50 AM, Theo wrote:
Supposedly it was because ifupdown depends on dhclient, which is now
abandonware. Hence they needed to replace that part of the stack,
either with NetworkManager or systemd-networkd:
And NOBODY else in the LiniVerse could maintain/tweak/replace
dhclient ??? This exposes a PROBLEM.
Strange that - dhclient is still part of the base system in
FreeBSD.
I've HAD it with stupid pointless changes in What Works.
Sounds like, horrors, MICROSOFT !
Look into the BSDs - they're not Linux and they don't follow
fashion.
I have looked into the BSDs - including the ARM version
of FreeBSD.
ONE odd issue, but kinda important to me & org, is that
they do NOT seem to do SMB2 or SMB3 ... just the insecure
and long-defunct SMB1. It's far more a pain in the ass
to create shares or use them in BSD (and no, FORGET NFS ...
the Real World is 95% Winders with Linux/Unix as servers
or 'smart devices'.
I have looked into the BSDs - including the ARM version
of FreeBSD.
ONE odd issue, but kinda important to me & org, is that
they do NOT seem to do SMB2 or SMB3 ... just the insecure
and long-defunct SMB1. It's far more a pain in the ass
to create shares or use them in BSD (and no, FORGET NFS ...
the Real World is 95% Winders with Linux/Unix as servers
or 'smart devices'.
In some ways the BSDs are "better", solid, well thought-out,
NOT prone to stupid pointless changes in basic functions.
In a few ways though they are WELL behind the curve.
On 06/11/2023 15:01, Chris Elvidge wrote:
Another problem I found with RPiB+/Bookworm lite is the overscan[Snip]
settings.
which works until the (new) video driver takes over
Overscan is yet another thing the Wayland developers can't be bother supporting, so no longer work.
Solution: comment out the new driver viz:
# Enable DRM VC4 V3D driver
#dtoverlay=vc4-kms-v3d
#max_framebuffers=2
There is no need to stop using the driver, just switch back to using X11.
---druck
On 06/11/2023 13:44, Bob Latham wrote:
In article <uialr1$fcug$1@dont-email.me>,
Chris Elvidge <chris@mshome.net> wrote:
nmcli d wifi connect "myssid" password "mypassword" ifname wlan0
Now an embarrassing question in Linux is "t" the same as "-t"?
On 07/11/2023 03:17, 56d.1152 wrote:
.....
I have looked into the BSDs - including the ARM version
of FreeBSD.
I run freebsd on a pi4 as our main server. A little slow, but works well enough. Used to run samba (on an i386), but got rid of windows in favour
of linux desktops quite a few years ago and never looked back.
ONE odd issue, but kinda important to me & org, is that
they do NOT seem to do SMB2 or SMB3 ... just the insecure
and long-defunct SMB1. It's far more a pain in the ass
A quick look at freebsd ports shows something called samba 4.13. Are you
sure that's only smb1?
to create shares or use them in BSD (and no, FORGET NFS ...
the Real World is 95% Winders with Linux/Unix as servers
or 'smart devices'.
In some ways the BSDs are "better", solid, well thought-out,
NOT prone to stupid pointless changes in basic functions.
In a few ways though they are WELL behind the curve.
Maybe those go together - if you're at the forefront of development,
you're necessarily in unstable times. If you prefer stability, let
someone else cut themselves on the bleeding edge and you be content to
follow tried and tested paths.
Horses for courses.
On Mon, 6 Nov 2023 22:17:44 -0500
"56d.1152" <56d.1152@ztq9.net> wrote:
On 11/6/23 2:01 AM, Ahem A Rivet's Shot wrote:
On Sun, 5 Nov 2023 23:15:08 -0500
"56d.1152" <56d.1152@ztq9.net> wrote:
On 11/5/23 9:50 AM, Theo wrote:
Supposedly it was because ifupdown depends on dhclient, which is now >>>>> abandonware. Hence they needed to replace that part of the stack,
either with NetworkManager or systemd-networkd:
And NOBODY else in the LiniVerse could maintain/tweak/replace
dhclient ??? This exposes a PROBLEM.
Strange that - dhclient is still part of the base system in
FreeBSD.
I've HAD it with stupid pointless changes in What Works.
Sounds like, horrors, MICROSOFT !
Look into the BSDs - they're not Linux and they don't follow
fashion.
I have looked into the BSDs - including the ARM version
of FreeBSD.
ONE odd issue, but kinda important to me & org, is that
they do NOT seem to do SMB2 or SMB3 ... just the insecure
and long-defunct SMB1. It's far more a pain in the ass
to create shares or use them in BSD (and no, FORGET NFS ...
the Real World is 95% Winders with Linux/Unix as servers
or 'smart devices'.
Not sure how you got that impression samba will export both smb2
and smb3 shares on FreeBSD, It's the same samba as used in Linux.
On 06/11/2023 21:34, druck wrote:
On 06/11/2023 15:01, Chris Elvidge wrote:
Another problem I found with RPiB+/Bookworm lite is the overscan[Snip]
settings.
which works until the (new) video driver takes over
Overscan is yet another thing the Wayland developers can't be bother
supporting, so no longer work.
Solution: comment out the new driver viz:
# Enable DRM VC4 V3D driver
#dtoverlay=vc4-kms-v3d
#max_framebuffers=2
There is no need to stop using the driver, just switch back to using X11.
---druck
AFAIK Raspberry Pi OS Bookworm Lite doesn't use either X11 or Wayland
On Sun, 5 Nov 2023 10:40:28 -0000 (UTC)
Jim Jackson <jj@franjam.org.uk> wrote:
It is possible to run a dhcp server that hands out a fixed IP address
for a specific MAC.
Which can be a pain when you upgrade a box or want to hand a fixed
IP to something like a phone that randomly changes MAC address to prevent IPv6 auto allocation being used for tracking.
Many DHCP servers can also allocate a static IP based on hostname
which is really handy especially with DNS/DHCP integrated as in dnsmasq.
The way the world is going we'll ALL be relying
on horses and donkeys again .... 🙂
The way the world is going we'll ALL be relying
on horses and donkeys again .... :-)
Anyway, let's get REAL. Yer Linux/BSD devices WILL mostly be
communicating with WINDERS shit almost exclusively.
However setting things like a static IP on 'lite', no
gui tools,
On 11/7/23 4:34 AM, Mike Scott wrote:
On 07/11/2023 03:17, 56d.1152 wrote:
.....
I have looked into the BSDs - including the ARM version
of FreeBSD.
I run freebsd on a pi4 as our main server. A little slow, but works
well enough. Used to run samba (on an i386), but got rid of windows in
favour of linux desktops quite a few years ago and never looked back.
Kinda dinky "main server" ... I use a fast i9/gen-12 :-)
On 08/11/2023 05:28, 56d.1152 wrote:
On 11/7/23 4:34 AM, Mike Scott wrote:
On 07/11/2023 03:17, 56d.1152 wrote:
.....
I have looked into the BSDs - including the ARM version
of FreeBSD.
I run freebsd on a pi4 as our main server. A little slow, but works
well enough. Used to run samba (on an i386), but got rid of windows
in favour of linux desktops quite a few years ago and never looked back.
Kinda dinky "main server" ... I use a fast i9/gen-12 :-)
And what's the power (watts :-}) difference I wonder?
Incidentally, freebsd is pretty reliable - I've had it run for 9 months
solid or more in the past; currently at 3. I've no feeling for how
reliable linux is for that sort of duration. I'd not expect windows to
run that long; IMBW.
(I once had a vax/vms system still going after a year without reboot. It
was only stopped because of a company Christmas shutdown. I still miss
vms even with its vagaries :-) )
On 08/11/2023 05:43, 56d.1152 wrote:
However setting things like a static IP on 'lite', no
gui tools,
Rasbian lite installed here. nmtui is a text mode graphical interface
for network configuration that is present. Looks like and works like raspi-config.
Don't say there's no gui for network control when there obviously is.
On Wed, 8 Nov 2023 00:28:41 -0500
"56d.1152" <56d.1152@ztq9.net> wrote:
The way the world is going we'll ALL be relying
on horses and donkeys again .... :-)
Then there will have to be far fewer of us.
Incidentally, freebsd is pretty reliable - I've had it run for 9 months
solid or more in the past; currently at 3.
On 08/11/2023 12:50, mm0fmf wrote:
On 08/11/2023 05:43, 56d.1152 wrote:Never heard of nmtui before
However setting things like a static IP on 'lite', no
gui tools,
Rasbian lite installed here. nmtui is a text mode graphical interface
for network configuration that is present. Looks like and works like
raspi-config.
Don't say there's no gui for network control when there obviously is.
I tried it. It didn't work. Probably because I have done things a
different way already.
On 08/11/2023 13:37, The Natural Philosopher wrote:
On 08/11/2023 12:50, mm0fmf wrote:Doesn't work how?
On 08/11/2023 05:43, 56d.1152 wrote:Never heard of nmtui before
However setting things like a static IP on 'lite', no
gui tools,
Rasbian lite installed here. nmtui is a text mode graphical interface
for network configuration that is present. Looks like and works like
raspi-config.
Don't say there's no gui for network control when there obviously is.
I tried it. It didn't work. Probably because I have done things a
different way already.
It's not installed?
It doesn't load or show you a menu of options?
It doesn't have access to network devices?
On Wed, 8 Nov 2023 12:33:46 +0000
Mike Scott <usenet.16@scottsonline.org.uk.invalid> wrote:
Incidentally, freebsd is pretty reliable - I've had it run for 9 months
solid or more in the past; currently at 3.
Some years back at Yahoo! I turned off some FreeBSD servers that had been running without a reboot for over seven years.
On 08/11/2023 14:51, mm0fmf wrote:
On 08/11/2023 13:37, The Natural Philosopher wrote:I click on 'edit' and nothing happens. I am not sure that it thinks
On 08/11/2023 12:50, mm0fmf wrote:Doesn't work how?
On 08/11/2023 05:43, 56d.1152 wrote:Never heard of nmtui before
However setting things like a static IP on 'lite', no
gui tools,
Rasbian lite installed here. nmtui is a text mode graphical
interface for network configuration that is present. Looks like and
works like raspi-config.
Don't say there's no gui for network control when there obviously is.
I tried it. It didn't work. Probably because I have done things a
different way already.
It's not installed?
It doesn't load or show you a menu of options?
It doesn't have access to network devices?
there is even an interface to configure.
On 08/11/2023 14:50, Ahem A Rivet's Shot wrote:
On Wed, 8 Nov 2023 12:33:46 +0000
Mike Scott <usenet.16@scottsonline.org.uk.invalid> wrote:
Incidentally, freebsd is pretty reliable - I've had it run for 9 months
solid or more in the past; currently at 3.
Some years back at Yahoo! I turned off some FreeBSD servers that had
been running without a reboot for over seven years.
I suspect the prize is yours then :-}
On 2023-11-08, Ahem A Rivet's Shot <steveo@eircom.net> wrote:
On Wed, 8 Nov 2023 00:28:41 -0500 "56d.1152" <56d.1152@ztq9.net> wrote:
The way the world is going we'll ALL be relying on horses and
donkeys again .... :-)
Just as well. There are too damned many of us as it is, and the
politicians are pushing population growth as hard as they can. It's all
gonna crash, sooner or later (probably sooner).
On 08/11/2023 05:28, 56d.1152 wrote:
On 11/7/23 4:34 AM, Mike Scott wrote:
On 07/11/2023 03:17, 56d.1152 wrote:
.....
I have looked into the BSDs - including the ARM version
of FreeBSD.
I run freebsd on a pi4 as our main server. A little slow, but works
well enough. Used to run samba (on an i386), but got rid of windows
in favour of linux desktops quite a few years ago and never looked back.
Kinda dinky "main server" ... I use a fast i9/gen-12 :-)
And what's the power (watts :-}) difference I wonder?
Incidentally, freebsd is pretty reliable - I've had it run for 9 months
solid or more in the past; currently at 3. I've no feeling for how
reliable linux is for that sort of duration. eI'd not expect windows to
run that long; IMBW.
(I once had a vax/vms system still going after a year without reboot. It
was only stopped because of a company Christmas shutdown. I still miss
vms even with its vagaries :-) )
On 08/11/2023 17:03, The Natural Philosopher wrote:
On 08/11/2023 14:51, mm0fmf wrote:Presumably doesn't work in NetworkManager is not running. What does
On 08/11/2023 13:37, The Natural Philosopher wrote:I click on 'edit' and nothing happens. I am not sure that it thinks
On 08/11/2023 12:50, mm0fmf wrote:Doesn't work how?
On 08/11/2023 05:43, 56d.1152 wrote:Never heard of nmtui before
However setting things like a static IP on 'lite', no
gui tools,
Rasbian lite installed here. nmtui is a text mode graphical
interface for network configuration that is present. Looks like and
works like raspi-config.
Don't say there's no gui for network control when there obviously is. >>>>>
I tried it. It didn't work. Probably because I have done things a
different way already.
It's not installed?
It doesn't load or show you a menu of options?
It doesn't have access to network devices?
there is even an interface to configure.
nmcli say?
On 08/11/2023 12:33, Mike Scott wrote:
On 08/11/2023 05:28, 56d.1152 wrote:My (current) home linux server never 'goes down' except when there is a
On 11/7/23 4:34 AM, Mike Scott wrote:
On 07/11/2023 03:17, 56d.1152 wrote:
.....
I have looked into the BSDs - including the ARM version
of FreeBSD.
I run freebsd on a pi4 as our main server. A little slow, but works
well enough. Used to run samba (on an i386), but got rid of windows
in favour of linux desktops quite a few years ago and never looked
back.
Kinda dinky "main server" ... I use a fast i9/gen-12 :-)
And what's the power (watts :-}) difference I wonder?
Incidentally, freebsd is pretty reliable - I've had it run for 9
months solid or more in the past; currently at 3. I've no feeling for
how reliable linux is for that sort of duration. I'd not expect
windows to run that long; IMBW.
(I once had a vax/vms system still going after a year without reboot.
It was only stopped because of a company Christmas shutdown. I still
miss vms even with its vagaries :-) )
power cut or a kernel or complete distro upgrade.
I hope its PI4B replacement will be as reliable
I see no reason why not
When we ran a shitload of Unix back in the day it never 'went down'
unless someone installed prototype software on it...Windows was rebooted daily.
On 08/11/2023 13:37, The Natural Philosopher wrote:
On 08/11/2023 12:50, mm0fmf wrote:Doesn't work how?
On 08/11/2023 05:43, 56d.1152 wrote:Never heard of nmtui before
However setting things like a static IP on 'lite', no
gui tools,
Rasbian lite installed here. nmtui is a text mode graphical interface
for network configuration that is present. Looks like and works like
raspi-config.
Don't say there's no gui for network control when there obviously is.
I tried it. It didn't work. Probably because I have done things a
different way already.
It's not installed?
It doesn't load or show you a menu of options?
It doesn't have access to network devices?
On 08/11/2023 05:43, 56d.1152 wrote:
However setting things like a static IP on 'lite', no
gui tools,
Rasbian lite installed here. nmtui is a text mode graphical interface
for network configuration that is present. Looks like and works like raspi-config.
Don't say there's no gui for network control when there obviously is.
'nmcli' .... but I'm not a nit-picker, typos happen, often.
On 08/11/2023 17:03, The Natural Philosopher wrote:
On 08/11/2023 14:51, mm0fmf wrote:Presumably doesn't work in NetworkManager is not running. What does
On 08/11/2023 13:37, The Natural Philosopher wrote:I click on 'edit' and nothing happens. I am not sure that it thinks
On 08/11/2023 12:50, mm0fmf wrote:Doesn't work how?
On 08/11/2023 05:43, 56d.1152 wrote:Never heard of nmtui before
However setting things like a static IP on 'lite', no
gui tools,
Rasbian lite installed here. nmtui is a text mode graphical
interface for network configuration that is present. Looks like and
works like raspi-config.
Don't say there's no gui for network control when there obviously is. >>>>>
I tried it. It didn't work. Probably because I have done things a
different way already.
It's not installed?
It doesn't load or show you a menu of options?
It doesn't have access to network devices?
there is even an interface to configure.
nmcli say?
On Wed, 08 Nov 2023 17:40:10 GMT, Charlie Gibbs wrote:
On 2023-11-08, Ahem A Rivet's Shot <steveo@eircom.net> wrote:
On Wed, 8 Nov 2023 00:28:41 -0500 "56d.1152" <56d.1152@ztq9.net> wrote:
The way the world is going we'll ALL be relying on horses and
donkeys again .... :-)
No chance! There hasn't been enough farmland in the USA to feed all the horses needed to replace all diesel and petrol-powered road transport
since the late 1960s. Cities have expanded a lot since then as well, which has in turn reduced available farmland still further during the last 70 years.
Just as well. There are too damned many of us as it is, and the
politicians are pushing population growth as hard as they can. It's all
gonna crash, sooner or later (probably sooner).
Global population has grown by over 300% in my lifetime.
On 09/11/2023 05:16, 56d.1152 wrote:
'nmcli' .... but I'm not a nit-picker, typos happen, often.
No nmtui is the graphical style textual command and nmcli is the pure
CLI command.
However, in your case the command is *plonk*!
On 04/11/2023 03:59, 56d.1152 wrote:
DID run into one very WEIRD issue with Bookworm -
can't get /home/pi/.config/lxsession/LXDE-pi/autostart
to work properly on a Pi4. Works fine on a Pi3 though.
The Pi 4 and later use Wayland (perpetually unfinished and unfit for
purpose windowing system) so LXDE isn't used. Try switching back to X11
and all will be well.
Sysop: | Coz |
---|---|
Location: | Anoka, MN |
Users: | 2 |
Nodes: | 4 (0 / 4) |
Uptime: | 140:35:42 |
Calls: | 166 |
Files: | 5,389 |
Messages: | 223,239 |