Witaj, Gość
Musisz się zarejestrować przed napisaniem posta.

Użytkownik
  

Hasło
  





Szukaj na forum

(Zaawansowane szukanie)

Statystyki
» Użytkownicy: 716
» Najnowszy użytkownik: bimber
» Wątków na forum: 2 649
» Postów na forum: 18 736

Pełne statystyki

Ostatnie wątki
mati75
Brak możliwości powiększe...

Forum: System
Ostatni post: mati75
Wczoraj, 21:44
» Odpowiedzi: 1
» Wyświetleń: 42
mati75
Problem z wolnym lub brak...

Forum: Sprzęt i sterowniki
Ostatni post: mati75
Wczoraj, 20:56
» Odpowiedzi: 21
» Wyświetleń: 642
holy fox
Niezywkle ciekawy program...

Forum: Software
Ostatni post: holy fox
Wczoraj, 10:59
» Odpowiedzi: 1
» Wyświetleń: 74
mati75
Brak dzwięku w słuchawkac...

Forum: Sprzęt i sterowniki
Ostatni post: mati75
08-01-2025, 23:41
» Odpowiedzi: 2
» Wyświetleń: 156
Lutris Epic ustawienia Wi...

Forum: Gry i wine
Ostatni post: Morthy
08-01-2025, 23:21
» Odpowiedzi: 2
» Wyświetleń: 390
Davinci Resolve 19 nie ot...

Forum: Software
Ostatni post: Morthy
08-01-2025, 23:20
» Odpowiedzi: 15
» Wyświetleń: 1 283
dedito
[oddzielony] Problem z wo...

Forum: Kosz/Archiwum
Ostatni post: dedito
08-01-2025, 18:54
» Odpowiedzi: 3
» Wyświetleń: 87
wojaczek
Drukarka Ricoh SP150 Mint...

Forum: Sprzęt i sterowniki
Ostatni post: wojaczek
08-01-2025, 15:02
» Odpowiedzi: 6
» Wyświetleń: 188
samowłaczające się oknat ...

Forum: Podstawy
Ostatni post: Babcia
07-01-2025, 16:56
» Odpowiedzi: 4
» Wyświetleń: 224
liver19
Zerwane połączenie Blueto...

Forum: Software
Ostatni post: liver19
07-01-2025, 15:12
» Odpowiedzi: 3
» Wyświetleń: 172

 
  Sieć a vpn
Napisane przez: Shazza - 16-04-2023, 16:35 - Forum: Sieci - Odpowiedzi (5)

Cześć,

Po pewnym czasie po zainstalowaniu vpn proton mam taką sytuację, że sieć wifi łączy się bezproblemowo, ale nie pobiera danych jeżeli nie włącze vpna. Przy włączonym vpn wszystko jest dobrze.


  [SOLVED] Fuse na Ext4
Napisane przez: christo - 15-04-2023, 15:28 - Forum: System - Odpowiedzi (4)

Da się przekonwertować bez utraty danych system plików fuse ( dysk zewnętrzny na USB 16 Tb ) na ext 4 ?


  ffmpeg nie konwertuje plików
Napisane przez: Pawel_SP5SMY - 14-04-2023, 12:58 - Forum: Przedszkole Linuksa - Odpowiedzi (2)

Kod:
ffmpeg -V
ffmpeg version 5.0 Copyright (c) 2000-2022 the FFmpeg developers
built with gcc 9 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
Wcześniej to działało bez problemów.
Kod:
ffmpeg -i DL4ZJ.jpg DL4ZJ.webp
teraz daje taki efekt:
Kod:
pawel@pawel-System-Product-Name:~/Pulpit/sh/eqsl/qsl_ok$ ffmpeg -i DL4ZJ.jpg DL4ZJ.webp
ffmpeg version 5.0 Copyright (c) 2000-2022 the FFmpeg developers
  built with gcc 9 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
  configuration:
  libavutil      57. 17.100 / 57. 17.100
  libavcodec    59. 18.100 / 59. 18.100
  libavformat    59. 16.100 / 59. 16.100
  libavdevice    59.  4.100 / 59.  4.100
  libavfilter    8. 24.100 /  8. 24.100
  libswscale      6.  4.100 /  6.  4.100
  libswresample  4.  3.100 /  4.  3.100
Input #0, image2, from 'DL4ZJ.jpg':
  Duration: 00:00:00.04, start: 0.000000, bitrate: 42783 kb/s
  Stream #0:0: Video: mjpeg (Baseline), yuvj444p(pc, bt470bg/unknown/unknown), 1000x523 [SAR 96:96 DAR 1000:523], 25 fps, 25 tbr, 25 tbn
[NULL @ 0x55dab31a6880] Unable to find a suitable output format for 'DL4ZJ.webp'
DL4ZJ.wepb: Invalid argument


Jaka powinna być prawidłowa składnia polecenia ffmpeg


  Pakiet convert centrowanie tekstu w obrazku
Napisane przez: Pawel_SP5SMY - 14-04-2023, 11:19 - Forum: Programowanie - Brak odpowiedzi

Kod:
#!/usr/bin/perl -w
use Data::Dumper;
use strict;
use warnings;

use Text::CSV;
my $csv = Text::CSV->new({ sep_char => ',' });

my $file = $ARGV[0] or die "Need to get CSV file on the command line\n";

my $wyp_mal = '          ';
my $wyp_duz = '                    ';
open(my $data, '<:encoding(utf8)', $file) or die "Could not open '$file' $!\n";
while (my $line = <$data>) {
    chomp $line;
    if ($csv->parse($line)) {
    my @fields = $csv->fields();
    my $nazwa = $fields[4];
    $nazwa =~ tr#/#_#;


system "convert qsl2.png  -font Arial -pointsize 20 -gravity southwest -fill navyblue -stroke none  -annotate 0 '  To radio: $fields[3]\n Date: $fields[0] $fields[1] GMT\n MHz $fields[5]\n Mode: $fields[4]\n Sent: $fields[6] Rcvd: $fields[7]\n Thx: for QSO $fields[4]!!!\n Plis card QSL via Biuro' qsl_ok/$fields[3].jpg";
  } else {
        warn "Line could not be parsed: $line\n";
         }
}

uruchamianie:
Kod:
pawel@pawel-System-Product-Name:~/Pulpit/sh/eqsl$ ./qsl.pl test.csv

Daje efekt końcowy taki jak na obrazku.
Pytanie co zrobić żeby tekst był wycentrowany? 
Dane na dole obrazka są pobierane z pliku test.csv
[Obrazek: FT8.jpg]


  Uruchomienie Samby daje taki efekt
Napisane przez: Pawel_SP5SMY - 14-04-2023, 08:22 - Forum: Software - Brak odpowiedzi

Uruchomienie Samby daje taki efekt!
Gdzie znajdę brakujące paczki?

Kod:
pawel@pawel-System-Product-Name:~$ sudo su
root@pawel-System-Product-Name:/home/pawel# /sbin/smbd -i -F
/sbin/smbd: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by /lib/x86_64-linux-gnu/libldb.so.2)
/sbin/smbd: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by /lib/x86_64-linux-gnu/libldb.so.2)


  Gdzie znajdę bazy danych Mysql?
Napisane przez: Pawel_SP5SMY - 12-04-2023, 17:45 - Forum: Software - Brak odpowiedzi

Gdzie znajdę bazy danych Mysql?


  Jak rozwiązać problem z MYSQL
Napisane przez: Pawel_SP5SMY - 10-04-2023, 21:23 - Forum: Software - Brak odpowiedzi

Mam takie bazy danych na komputerze
Program, który chcę zainstalować na nowo.
Zwraca błąd że "Table 'cqrlog_main' already exists."
1. wynik listowania bazy danych
2. Jak znaleźć w której bazie danych jest ta Tabela, żeby usunąć właściwą bazę.
3. Jak zrobić kopię wszystkich baz danych?
4. Wordpress ma zostać.

Kod:
MariaDB [(none)]> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysite             |
| mysql              |
| performance_schema |
| wordpress          |
+--------------------+
5 rows in set (0,004 sec)


  Wolne wifi
Napisane przez: antonio12k - 08-04-2023, 04:46 - Forum: Sieci - Brak odpowiedzi

Mam problem z połączeniem wifi tzn jest ono bardzo wolne 

Kod:
grzegorz@grzegorz-desktop:~$ inxi -Fxz
System:
  Kernel: 5.15.0-56-generic x86_64 bits: 64 compiler: gcc v: 11.3.0
    Desktop: Cinnamon 5.6.5 Distro: Linux Mint 21.1 Vera
    base: Ubuntu 22.04 jammy
Machine:
  Type: Desktop Mobo: ASRock model: 960GC-GS FX serial: <superuser required>
    BIOS: American Megatrends v: P1.40 date: 10/02/2013
CPU:
  Info: dual core model: AMD Athlon 64 X2 5200+ bits: 64 type: MCP
    arch: K8 rev.F+ rev: 3 cache: L1: 256 KiB L2: 2 MiB
  Speed (MHz): avg: 1000 min/max: 1000/2600 cores: 1: 1000 2: 1000
    bogomips: 11181
  Flags: ht lm nx pae sse sse2 sse3 svm
Graphics:
  Device-1: NVIDIA GT216 [GeForce GT 220] vendor: Gigabyte driver: nouveau
    v: kernel bus-ID: 01:00.0
  Display: x11 server: X.Org v: 1.21.1.3 driver: X: loaded: modesetting
    unloaded: fbdev,vesa gpu: nouveau resolution: 1: 1280x800~60Hz
    2: 1440x900~60Hz
  OpenGL: renderer: NVA5 v: 3.3 Mesa 22.0.5 direct render: Yes
Audio:
  Device-1: AMD SBx00 Azalia vendor: ASRock driver: snd_hda_intel v: kernel
    bus-ID: 00:14.2
  Device-2: NVIDIA GT216 HDMI Audio vendor: Gigabyte driver: snd_hda_intel
    v: kernel bus-ID: 01:00.1
  Sound Server-1: ALSA v: k5.15.0-56-generic running: yes
  Sound Server-2: PulseAudio v: 15.99.1 running: yes
  Sound Server-3: PipeWire v: 0.3.48 running: yes
Network:
  Device-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet
    vendor: ASRock driver: r8169 v: kernel port: e800 bus-ID: 02:00.0
  IF: enp2s0 state: down mac: <filter>
  Device-2: Realtek RTL8188CUS 802.11n WLAN Adapter type: USB
    driver: rtl8192cu bus-ID: 2-5:2
  IF: wlxa0f3c107f7ae state: up mac: <filter>
Drives:
  Local Storage: total: 651.94 GiB used: 19.68 GiB (3.0%)
  ID-1: /dev/sda vendor: Seagate model: ST3500413AS size: 465.76 GiB
  ID-2: /dev/sdb vendor: Samsung model: HD200HJ size: 186.18 GiB
Partition:
  ID-1: / size: 173.85 GiB used: 19.68 GiB (11.3%) fs: ext4 dev: /dev/sda5
  ID-2: /boot/efi size: 512 MiB used: 6.1 MiB (1.2%) fs: vfat
    dev: /dev/sda3
Swap:
  ID-1: swap-1 type: file size: 2 GiB used: 42 MiB (2.1%) file: /swapfile
Sensors:
  System Temperatures: cpu: 36.0 C mobo: N/A gpu: nouveau temp: 33.0 C
  Fan Speeds (RPM): N/A gpu: nouveau fan: 1440
Info:
  Processes: 224 Uptime: 56m Memory: 1.93 GiB used: 1.22 GiB (63.1%)
  Init: systemd runlevel: 5 Compilers: gcc: 11.3.0 Packages: 2146 Shell: Bash
  v: 5.1.16 inxi: 3.3.13
grzegorz@grzegorz-desktop:~$ inxi -n -xxx
Network:
  Device-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet
    vendor: ASRock driver: r8169 v: kernel pcie: speed: 2.5 GT/s lanes: 1
    port: e800 bus-ID: 02:00.0 chip-ID: 10ec:8168 class-ID: 0200
  IF: enp2s0 state: down mac: bc:5f:f4:db:1d:aa
  Device-2: Realtek RTL8188CUS 802.11n WLAN Adapter type: USB
    driver: rtl8192cu bus-ID: 2-5:2 chip-ID: 0bda:8176 class-ID: 0000
    serial: 00e04c000001
  IF: wlxa0f3c107f7ae state: up mac: a0:f3:c1:07:f7:ae
grzegorz@grzegorz-desktop:~$ wget -N -t 5 -T 10 https://github.com/UbuntuForums/wireless-info/raw/master/wireless-info && \
> chmod +x wireless-info && \
> ./wireless-info
--2023-04-08 04:30:29--  https://github.com/UbuntuForums/wireless-info/raw/master/wireless-info
Translacja github.com (github.com)... 140.82.121.4
Łączenie się z github.com (github.com)|140.82.121.4|:443... połączono.
Żądanie HTTP wysłano, oczekiwanie na odpowiedź... 302 Found
Lokalizacja: https://raw.githubusercontent.com/UbuntuForums/wireless-info/master/wireless-info [podążanie]
--2023-04-08 04:30:29--  https://raw.githubusercontent.com/UbuntuForums/wireless-info/master/wireless-info
Translacja raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.108.133, 185.199.110.133, ...
Łączenie się z raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... połączono.
Żądanie HTTP wysłano, oczekiwanie na odpowiedź... 200 OK
Długość: 17534 (17K) [text/plain]
Zapis do: ‘wireless-info’

wireless-info       100%[===================>]  17,12K  --.-KB/s    w 0,02s   

Brak nagłówka Last-modified -- znaczniki czasu wyłączone.
2023-04-08 04:30:30 (847 KB/s) - zapisano ‘wireless-info’ [17534/17534]

+x: nie znaleziono polecenia

Kod:
########## wireless info START ##########

Report from: 08 Apr 2023 04:01 CEST +0200

Booted last: 08 Apr 2023 00:00 CEST +0200

Script from: 25 Jan 2020 03:34 UTC +0000

##### release ###########################

Distributor ID:    Linuxmint
Description:    Linux Mint 21.1
Release:    21.1
Codename:    vera

##### kernel ############################

Linux 5.15.0-56-generic #62-Ubuntu SMP Tue Nov 22 19:54:14 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Parameters: ro, quiet, splash

##### desktop ###########################

Cinnamon

##### lspci #############################

02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c)
    Subsystem: ASRock Incorporation Motherboard (one of many) [1849:8168]
    Kernel driver in use: r8169

##### lsusb #############################

Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN Adapter
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 002: ID 045e:0800 Microsoft Corp. Wireless keyboard (All-in-One-Media)
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 003: ID 0781:5581 SanDisk Corp. Ultra
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 002: ID 040b:2011 Weltrend Semiconductor 2.4G wireless Mouse
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

##### PCMCIA card info ##################

##### rfkill ############################

0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

##### secure boot #######################

EFI variables are not supported on this system

##### lsmod #############################

rtl8xxxu              151552  0
rtl8192cu             106496  0
rtl_usb                20480  1 rtl8192cu
rtl8192c_common        81920  1 rtl8192cu
rtlwifi               114688  3 rtl8192c_common,rtl_usb,rtl8192cu
mac80211             1249280  4 rtl_usb,rtl8192cu,rtlwifi,rtl8xxxu
cfg80211              974848  3 rtlwifi,mac80211,rtl8xxxu
libarc4                16384  1 mac80211
wmi_bmof               16384  0
mxm_wmi                16384  1 nouveau
wmi                    32768  3 wmi_bmof,mxm_wmi,nouveau

##### interfaces ########################

[/etc/network/interfaces]
source /etc/network/interfaces.d/*

##### ifconfig ##########################

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback <MAC address> brd <MAC address>
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: enp2s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
    link/ether <MAC 'enp2s0' [IF1]> brd <MAC address>
3: wlx<IF from MAC [IF2]>: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether <MAC 'wlx<IF from MAC [IF2]>' [IF2]> brd <MAC address>
    inet 192.168.0.100/24 brd 192.168.0.255 scope global dynamic noprefixroute wlx<IF from MAC [IF2]>
       valid_lft 5459sec preferred_lft 5459sec
    inet6 fe80::<IP6 'wlx<IF from MAC [IF2]>' [IF2]>/64 scope link
       valid_lft forever preferred_lft forever

##### iwconfig ##########################

lo        no wireless extensions.

enp2s0    no wireless extensions.

wlx<IF from MAC [IF2]>  IEEE 802.11  ESSID:"dom" 
          Mode:Managed  Frequency:2.437 GHz  Access Point: <MAC 'dom' [AC3]>  
          Bit Rate:150 Mb/s   Tx-Power=20 dBm  
          Retry short limit:7   RTS thr=2347 B   Fragment thr:off
          Power Management:off
          Link Quality=64/70  Signal level=-46 dBm 
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:79   Missed beacon:0

##### route #############################

default via 192.168.0.1 dev wlx<IF from MAC [IF2]> proto dhcp metric 600
169.254.0.0/16 dev wlx<IF from MAC [IF2]> scope link metric 1000
192.168.0.0/24 dev wlx<IF from MAC [IF2]> proto kernel scope link src 192.168.0.100 metric 600

##### resolv.conf #######################

[777 root '/etc/resolv.conf' -> '../run/systemd/resolve/stub-resolv.conf']

nameserver 127.0.0.53
options edns0 trust-ad
search .

##### network managers ##################

Installed:

    NetworkManager

Running:

root         678       1  0 03:32 ?        00:00:00 /usr/sbin/NetworkManager --no-daemon

##### NetworkManager info ###############

GENERAL.DEVICE:                         wlx<IF from MAC [IF2]>
GENERAL.TYPE:                           wifi
GENERAL.NM-TYPE:                        NMDeviceWifi
GENERAL.DBUS-PATH:                      /org/freedesktop/NetworkManager/Devices/3
GENERAL.VENDOR:                         Realtek Semiconductor Corp.
GENERAL.PRODUCT:                        RTL8188CUS 802.11n WLAN Adapter
GENERAL.DRIVER:                         rtl8192cu
GENERAL.DRIVER-VERSION:                 5.15.0-56-generic
GENERAL.FIRMWARE-VERSION:               N/A
GENERAL.HWADDR:                         <MAC 'wlx<IF from MAC [IF2]>' [IF2]>
GENERAL.MTU:                            1500
GENERAL.STATE:                          100 (connected)
GENERAL.REASON:                         0 (No reason given)
GENERAL.IP4-CONNECTIVITY:               4 (full)
GENERAL.IP6-CONNECTIVITY:               3 (limited)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:13.2/usb2/2-5/2-5:1.0/net/wlx<IF from MAC [IF2]>
GENERAL.PATH:                           pci-0000:00:13.2-usb-0:5:1.0
GENERAL.IP-IFACE:                       wlx<IF from MAC [IF2]>
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                     yes
GENERAL.AUTOCONNECT:                    yes
GENERAL.FIRMWARE-MISSING:               no
GENERAL.NM-PLUGIN-MISSING:              no
GENERAL.PHYS-PORT-ID:                   --
GENERAL.CONNECTION:                     dom
GENERAL.CON-UUID:                       4ab48e32-5569-4184-9593-4aaacfd5d68b
GENERAL.CON-PATH:                       /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.METERED:                        no (guessed)
CAPABILITIES.CARRIER-DETECT:            no
CAPABILITIES.SPEED:                     150 Mb/s
CAPABILITIES.IS-SOFTWARE:               no
CAPABILITIES.SRIOV:                     no
INTERFACE-FLAGS.UP:                     yes
INTERFACE-FLAGS.LOWER-UP:               yes
INTERFACE-FLAGS.CARRIER:                yes
INTERFACE-FLAGS.PROMISC:                no
WIFI-PROPERTIES.WEP:                    yes
WIFI-PROPERTIES.WPA:                    yes
WIFI-PROPERTIES.WPA2:                   yes
WIFI-PROPERTIES.TKIP:                   yes
WIFI-PROPERTIES.CCMP:                   yes
WIFI-PROPERTIES.AP:                     yes
WIFI-PROPERTIES.ADHOC:                  yes
WIFI-PROPERTIES.2GHZ:                   yes
WIFI-PROPERTIES.5GHZ:                   no
WIFI-PROPERTIES.MESH:                   yes
WIFI-PROPERTIES.IBSS-RSN:               yes
IP4.ADDRESS[1]:                         192.168.0.100/24
IP4.GATEWAY:                            192.168.0.1
IP4.ROUTE[1]:                           dst = 192.168.0.0/24, nh = 0.0.0.0, mt = 600
IP4.ROUTE[2]:                           dst = 169.254.0.0/16, nh = 0.0.0.0, mt = 1000
IP4.ROUTE[3]:                           dst = 0.0.0.0/0, nh = 192.168.0.1, mt = 600
IP4.DNS[1]:                             192.168.0.1
DHCP4.OPTION[1]:                        dhcp_lease_time = 7200
DHCP4.OPTION[2]:                        dhcp_server_identifier = 192.168.0.1
DHCP4.OPTION[3]:                        domain_name_servers = 192.168.0.1
DHCP4.OPTION[4]:                        expiry = 1680924744
DHCP4.OPTION[5]:                        ip_address = 192.168.0.100
DHCP4.OPTION[6]:                        requested_broadcast_address = 1
DHCP4.OPTION[7]:                        requested_domain_name = 1
DHCP4.OPTION[8]:                        requested_domain_name_servers = 1
DHCP4.OPTION[9]:                        requested_domain_search = 1
DHCP4.OPTION[10]:                       requested_host_name = 1
DHCP4.OPTION[11]:                       requested_interface_mtu = 1
DHCP4.OPTION[12]:                       requested_ms_classless_static_routes = 1
DHCP4.OPTION[13]:                       requested_nis_domain = 1
DHCP4.OPTION[14]:                       requested_nis_servers = 1
DHCP4.OPTION[15]:                       requested_ntp_servers = 1
DHCP4.OPTION[16]:                       requested_rfc3442_classless_static_routes = 1
DHCP4.OPTION[17]:                       requested_root_path = 1
DHCP4.OPTION[18]:                       requested_routers = 1
DHCP4.OPTION[19]:                       requested_static_routes = 1
DHCP4.OPTION[20]:                       requested_subnet_mask = 1
DHCP4.OPTION[21]:                       requested_time_offset = 1
DHCP4.OPTION[22]:                       requested_wpad = 1
DHCP4.OPTION[23]:                       routers = 192.168.0.1
DHCP4.OPTION[24]:                       subnet_mask = 255.255.255.0
IP6.ADDRESS[1]:                         fe80::<IP6 'wlx<IF from MAC [IF2]>' [IF2]>/64
IP6.GATEWAY:                            --
IP6.ROUTE[1]:                           dst = fe80::/64, nh = ::, mt = 256
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/2
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:   4ab48e32-5569-4184-9593-4aaacfd5d68b | dom

GENERAL.DEVICE:                         p2p-dev-wlx<IF from MAC [IF2]>
GENERAL.TYPE:                           wifi-p2p
GENERAL.NM-TYPE:                        NMDeviceWifiP2P
GENERAL.DBUS-PATH:                      /org/freedesktop/NetworkManager/Devices/4
GENERAL.VENDOR:                         --
GENERAL.PRODUCT:                        --
GENERAL.DRIVER:                         (unknown)
GENERAL.DRIVER-VERSION:                 --
GENERAL.FIRMWARE-VERSION:               --
GENERAL.HWADDR:                         (unknown)
GENERAL.MTU:                            0
GENERAL.STATE:                          30 (disconnected)
GENERAL.REASON:                         0 (No reason given)
GENERAL.IP4-CONNECTIVITY:               1 (none)
GENERAL.IP6-CONNECTIVITY:               1 (none)
GENERAL.UDI:                            /virtual/device/placeholder/1
GENERAL.PATH:                           --
GENERAL.IP-IFACE:                       --
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                     yes
GENERAL.AUTOCONNECT:                    yes
GENERAL.FIRMWARE-MISSING:               no
GENERAL.NM-PLUGIN-MISSING:              no
GENERAL.PHYS-PORT-ID:                   --
GENERAL.CONNECTION:                     --
GENERAL.CON-UUID:                       --
GENERAL.CON-PATH:                       --
GENERAL.METERED:                        unknown
CAPABILITIES.CARRIER-DETECT:            no
CAPABILITIES.SPEED:                     unknown
CAPABILITIES.IS-SOFTWARE:               no
CAPABILITIES.SRIOV:                     no
INTERFACE-FLAGS.UP:                     no
INTERFACE-FLAGS.LOWER-UP:               no
INTERFACE-FLAGS.CARRIER:                no
INTERFACE-FLAGS.PROMISC:                no
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --

GENERAL.DEVICE:                         enp2s0
GENERAL.TYPE:                           ethernet
GENERAL.NM-TYPE:                        NMDeviceEthernet
GENERAL.DBUS-PATH:                      /org/freedesktop/NetworkManager/Devices/2
GENERAL.VENDOR:                         Realtek Semiconductor Co., Ltd.
GENERAL.PRODUCT:                        RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (Motherboard (one of many))
GENERAL.DRIVER:                         r8169
GENERAL.DRIVER-VERSION:                 5.15.0-56-generic
GENERAL.FIRMWARE-VERSION:               --
GENERAL.HWADDR:                         <MAC 'enp2s0' [IF1]>
GENERAL.MTU:                            1500
GENERAL.STATE:                          20 (unavailable)
GENERAL.REASON:                         2 (Device is now managed)
GENERAL.IP4-CONNECTIVITY:               1 (none)
GENERAL.IP6-CONNECTIVITY:               1 (none)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:0a.0/0000:02:00.0/net/enp2s0
GENERAL.PATH:                           pci-0000:02:00.0
GENERAL.IP-IFACE:                       --
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                     yes
GENERAL.AUTOCONNECT:                    yes
GENERAL.FIRMWARE-MISSING:               no
GENERAL.NM-PLUGIN-MISSING:              no
GENERAL.PHYS-PORT-ID:                   --
GENERAL.CONNECTION:                     --
GENERAL.CON-UUID:                       --
GENERAL.CON-PATH:                       --
GENERAL.METERED:                        unknown
CAPABILITIES.CARRIER-DETECT:            yes
CAPABILITIES.SPEED:                     unknown
CAPABILITIES.IS-SOFTWARE:               no
CAPABILITIES.SRIOV:                     no
INTERFACE-FLAGS.UP:                     yes
INTERFACE-FLAGS.LOWER-UP:               no
INTERFACE-FLAGS.CARRIER:                no
INTERFACE-FLAGS.PROMISC:                no
WIRED-PROPERTIES.CARRIER:               off
IP4.GATEWAY:                            --
IP6.GATEWAY:                            --
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --

SSID                            BSSID              MODE   CHAN  FREQ      RATE        SIGNAL  BARS  SECURITY     ACTIVE  IN-USE
INEA-0358_2.4G                  <MAC 'INEA-0358_2.4G' [AC4]>  Infra  9     2452 MHz  130 Mbit/s  100     ▂▄▆█  WPA1 WPA2    no            
dom                             <MAC 'dom' [AC3]>  Infra  6     2437 MHz  135 Mbit/s  90      ▂▄▆█  WPA1 WPA2    yes     *     
DIRECT-ba-HP M15 LaserJet       <MAC 'DIRECT-ba-HP M15 LaserJet' [AC2]>  Infra  6     2437 MHz  65 Mbit/s   77      ▂▄▆_  WPA2         no            
prosstem_700lecia               <MAC 'prosstem_700lecia' [AC1]>  Infra  1     2412 MHz  54 Mbit/s   60      ▂▄▆_  --           no            
Thom_D006641                    <MAC 'Thom_D006641' [AC8]>  Infra  1     2412 MHz  54 Mbit/s   57      ▂▄▆_  WPA1 WPA2    no            
UPC246815260                    <MAC 'UPC246815260' [AC5]>  Infra  11    2462 MHz  130 Mbit/s  54      ▂▄__  WPA2         no            
Wi-Free #InternetUPCNajszybszy  <MAC 'Wi-Free #InternetUPCNajszybszy' [AC6]>  Infra  11    2462 MHz  130 Mbit/s  54      ▂▄__  WPA2 802.1X  no            
UPC25DB26E                      <MAC 'UPC25DB26E' [AC7]>  Infra  11    2462 MHz  130 Mbit/s  54      ▂▄__  WPA1 WPA2    no            
UPC249363938                    <MAC 'UPC249363938' [AC9]>  Infra  6     2437 MHz  130 Mbit/s  44      ▂▄__  WPA2         no            
--                              <MAC '' [AC10]>  Infra  10    2457 MHz  270 Mbit/s  40      ▂▄__  WPA2         no            

##### NetworkManager.state ##############

[main]
NetworkingEnabled=true
WirelessEnabled=true
WWANEnabled=true

##### NetworkManager config #############

[[/etc/NetworkManager/conf.d/default-wifi-powersave-on.conf]]
[connection]
wifi.powersave = 3

[[/etc/NetworkManager/NetworkManager.conf]]
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=false
[device]
wifi.scan-rand-mac-address=no

[[/usr/lib/NetworkManager/conf.d/10-dns-resolved.conf]]
[main]
dns=systemd-resolved

[[/usr/lib/NetworkManager/conf.d/10-globally-managed-devices.conf]]
[keyfile]
unmanaged-devices=*,except:type:wifi,except:type:gsm,except:type:cdma

[[/usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf]]
[connectivity]
uri=http://connectivity-check.ubuntu.com./

[[/usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf]]
[device-31-mac-addr-change]
match-device=driver:eagle_sdio,driver:wl
wifi.scan-rand-mac-address=no

##### NetworkManager profiles ###########

[[/etc/NetworkManager/system-connections/Automatyczne UPC249363938.nmconnection]] (600 root)
[connection] id=Automatyczne UPC249363938 | type=wifi
[wifi] ssid=UPC249363938
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/dom.nmconnection]] (600 root)
[connection] id=dom | type=wifi
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF2]>' [IF2]> | ssid=dom
[ipv4] method=auto
[ipv6] method=ignore

##### Netplan config ####################

[/etc/netplan/1-network-manager-all.yaml]
network:
  version: 2
  renderer: NetworkManager

##### iw reg get ########################

Region: Europe/Warsaw (based on set time zone)

global
country PL: DFS-ETSI
    (2400 - 2483 @ 40), (N/A, 20), (N/A)
    (5150 - 5250 @ 80), (N/A, 23), (N/A), NO-OUTDOOR, AUTO-BW
    (5250 - 5350 @ 80), (N/A, 20), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
    (5470 - 5725 @ 160), (N/A, 26), (0 ms), DFS
    (5725 - 5875 @ 80), (N/A, 13), (N/A)
    (5945 - 6425 @ 160), (N/A, 23), (N/A), NO-OUTDOOR
    (57000 - 66000 @ 2160), (N/A, 40), (N/A)

phy#0
country 99: DFS-UNSET
    (2402 - 2472 @ 40), (N/A, 20), (N/A)
    (2457 - 2482 @ 40), (N/A, 20), (N/A), PASSIVE-SCAN
    (5140 - 5360 @ 80), (N/A, 30), (N/A)
    (5460 - 5860 @ 80), (N/A, 30), (N/A)

##### iwlist channels ###################

lo        no frequency information.

enp2s0    no frequency information.

wlx<IF from MAC [IF2]>  13 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Channel 12 : 2.467 GHz
          Channel 13 : 2.472 GHz
          Current Frequency:2.437 GHz (Channel 6)

##### iwlist scan #######################

lo        Interface doesn't support scanning.

enp2s0    Interface doesn't support scanning.

Channel occupancy:

      3   APs on   Frequency:2.412 GHz (Channel 1)
      3   APs on   Frequency:2.437 GHz (Channel 6)
      1   APs on   Frequency:2.452 GHz (Channel 9)
      2   APs on   Frequency:2.457 GHz (Channel 10)
      3   APs on   Frequency:2.462 GHz (Channel 11)

wlx<IF from MAC [IF2]>  Scan completed :
          Cell 01 - Address: <MAC 'prosstem_700lecia' [AC1]>
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=38/70  Signal level=-72 dBm 
                    Encryption key:off
                    ESSID:"prosstem_700lecia"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                              11 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=00000001e4763152
                    Extra: Last beacon: 4076ms ago
          Cell 02 - Address: <MAC 'DIRECT-ba-HP M15 LaserJet' [AC2]>
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=52/70  Signal level=-58 dBm 
                    Encryption key:on
                    ESSID:"DIRECT-ba-HP M15 LaserJet"
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=00000412bee9b696
                    Extra: Last beacon: 64ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 03 - Address: <MAC 'dom' [AC3]>
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=64/70  Signal level=-46 dBm 
                    Encryption key:on
                    ESSID:"dom"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=00000087b337f60a
                    Extra: Last beacon: 64ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 04 - Address: <MAC 'INEA-0358_2.4G' [AC4]>
                    Channel:9
                    Frequency:2.452 GHz (Channel 9)
                    Quality=70/70  Signal level=-15 dBm 
                    Encryption key:on
                    ESSID:"INEA-0358_2.4G"
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=00000155ed0dc7a6
                    Extra: Last beacon: 64ms ago
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : TKIP CCMP
                        Authentication Suites (1) : PSK
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : TKIP CCMP
                        Authentication Suites (1) : PSK
          Cell 05 - Address: <MAC 'UPC246815260' [AC5]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=42/70  Signal level=-68 dBm 
                    Encryption key:on
                    ESSID:"UPC246815260"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=0000008740aa7855
                    Extra: Last beacon: 64ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
          Cell 06 - Address: <MAC 'Wi-Free #InternetUPCNajszybszy' [AC6]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=40/70  Signal level=-70 dBm 
                    Encryption key:on
                    ESSID:"Wi-Free #InternetUPCNajszybszy"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                              18 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=000012ab6dd0d8fc
                    Extra: Last beacon: 792ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : 802.1x
          Cell 07 - Address: <MAC 'UPC25DB26E' [AC7]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=40/70  Signal level=-70 dBm 
                    Encryption key:on
                    ESSID:"UPC25DB26E"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                              18 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=000012ab6dcf48e9
                    Extra: Last beacon: 796ms ago
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : Proprietary Proprietary
                        Authentication Suites (1) : PSK
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
          Cell 08 - Address: <MAC 'Thom_D006641' [AC8]>
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=44/70  Signal level=-66 dBm 
                    Encryption key:on
                    ESSID:"Thom_D006641"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=00000125d525cb46
                    Extra: Last beacon: 7972ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
          Cell 09 - Address: <MAC 'UPC249363938' [AC9]>
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=36/70  Signal level=-74 dBm 
                    Encryption key:on
                    ESSID:"UPC249363938"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=000000e12f60218d
                    Extra: Last beacon: 180ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
          Cell 10 - Address: <MAC '' [AC10]>
                    Channel:10
                    Frequency:2.457 GHz (Channel 10)
                    Quality=34/70  Signal level=-76 dBm 
                    Encryption key:on
                    ESSID:""
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                              11 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=00000020507dd199
                    Extra: Last beacon: 5808ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 11 - Address: <MAC 'FunBox2-83A9' [AC11]>
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=46/70  Signal level=-64 dBm 
                    Encryption key:on
                    ESSID:"FunBox2-83A9"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=0000006918e2e1a3
                    Extra: Last beacon: 64ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
          Cell 12 - Address: <MAC 'HUAWEI_B535_478621' [AC12]>
                    Channel:10
                    Frequency:2.457 GHz (Channel 10)
                    Quality=38/70  Signal level=-72 dBm 
                    Encryption key:on
                    ESSID:"HUAWEI_B535_478621"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                              11 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000002050bac199
                    Extra: Last beacon: 1764ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK

##### module infos ######################

[rtl8xxxu]
filename:       /lib/modules/5.15.0-56-generic/kernel/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.ko
license:        GPL
description:    RTL8XXXu USB mac80211 Wireless LAN Driver
depends:        mac80211,cfg80211
retpoline:      Y
intree:         Y
name:           rtl8xxxu
vermagic:       5.15.0-56-generic SMP mod_unload modversions
parm:           debug:Set debug mask (int)
parm:           ht40_2g:Enable HT40 support on the 2.4GHz band (bool)
parm:           dma_aggregation:Enable DMA packet aggregation (bool)
parm:           dma_agg_timeout:Set DMA aggregation timeout (range 1-127) (int)
parm:           dma_agg_pages:Set DMA aggregation pages (range 1-127, 0 to disable) (int)

[rtl8192cu]
filename:       /lib/modules/5.15.0-56-generic/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rtl8192cu.ko
description:    Realtek 8192C/8188C 802.11n USB wireless
license:        GPL
depends:        mac80211,rtlwifi,rtl8192c-common,rtl_usb
retpoline:      Y
intree:         Y
name:           rtl8192cu
vermagic:       5.15.0-56-generic SMP mod_unload modversions
parm:           swenc:Set to 1 for software crypto (default 0)
parm:           debug_level:Set debug level (0-5) (default 0) (int)
parm:           debug_mask:Set debug mask (default 0) (ullong)

[rtl_usb]
filename:       /lib/modules/5.15.0-56-generic/kernel/drivers/net/wireless/realtek/rtlwifi/rtl_usb.ko
description:    USB basic driver for rtlwifi
license:        GPL
depends:        mac80211,rtlwifi
retpoline:      Y
intree:         Y
name:           rtl_usb
vermagic:       5.15.0-56-generic SMP mod_unload modversions

[rtl8192c_common]
filename:       /lib/modules/5.15.0-56-generic/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common.ko
description:    Realtek 8192C/8188C 802.11n PCI wireless
license:        GPL
depends:        rtlwifi
retpoline:      Y
intree:         Y
name:           rtl8192c_common
vermagic:       5.15.0-56-generic SMP mod_unload modversions

[rtlwifi]
filename:       /lib/modules/5.15.0-56-generic/kernel/drivers/net/wireless/realtek/rtlwifi/rtlwifi.ko
description:    Realtek 802.11n PCI wireless core
license:        GPL
depends:        mac80211,cfg80211
retpoline:      Y
intree:         Y
name:           rtlwifi
vermagic:       5.15.0-56-generic SMP mod_unload modversions

[mac80211]
filename:       /lib/modules/5.15.0-56-generic/kernel/net/mac80211/mac80211.ko
license:        GPL
description:    IEEE 802.11 subsystem
depends:        cfg80211,libarc4
retpoline:      Y
intree:         Y
name:           mac80211
vermagic:       5.15.0-56-generic SMP mod_unload modversions
parm:           minstrel_vht_only:Use only VHT rates when VHT is supported by sta. (bool)
parm:           max_nullfunc_tries:Maximum nullfunc tx tries before disconnecting (reason 4). (int)
parm:           max_probe_tries:Maximum probe tries before disconnecting (reason 4). (int)
parm:           beacon_loss_count:Number of beacon intervals before we decide beacon was lost. (int)
parm:           probe_wait_ms:Maximum time(ms) to wait for probe response before disconnecting (reason 4). (int)
parm:           ieee80211_default_rc_algo:Default rate control algorithm for mac80211 to use (charp)

[cfg80211]
filename:       /lib/modules/5.15.0-56-generic/kernel/net/wireless/cfg80211.ko
description:    wireless configuration support
license:        GPL
depends:       
retpoline:      Y
intree:         Y
name:           cfg80211
vermagic:       5.15.0-56-generic SMP mod_unload modversions
parm:           bss_entries_limit:limit to number of scan BSS entries (per wiphy, default 1000) (int)
parm:           ieee80211_regdom:IEEE 802.11 regulatory domain code (charp)
parm:           cfg80211_disable_40mhz_24ghz:Disable 40MHz support in the 2.4GHz band (bool)

##### module parameters #################

grep: /sys/module/rtl8xxxu/parameters/debug: Permission denied
grep: /sys/module/rtl8xxxu/parameters/dma_agg_pages: Permission denied
grep: /sys/module/rtl8xxxu/parameters/dma_aggregation: Permission denied
grep: /sys/module/rtl8xxxu/parameters/dma_agg_timeout: Permission denied
grep: /sys/module/rtl8xxxu/parameters/ht40_2g: Permission denied
[rtl8xxxu]

[rtl8192cu]
debug_level: 0
debug_mask: 0
swenc: N

[mac80211]
beacon_loss_count: 7
ieee80211_default_rc_algo: minstrel_ht
max_nullfunc_tries: 2
max_probe_tries: 5
minstrel_vht_only: Y
probe_wait_ms: 500

[cfg80211]
bss_entries_limit: 1000
cfg80211_disable_40mhz_24ghz: N
ieee80211_regdom: 00

##### /etc/modules ######################

##### modprobe options ##################

[/etc/modprobe.d/amd64-microcode-blacklist.conf]
blacklist microcode

[/etc/modprobe.d/blacklist-ath_pci.conf]
blacklist ath_pci

[/etc/modprobe.d/blacklist.conf]
blacklist evbug
blacklist usbmouse
blacklist usbkbd
blacklist eepro100
blacklist de4x5
blacklist eth1394
blacklist snd_intel8x0m
blacklist snd_aw2
blacklist prism54
blacklist bcm43xx
blacklist garmin_gps
blacklist asus_acpi
blacklist snd_pcsp
blacklist pcspkr
blacklist amd76x_edac

[/etc/modprobe.d/blacklist-rare-network.conf]
alias net-pf-3 off
alias net-pf-6 off
alias net-pf-9 off
alias net-pf-11 off
alias net-pf-12 off
alias net-pf-19 off
alias net-pf-21 off
alias net-pf-36 off

[/etc/modprobe.d/intel-microcode-blacklist.conf]
blacklist microcode

[/etc/modprobe.d/iwlwifi.conf]
remove iwlwifi \
(/sbin/lsmod | grep -o -e ^iwlmvm -e ^iwldvm -e ^iwlwifi | xargs /sbin/rmmod) \
&& /sbin/modprobe -r mac80211

##### rc.local ##########################

grep: /etc/rc.local: No such file or directory

##### pm-utils ##########################

##### udev rules ########################

##### dmesg #############################

[   14.964339] rtl8192cu: Chip version 0x10
[   15.063941] rtl8192cu: Board Type 0
[   15.064184] rtl_usb: rx_max_size 15360, rx_urb_num 8, in_ep 1
[   15.064210] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw_TMSC.bin
[   15.064696] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[   15.279835] rtl8192cu 2-5:1.0 wlx<IF from MAC [IF2]>: renamed from wlan0
[   22.618723] r8169 0000:02:00.0 enp2s0: Link is Down
[   22.629813] rtl8192cu: MAC auto ON okay!
[   22.667049] rtl8192cu: Tx queue select: 0x05
[   25.221396] wlx<IF from MAC [IF2]>: authenticate with <MAC 'dom' [AC3]>
[   25.250005] wlx<IF from MAC [IF2]>: send auth to <MAC 'dom' [AC3]> (try 1/3)
[   25.252487] wlx<IF from MAC [IF2]>: authenticated
[   25.254692] wlx<IF from MAC [IF2]>: associate with <MAC 'dom' [AC3]> (try 1/3)
[   25.276218] wlx<IF from MAC [IF2]>: RX AssocResp from <MAC 'dom' [AC3]> (capab=0x31 status=0 aid=3)
[   25.537300] wlx<IF from MAC [IF2]>: associated
[   26.442837] IPv6: ADDRCONF(NETDEV_CHANGE): wlx<IF from MAC [IF2]>: link becomes ready
[   39.819913] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084 failed with error -2
[   39.819943] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084d failed with error -2
[   39.819946] nouveau 0000:01:00.0: msvld: unable to load firmware data
[   39.984314] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084 failed with error -2
[   39.984346] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084d failed with error -2
[   39.984349] nouveau 0000:01:00.0: msvld: unable to load firmware data
[   51.324409] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084 failed with error -2
[   51.324444] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084d failed with error -2
[   51.324447] nouveau 0000:01:00.0: msvld: unable to load firmware data
[   51.388049] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084 failed with error -2
[   51.388077] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084d failed with error -2
[   51.388080] nouveau 0000:01:00.0: msvld: unable to load firmware data
[  102.680172] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084 failed with error -2
[  102.680201] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084d failed with error -2
[  102.680204] nouveau 0000:01:00.0: msvld: unable to load firmware data
[  105.463620] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084 failed with error -2
[  105.463653] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084d failed with error -2
[  105.463656] nouveau 0000:01:00.0: msvld: unable to load firmware data
[  106.976580] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084 failed with error -2
[  106.976613] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084d failed with error -2
[  106.976617] nouveau 0000:01:00.0: msvld: unable to load firmware data
[  107.525054] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084 failed with error -2
[  107.525089] nouveau 0000:01:00.0: Direct firmware load for nouveau/nva5_fuc084d failed with error -2
[  107.525092] nouveau 0000:01:00.0: msvld: unable to load firmware data

########## wireless info END ############

Dodano po pewnym czasie:
Problem chyba rozwiązany. Zmieniłem kernel na 5.19


  Problem z montowaniem USB
Napisane przez: Pawel_SP5SMY - 07-04-2023, 21:17 - Forum: Software - Odpowiedzi (6)

Formatuję pendrive na EXT4 za pomocą programu. Pokazanego na obrazku.
Ładnie się formatuje. Nie wyświetla żadnych błędów.
Po sformatowaniu system go nie montuje pokazuje taki komunikat jak na obrazku.
[Obrazek: USB.jpg]


  Jak skonfigurować kamerę USB w Mini Dlna
Napisane przez: Pawel_SP5SMY - 07-04-2023, 18:39 - Forum: Software - Brak odpowiedzi

Kod:
Fragment kodu /etc/minidlna.con
# media_dir=PV,/var/lib/minidlna/digital_camera)


Co wpisać, żeby zobaczyć obraz z kamery?