Re: how to activate my wireless card? nmtui only shows wireless connections . . .

2023-03-04 Thread Albretch Mueller
On 3/3/23, Dan Ritter wrote: > ... the messages you > are seeing are from the first 88.2 seconds after boot. Most probably and luckily no one has reported such problems, but from the corner from which I see reality it may as well be not "after boot". I haven't exactly timed it (I will when I get

alias in bash script issue

2023-03-04 Thread Ken Young
Hello, Do you know why my alias can't work in the bash script? The info is as follows. 1) this alias does exist $ alias |grep 'k=' alias k='minikube kubectl --' 2) it also exists in .bash_profile $ cat ~/.bash_profile |grep 'k=' alias k="minikube kubectl --" 3) the content of bash script

Re: besides ping/nslookup, any other tools to resolve a hostname?

2023-03-04 Thread Nicolas George
Greg Wooledge (12023-03-03): > Dedicated lookup tools: > > getent hosts > host > dnsqr It is important to know that host and dnsqr do actual DNS requests, and therefore ignore local configuration about other means of resolving hosts, including /etc/hosts. getent hosts is the dedicated command, t

Re: Forcing dhclient to not ignore tun0 interface when it's available

2023-03-04 Thread Kamil Jońca
David Wright writes: [...] > > This is the job that packages like openresolv are designed > to do. BTW if you look up that package in apt's lists, note > that this is a case where you need man's section number, because > man 8 resolvconf without the 8 will give you a systemd page. +1 I have c

Re: alias in bash script issue

2023-03-04 Thread Kamil Jońca
Ken Young writes: [..] I am not bash expert (prefer zsh) but as far as I know they are expadnded during interactive session only, not in scripts. > > $ ./get.sh  > > ./get.sh: line 5: k: command not found > https://www.gnu.org/software/bash/manual/bash.html#Aliases --8<---cut here-

Re: besides ping/nslookup, any other tools to resolve a hostname?

2023-03-04 Thread Ken Young
Hi, I just launched an ubuntu container in that namespace and installed dnsutils/iputils-ping to resolve the hostname issue. Thank you. On Sat, Mar 4, 2023 at 1:11 PM Rodrigo Cunha wrote: > I have bitnami/mysql container (debian OS) running on kubernetes. >> This container seems too restricte

Re: alias in bash script issue

2023-03-04 Thread tomas
On Sat, Mar 04, 2023 at 10:23:24AM +0100, Kamil Jońca wrote: > Ken Young writes: > [..] > > I am not bash expert (prefer zsh) but as far as I know they are > expadnded during interactive session only, not in scripts. That's at least what the man page says (man bash(1)): ALIASES Aliases allo

Re: alias in bash script issue

2023-03-04 Thread David
On Sat, 4 Mar 2023 at 19:30, Ken Young wrote: > Do you know why my alias can't work in the bash script? > The info is as follows. > > 1) this alias does exist > $ alias |grep 'k=' > alias k='minikube kubectl --' > > 2) it also exists in .bash_profile > $ cat ~/.bash_profile |grep 'k=' > alias k=

Re: alias in bash script issue

2023-03-04 Thread Tom Furie
On Sat, Mar 04, 2023 at 08:52:15PM +1100, David wrote: > Debian's default shell is 'dash'. Its manual, readable using 'man dash', > says The script explicitly calls bash. The rest of your point is still (coincidentally) valid though, as it would be in most of the popular shells as far as I'm aware

Re: alias in bash script issue

2023-03-04 Thread David
On Sun, 5 Mar 2023 at 00:12, Tom Furie wrote: > On Sat, Mar 04, 2023 at 08:52:15PM +1100, David wrote: > > Debian's default shell is 'dash'. Its manual, readable using 'man dash', > > says > > The script explicitly calls bash. The rest of your point is still > (coincidentally) valid though, as it

Re: alias in bash script issue

2023-03-04 Thread Greg Wooledge
On Sun, Mar 05, 2023 at 01:39:35AM +1100, David wrote: > I am aware. 'man dash' better describes how aliases should be > used in modern times, ??? Is this the paragraph you mean? Aliases provide a convenient way for naive users to create shorthands for commands without having to learn

Re: solution to / full

2023-03-04 Thread David Wright
On Fri 03 Mar 2023 at 15:42:37 (-), Curt wrote: > On 2023-03-02, Jonathan Dowland wrote: > > On Thu, Mar 02, 2023 at 07:25:58AM -0500, Greg Wooledge wrote: > >>I don't understand why you used sort -r, but then reversed it again with > >>tac at the end. You could drop both of the reversals, an

Re: how to activate my wireless card? nmtui only shows wireless connections . . .

2023-03-04 Thread David Wright
On Sat 04 Mar 2023 at 00:03:16 (+), Albretch Mueller wrote: > On 3/3/23, David Wright wrote: > > > > Try removing the atheros module with: > > > > # rmmod ath10k_pci > > > > (check its name in /proc/modules), and then reload it with > > > > # modprobe ath10k_pci > > > > and check dmesg aga

Re: how to activate my wireless card? nmtui only shows wireless connections . . .

2023-03-04 Thread David Wright
On Sat 04 Mar 2023 at 01:02:54 (-0500), Jeffrey Walton wrote: > On Fri, Mar 3, 2023 at 6:10 PM Greg Wooledge wrote: > > On Fri, Mar 03, 2023 at 05:45:54PM -0500, Jeffrey Walton wrote: > > > The 'p' is a pci bus, the 's' is a slot number. Since the interface > > > does not move around once installe

Re: alias in bash script issue

2023-03-04 Thread David Wright
On Sat 04 Mar 2023 at 20:52:15 (+1100), David wrote: > Hi. Friends don't help friends to do bad things :) > > Debian's default shell is 'dash'. Its manual, readable using 'man dash', > says > > Aliases provide a convenient way for naive users to create shorthands > for commands without h

Re: alias in bash script issue

2023-03-04 Thread Greg Wooledge
On Sat, Mar 04, 2023 at 11:14:39AM -0600, David Wright wrote: > > This use is discouraged > > There's a place for warning about the use of aliases in, say, > Greg's BashPitfalls, or books, but not here. Discouraging the use of legacy features that are considered dangerous in modern usage is f

Re: Forcing dhclient to not ignore tun0 interface when it's available

2023-03-04 Thread David Wright
On Fri 03 Mar 2023 at 17:03:49 (+), daven...@tuxfamily.org wrote: > On 2023-03-03 05:21, David Wright wrote: > > On Thu 02 Mar 2023 at 11:44:17 (+0100), daven...@tuxfamily.org wrote: > > > > > > I finally had the time to dig into the logs from two days ago, when > > > the problem happens again

call for beta testing emu10k1 driver improvements

2023-03-04 Thread Oswald Buddenhagen
moin, i did some hacking on the emu10k1 driver, and now need it tested on a variety of hardware. the cards still have a market value, so *someone* must be still using them, or at least have some in the basement ... the driver targets SoundBlaster Live! / 512PCI / Audigy and the E-MU 0404/101

Re: how to activate my wireless card? nmtui only shows wireless connections . . .

2023-03-04 Thread Jeffrey Walton
On Sat, Mar 4, 2023 at 12:12 PM David Wright wrote: > > On Sat 04 Mar 2023 at 01:02:54 (-0500), Jeffrey Walton wrote: > > On Fri, Mar 3, 2023 at 6:10 PM Greg Wooledge wrote: > > > On Fri, Mar 03, 2023 at 05:45:54PM -0500, Jeffrey Walton wrote: > > > > The 'p' is a pci bus, the 's' is a slot numbe

Trying to find the source iso's for debian buster and bookworm

2023-03-04 Thread Keith Christian
Several versions back, we could download the source code on various iso files for previous and current releases. Where can those be found for Buster and Bookworm? Several searches turned up nothing. Thanks.

Re: Trying to find the source iso's for debian buster and bookworm

2023-03-04 Thread davidson
On Sat, 4 Mar 2023 Keith Christian wrote: Several versions back, we could download the source code on various iso files for previous and current releases. Debian CDs/DVDs archive https://cdimage.debian.org/cdimage/archive/ Where can those be found for Buster [...] I would look in the ar

slapd access to private key owned by root

2023-03-04 Thread jeremy ardley
I think the problem is probably unsolvable but I thought I'd ask. I understand slapd starts as user root and reads config etc and then changes to user openldap This means that it could potentially read a private key owned by root during startup? The problem is when I try and configure priva

Re: alias in bash script issue

2023-03-04 Thread Ken Young
On Sat, Mar 4, 2023 at 5:53 PM David wrote: > On Sat, 4 Mar 2023 at 19:30, Ken Young wrote: > > > Do you know why my alias can't work in the bash script? > > The info is as follows. > > > > 1) this alias does exist > > $ alias |grep 'k=' > > alias k='minikube kubectl --' > > > > 2) it also exis

Re: alias in bash script issue

2023-03-04 Thread Greg Wooledge
On Sun, Mar 05, 2023 at 09:26:41AM +0800, Ken Young wrote: > On Sat, Mar 4, 2023 at 5:53 PM David wrote: > > Debian's default shell is 'dash'. Its manual, readable using 'man dash', > > says > my debian 11's default shell is just bash. > > root@nxacloud-bloghost:~# echo $SHELL > > /bin/bash Bo

Re: how to activate my wireless card? nmtui only shows wireless connections . . .

2023-03-04 Thread Albretch Mueller
On 3/4/23, David Wright wrote: > Also, now that the firmware is in place, if you repeat those steps, > you're /likely/ to find that ath10k_pci is busy, because the link > will be configured automatically in the first few seconds after > booting up. I would always go into exposed mode using a DL

Git Branching

2023-03-04 Thread William Torrez Corea
I am working with remotes, when i want push to the remote with this command appear the following error: *git push main master* fatal: 'main' does not appear to be a git repository > fatal: Could not read from remote repository. > > Please make sure you have the correct access rights > and the rep

Re: Git Branching

2023-03-04 Thread Larry Martell
On Sat, Mar 4, 2023 at 11:00 PM William Torrez Corea wrote: > I am working with remotes, when i want push to the remote with this > command appear the following error: > > *git push main master* > > fatal: 'main' does not appear to be a git repository >> fatal: Could not read from remote reposito

Re: Git Branching

2023-03-04 Thread tomas
On Sat, Mar 04, 2023 at 09:59:29PM -0600, William Torrez Corea wrote: > I am working with remotes, when i want push to the remote with this command > appear the following error: > > *git push main master* > > fatal: 'main' does not appear to be a git repository > > fatal: Could not read from remo

Re: Trying to find the source iso's for debian buster and bookworm

2023-03-04 Thread Luna Jernberg
Thats correct buster and bullseye is released bookworm is testing and still being developed for a couple of months more On 3/5/23, davidson wrote: > On Sat, 4 Mar 2023 Keith Christian wrote: >> Several versions back, we could download the source code >> on various iso files for previous and curre

Re: does your Thunderbird for deb11 often become unresponsive?

2023-03-04 Thread Mark Allums
On 3/3/23 12:17, Alexander V. Makartsev wrote: On 03.03.2023 09:02, hlyg wrote: at first i suspect Thunderbird(TB) try to access some sites that are blocked in china i disable show Start Page when it launches i disable check email automatically for each account but it becomes unresponsive wh