prompt
stringlengths
1
63.6k
completion
stringlengths
1
53.1k
Are MX-Linux packages really 100% debianized and can be used without any issues under a pure Debian Buster edition, for example Firefox non-ESR? If yes how should be done this right?. Thank you.
Wait for stevepusser to confirm but I think so, yes. They build all their packages in a buster-based chroot, AFAIUI. But be aware that their non-ESR FF package isn't compiled with --enable-alsa so will need either PulseAudio or apulse for sound to work. And they don't disable "user studies" (embedded spyware), unlike Debian's firefox-esr package. There may be other differences.
Hey, on a new install of Debian on old computer I have a very recurent problem : the hour time isn't set right. While NTP is installed, I have to do Code: Select allsystemctl restart ntp to get it to be updated everytime. On old computers this is very troublesom, as they lose the date at every reboot. Is there something I can do (update something in the ntp.service to make it trigger at the right timing or something ?) Thanks
Get rid of the ntp package and use this instead: Code: Select alltimedatectl set-ntp on ^ That enables systemd-timesyncd.service.
I am running Bullseye. I had to modify the kernel module psmouse.ko to work with my touchpad. Being new at this, I couldn't figure out how to get the module to load automatically, so I recompiled the entire kernel. Everything works well, however I'm not sure when my next update/upgrade is going to replace the kernel. I'd like to "hold" my current kernel. After some searching, I think the following will work, but I want to check with some people that actually know what they are doing. My compiled kernel Code: Select alljohn@pink:~$ uname -r 5.4.8 A list of installed packages starting with "linux-" Code: Select alljohn@pink:~$ dpkg -l | grep linux- ii binutils-x86-64-linux-gnu 2.33.1-6 amd64 GNU binary utilities, for x86-64-linux-gnu target ii firmware-linux-free 20200122-1 all Binary firmware for various drivers in the Linux kernel ii linux-base 4.6 all Linux image base package ii linux-compiler-gcc-9-x86 5.4.19-1 amd64 Compiler for Linux on x86 (meta-package) ii linux-config-5.4:amd64 5.4.19-1 amd64 Debian kernel configurations for Linux 5.4 ii linux-headers-5.4.0-2-all-amd64 5.4.8-1 amd64 All header files for Linux 5.4 (meta-package) ii linux-headers-5.4.0-2-amd64 5.4.8-1 amd64 Header files for Linux 5.4.0-2-amd64 ii linux-headers-5.4.0-2-cloud-amd64 5.4.8-1 amd64 Header files for Linux 5.4.0-2-cloud-amd64 ii linux-headers-5.4.0-2-common 5.4.8-1 all Common header files for Linux 5.4.0-2 ii linux-headers-5.4.0-2-common-rt 5.4.8-1 all Common header files for Linux 5.4.0-2-rt ii linux-headers-5.4.0-2-rt-amd64 5.4.8-1 amd64 Header files for Linux 5.4.0-2-rt-amd64 ii linux-image-5.4.0-2-amd64 5.4.8-1 amd64 Linux 5.4 for 64-bit PCs (signed) ii linux-image-5.4.8 5.4.8-1 amd64 Linux kernel, version 5.4.8 ii linux-image-amd64 5.4.8-1 amd64 Linux for 64-bit PCs (meta-package) ii linux-kbuild-5.4 5.4.19-1 amd64 Kbuild infrastructure for Linux 5.4 ii linux-libc-dev:amd64 5.4.19-1 amd64 Linux support headers for userspace development ii linux-source 5.4.19-1 all Linux kernel source (meta-package) ii linux-source-5.4 5.4.19-1 all Linux kernel source for version 5.4 with Debian patches ii util-linux-locales 2.34-0.1 all locales files for util-linux And this is what I think may work: Code: Select allsudo apt-mark hold linux-image-amd64 Any advice, corrections or help will be greatly appreciated! Thanks!!
Can set modules you want to auto-load in the /etc/modules file. Just add 1 per line and you don't need the .ko part. Just a FYI, someone can also black list modules they want to prevent from loading in /etc/modprobe.d files. Should/could already be some example .conf files there which make how to use this self explanatory. Oops, just to anal, which installed kernel that boots can be choisen in /etc/default/grub file. Rather than trying to type it out on this phone keyboard just Google it. Be sure to always run the "sudo update-grub" command in terminal after editing that file. It says that prominently in the file itself though too.
I am sorry to have to appeal for more help to get my cron/anacron jobs to execute. But even the simplest script, written as a test, fails, and I have been round in circles and more in attempts to get them to run - without success. I guess that there may be something wrong with my attempts to write a script, or something to do with the path to the scripts. But I am at a loss, so I hope that some kind soul will come to my assistance. I am attempting to get a script to run in cron.daily. The script is supposed to just echo "hello world" to an output file in my Documents directory. It works fine when I run it from the command line, but not from within cron.daily nor cron.weekly. I have made sure that I have avoided some basic errors : the name does not contain any forbidden characters(., etc), the laptop runs on mains power, the script has execute permission. I put a full PATH statement within the script. (Previously on advice from forum members I created an .xsessionrc file and included a PATH statement.) Despite all this, the scripts will not run as cron jobs. Thus using run-parts --report /etc/cron.daily I get the output ... sudo run-parts --report /etc/cron.daily /etc/cron.daily/HiWorld: run-parts: failed to exec /etc/cron.daily/HiWorld: No such file or directory run-parts: /etc/cron.daily/HiWorld exited with return code 1. So it appears that the system scripts (0anacron,dpkg, passwd, aptitude and so on) are running successfully, but mine is not. I have tried placing the script in ~/bin, /bin, usr/bin, all to no avail. The simple script is ...... Code: Select allbin/sh set -e PATH=/usr/local/bin:/usr/bin:/bin:~/bin echo "hello world" > /home/drtjpike/Documents/TestHiW 2>&1 Please can someone help and point out my (no doubt stupid) error and show me how to get the cron jobs working? Tom. (Note I am running Debian 10 with the Cinnamon desktop.)
You should post the actual {ana,}cron job as well as the script. And call the full paths rather than relying on PATH. Also, the shebang at the top of the script is wrong — it should be Code: Select all#!/bin/sh Anyway I would use a systemd .timer unit instead, they're much simpler to configure and check and also more flexible (IMO).
I searched this forum for postings referring to Conky-Manager, but here are only older postings. Is there a newer version for Conky-Manager running under Debian Buster? What are alternative System-Monitors for Plasma 5? Thank you very much.
I have used the Simple System Monitor plasmoid in the past.
Hi, for some time, gimp doesn't start. If I try to start it by terminal, the system return me this error Code: Select all$ gimp gimp: /usr/local/lib/libbabl-0.1.so.0: no version information available (required by gimp) gimp: /usr/local/lib/libbabl-0.1.so.0: no version information available (required by /usr/lib/libgimpwidgets-2.0.so.0) gimp: /usr/local/lib/libbabl-0.1.so.0: no version information available (required by /usr/lib/libgimpcolor-2.0.so.0) gimp: /usr/local/lib/libbabl-0.1.so.0: no version information available (required by /usr/lib/x86_64-linux-gnu/libgegl-0.4.so.0) gimp: /usr/local/lib/libbabl-0.1.so.0: no version information available (required by /usr/lib/x86_64-linux-gnu/libgegl-npd-0.4.so) gimp: relocation error: /usr/lib/x86_64-linux-gnu/libgegl-0.4.so.0: symbol babl_get_model_flags version V0_1_0 not defined in file libbabl-0.1.so.0 with link time reference How can I fix the problem? Thanks EDIT Could it be a deb-multimedia package? Now deb-multimedia's repo is not active, but it was active in the past
capcla wrote:Could it be a deb-multimedia package? Yes. Restore your system from the backup you made before wrecking it with deb-multimedia.
Debian Bullseye. Packages: ufw 0.36-1 and Iptables 1.8.4-2 ############### Hello everybody! Ufw now doesn't work after a package update and if it's enable internet is blocked. While doing a reboot some minutes ago, the PC lost the graphic environment and the internet connection. The screen went black, but by pressing "Ctrl + Alt + F1" I could access a tty and recover the desktop environment using the startx command I checked with cat /var/log/dpkg.log | grep "status installed" the last packages installed and I saw that one of the updated packages was "iptables". In order to test if it was a problem with the firewall I deactivated the ufw firewall interface and everything went back to normal again. With ufw disabled everything works fine again and when doing a reboot the desktop environment appears without using startx, but with ufw enabled I have to activate the X with startx command and the internet connection is blocked. I guess this is an incompatibility between the new version of iptables and the old ufw version in the Debian testing repository. $ iptables --version iptables v1.8.4 (nf_tables) $ ufw --version ufw 0.36 Copyright 2008-2015 Canonical Ltd. If I start ufw it gives an error warning and internet crashes: # ufw enable ERROR: problem running ufw-init iptables-restore: COMMIT expected at line 21 iptables-restore: line 2 failed iptables-restore: line 2 failed ip6tables-restore: COMMIT expected at line 21 ip6tables-restore: line 2 failed ip6tables-restore: line 2 failed Problem running '/etc/ufw/user.rules' Problem running '/etc/ufw/user6.rules' # ufw status Status: active $ ping -c1 google.com ... there is no Internet conection # ufw disable Firewall stopped and disabled on system startup $ ping -c1 google.com ... with ufw disabled there's internet connection I uninstalled ufw by purging the configuration files, reinstalled it again and I get the same error message, but now without the "problem running" warnings. I imagine the problem will be that Debian updated iptables without realizing that ufw would fail, I don't know. All the best!
I had the same issue a couple of weeks ago in Sid. I only installed ufw to easily open ports for Syncthing, but it works fine now anyway after uninstalling ufw.
Last week I had been printing to my HP 2420 laser printer from Writer without any issues. Today I'm unable to print from Writer as I had been able to do. I am getting fonts are all garbled, see URL below. It seems to be happening with only LibreOffice Writer. Calc, Draw prints ok. Websites print ok from FireFox. Eric prints texts ok. So does Notepad. The font is times new roman. No hardware or software changes have been made, upgrade, dist-upgrades etc. I'm trying to resolve without doing a microsoft solution of rebooting. https://imgur.com/uBQG5wz
Try renaming ~/.config/libreoffice . Then open LibreOffce and try printing again. If this works the problem was something you did inadvertently. If not you can rename the file again and put it back where it was.
Hi. New problem. My laptop mic it's not recording or capturing any sound. Code: Select all$ cat /proc/asound/cards 0 [PCH ]: HDA-Intel - HDA Intel PCH HDA Intel PCH at 0xf7c10000 irq 33 Code: Select all$ arecord -l **** List of CAPTURE Hardware Devices **** card 0: PCH [HDA Intel PCH], device 0: ALC892 Analog [ALC892 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 card 0: PCH [HDA Intel PCH], device 2: ALC892 Alt Analog [ALC892 Alt Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 Then I try to record some sound by: Code: Select all$ arecord -d 10 -v testSound.wav Recording WAVE 'testSound.wav' : Unsigned 8 bit, Rate 8000 Hz, Mono ALSA <-> PulseAudio PCM I/O Plugin Its setup is: stream : CAPTURE access : RW_INTERLEAVED format : U8 subformat : STD channels : 1 rate : 8000 exact rate : 8000 (8000/1) msbits : 8 buffer_size : 4000 period_size : 1000 period_time : 125000 tstamp_mode : NONE tstamp_type : GETTIMEOFDAY period_step : 1 avail_min : 1000 period_event : 0 start_threshold : 1 stop_threshold : 4000 silence_threshold: 0 silence_size : 0 boundary : 9007199254740992000 But I get nothing when I try to play the file: Code: Select all$ aplay testSound.wav Playing WAVE 'testSound.wav' : Unsigned 8 bit, Rate 8000 Hz, Mono By the GUI, I can see this: What would be the problem?
Is it a USB or 3.5 mm jack type microphone? If #2, does your laptop have a dedicated mic jack, or is it a dual purpose one like a cell phone has?
Hi, Opening a new port through iptables no longer opens the port. Assuming this probably has somethng to do with iptables merely being a front end now for nftables. The port is open when running iptables -L, but it is not actually open... This is a Debain 10 system that was upgraded from Debain 9. Only ever used iptables.
If a tree falls in the forest and no-one is there to hear it... How do you know it's not 'open' (and how do you define 'open')..
Server with 3 NICs one NIC down. It has been great fun setting up the server but now it's time to ask advice to get further. So I can't figure out why one of the network interface cards won't work. It won't give IP to client PC at LAN. At my home server/router/firewall. Have a Debian Buster installed on older PC. Network topology is thru ISP->LTE router/modem->server->LANs. Have 2 LANs thru 2 NICs. One works one not. Problem could be some setting or hardware. Configuration should be quite straightforward and the third LAN-config is quite a copy of working one. LAN1 is for Home network, Samba Internet etc. LAN2 is open for Guest and CellPhone LAN. That's the plan, but now the current config is just 2 LANs and attempt to get the basics work. Following info is quite a mouth full, but it was not so bad once again to take a closer look at the configuration. Basic hardware is tested and should work despite that certain doubts about that third NIC. --- NICs are: Modem/router with DHCP 192.168.1.1 Primary: server with DHCP, nftables enp4s0 192.168.1.2 LAN1: enp5s0 192.168.10.0 gw 192.168.10.1 LAN2: enp5s2 192.168.20.0 gw 192.168.20.1 Server got the DHCP IP from Modem and it is locked to stay same/static. Server DHCP feeds the LANs and filters the network with nftables. LAN gateway IPs are static. --- Latest Debian Buster root@servu:~# uname -a Linux servu 4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u2 (2019-11-11) x86_64 GNU/Linux --- Server pings ok and another PC too at different (LAN1) 192.168.10.0 network. root@servu:/# ping 192.168.20.1 PING 192.168.20.1 (192.168.20.1) 56(84) bytes of data. 64 bytes from 192.168.20.1: icmp_seq=1 ttl=64 time=0.075 ms --- root@servu:~# ip -br link show lo UNKNOWN 00:00:00:00:00:00 <LOOPBACK,UP,LOWER_UP> enp5s0 UP 00:22:b0:62:31:4f <BROADCAST,MULTICAST,UP,LOWER_UP> enp5s2 UP 00:21:91:8d:42:2c <BROADCAST,MULTICAST,UP,LOWER_UP> enp4s0 UP 00:1c:c0:4e:4b:ce <BROADCAST,MULTICAST,UP,LOWER_UP> --- arp don't find the clinet PC at 192.168.20.0 network. root@servu:/# arp Address HWtype HWaddress Flags Mask Iface 192.168.10.13 ether 04:f1:28:75:2c:09 C enp5s0 nokia6 ether 20:39:56:48:7d:a6 C enp5s0 zyxel ether b8:ec:a3:ec:ef:7f C enp4s0 juhax ether 2c:4d:54:e9:4b:9c C enp5s0 --- root@servu:/# arping -A -I enp5s2 192.168.20.1 ARPING 192.168.20.1 Timeout --- root@servu:/etc# ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 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: enp5s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 link/ether 00:22:b0:62:31:4f brd ff:ff:ff:ff:ff:ff inet 192.168.10.1/24 brd 192.168.10.255 scope global enp5s0 valid_lft forever preferred_lft forever inet6 fe80::222:b0ff:fe62:314f/64 scope link valid_lft forever preferred_lft forever 3: enp5s2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 link/ether 00:21:91:8d:42:2c brd ff:ff:ff:ff:ff:ff inet 192.168.20.1/24 brd 192.168.20.255 scope global enp5s2 valid_lft forever preferred_lft forever inet6 fe80::221:91ff:fe8d:422c/64 scope link valid_lft forever preferred_lft forever 4: enp4s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000 link/ether 00:1c:c0:4e:4b:ce brd ff:ff:ff:ff:ff:ff inet 192.168.1.2/24 brd 192.168.1.255 scope global dynamic enp4s0 valid_lft 74961sec preferred_lft 74961sec inet6 fe80::21c:c0ff:fe4e:4bce/64 scope link valid_lft forever preferred_lft forever --- Routing: root@servu:/etc# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 enp4s0 127.0.0.1 0.0.0.0 255.255.255.255 UH 0 0 0 lo 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 enp4s0 192.168.10.0 0.0.0.0 255.255.255.0 U 0 0 0 enp5s0 192.168.20.0 0.0.0.0 255.255.255.0 U 0 0 0 enp5s2 Tried several routing scenarions which failed. --- Interface settings: root@servu:/etc/network# cat interfaces source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # WAN auto enp4s0 allow-hotplug enp4s0 iface enp4s0 inet dhcp #LAN1 Kotiverkko suojattu ulkopuolisilta auto enp5s0 allow-hotplug enp5s0 iface enp5s0 inet static address 192.168.10.1 netmask 255.255.255.0 network 192.168.10.0 broadcast 192.168.10.255 #LAN2 Avoin ulkopuolisille, vain internet auto enp5s2 allow-hotplug enp5s2 iface enp5s2 inet static address 192.168.20.1 netmask 255.255.255.0 network 192.168.20.0 broadcast 192.168.20.255 --- DHCP Server: root@servu:/etc/dhcp# cat dhcpd.conf # dhcpd.conf # servu Debian buster 18.11.2019, 3.12.2019, 13.1.2020, 18.1.2020 log-facility local7; #log-facility local10; # Kotiverkko 192.168.10.0 vain omaan käyttöön # ei vierailijoille, Zyxel -kytkimen kautta # NIC1 subnet 192.168.10.0 netmask 255.255.255.0 { authoritative; range 192.168.10.150 192.168.10.200; option domain-name-servers 192.168.1.1 , 195.197.54.100 , 195.74.0.47 , 62.121.35.14; option broadcast-address 192.168.10.255; option routers 192.168.10.1; one-lease-per-client true; get-lease-hostnames true; default-lease-time 432000; max-lease-time 864000; } # Vierailija verkko 192.168.20.0 Dlink -kytkimen kautta # NIC2 subnet 192.168.20.0 netmask 255.255.255.0 { authoritative; range 192.168.20.2 192.168.20.100; option domain-name-servers 192.168.1.1 , 195.197.54.100 , 195.74.0.47 , 62.121.35.14; option broadcast-address 192.168.20.255; option routers 192.168.20.1; default-lease-time 360; max-lease-time 720; } # Gateway1, NIC1 host gw1 { hardware ethernet 00:22:b0:62:31:4f; } # Gateway2, NIC2 host gw2 { hardware ethernet 00:21:91:8d:42:2c; } # Zyxel LTE3301 modeemi 192.168.1.1, DefaultGateway host zyxel { hardware ethernet b8:ec:a3:ec:ef:7f; option host-name "zyxel"; } --- tcpdump and dhclient test: root@servu:/etc/dhcp# tcpdump -lni enp5s2 arp tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on enp5s2, link-type EN10MB (Ethernet), capture size 262144 bytes and another PC at 192.168.20.0 network is trying to get IP: root@juha-msi:~#dhclient enp2s0 -v DHCPDISCOVER on enp2s0 to 255.255.255.255 port 67 .... etc... No luck... --- Firewall / NFTables: root@servu:~# nft list ruleset table inet filter { chain input { type filter hook input priority 0; policy drop; iif "lo" accept iif "enp5s0" accept iif "enp5s2" accept ct state established,related accept tcp dport { netbios-ns, netbios-dgm, netbios-ssn, microsoft-ds } accept udp dport { netbios-ns, netbios-dgm, netbios-ssn, microsoft-ds } accept tcp dport { ssh, http, https } accept ip protocol icmp accept ip6 nexthdr ipv6-icmp accept ip protocol igmp accept counter packets 4488 bytes 500585 reject with icmpx type admin-prohibited } chain forward { type filter hook forward priority 0; policy accept; iif "enp5s2" oif "enp4s0" accept } chain output { type filter hook output priority 0; policy accept; } } table ip nat { chain prerouting { type nat hook prerouting priority 0; policy accept; } chain postrouting { type nat hook postrouting priority 0; policy accept; oif "enp4s0" masquerade } } --- var/log/syslog and dmesg did not show any glues I think. --- No errors: >systemctl status networking.service >systemctl status isc-dhcp-server.service >systemctl status resolvconf.service root@servu:~# systemctl --failed 0 loaded units listed. --- >netdiscover Currently scanning: 192.168.47.0/16 | Screen View: Unique Hosts 4 Captured ARP Req/Rep packets, from 4 hosts. Total size: 240 _____________________________________________________________________________ IP At MAC Address Count Len MAC Vendor / Hostname ----------------------------------------------------------------------------- 192.168.10.2 2c:4d:54:e9:4b:9c 1 60 ASUSTek COMPUTER INC. 192.168.10.10 20:39:56:48:7d:a6 1 60 HMD Global Oy 192.168.10.101 00:16:01:0d:2c:fa 1 60 BUFFALO.INC 192.168.10.13 04:f1:28:75:2c:09 1 60 HMD Global Oy --- root@servu:~# ethtool enp5s2 Settings for enp5s2: Supported ports: [ TP MII ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: Not reported Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Advertised pause frame use: Symmetric Advertised auto-negotiation: Yes Advertised FEC modes: Not reported Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Port: MII PHYAD: 1 Transceiver: internal Auto-negotiation: on Supports Wake-on: pumbg Wake-on: d Current message level: 0x00000000 (0) Link detected: yes --- 2020-1-20: edited some typos. --- All help appreciated! /j.
Have you tried to swap cards to rule out hardware problem?
hi, Can anyone point me to the right direction on where I can find ALL available targets of a 'debian/rules' file. This is what I've found in the manuals https://www.debian.org/doc/manuals/debm ... 05.en.html: Code: Select alldh clean : clean files in the source tree. dh build : build the source tree dh build-arch : build the source tree for architecture dependent packages dh build-indep : build the source tree for architecture independent packages dh install : install the binary files to $(DESTDIR) dh install-arch : install the binary files to $(DESTDIR) for architecture dependent packages dh install-indep : install the binary files to $(DESTDIR) for architecture independent packages dh binary : generate the deb file dh binary-arch : generate the deb file for architecture dependent packages dh binary-indep : generate the deb file for architecture independent packages But in man pages of debhelper https://manpages.debian.org/testing/deb ... .1.en.html, there is also an 'override' target for test: 'override_dh_auto_test'. Some other targets I've found while browsing the web: - strip - installchangelogs It seems al targets are squattered all over the manuals and I was wondering where I can find a complete list. thx
Chrisdb wrote:Can anyone point me to the right direction on where I can find ALL available targets of a 'debian/rules' file. Code: Select allapropos "dh_" See also debhelper(7). Chrisdb wrote:there is also an 'override' target for test: 'override_dh_auto_test'. If any of the debhelper commands are prefixed with override_ then the automation will be replaced with whichever commands are listed afterwards.
When I updated the system from debian 9 to 10, after I made a backup with timeshift, I saw a lot of warming in apt, something like: Code: Select allapt 1.5 beta1 unstable; urgency medium Is there a way to see them all? I have done the upgrade by changing the sources.list from stretch (9) to buster (10). After I used: Code: Select allapt update apt-get dist-upgrade Is this the best way? Currently I am using the 5.0.0-19.1-liquorix-amd64 kernel. The update failed to built modules, so I use the terminal to purge the nvidia driver, which I believe to be the problem: Code: Select allapt purge *nvidia (Without kernel modules I cannot use the GUI). After I was able to use the 4.19.0-6 kernel (the one installed from buster), I try to install nvidia driver but it failed. After some attempts I had the message "you held broken packages" and I was not able to use any kernel so I used timeshift and now I am again on stretch.
Scorpion wrote:I have done the upgrade by changing the sources.list from stretch (9) to buster (10). After I used: Code: Select allapt update apt-get dist-upgrade Is this the best way? No, that's not what the official release notes recommend.
Jessie has the same version now as Buster, but Stretch...no. The same applies to rustc and cbindgen. https://packages.debian.org/search?keyw ... ection=all This means that the current Stretch Thunderbird 68.4.1 has build-depends that can not be met in Stretch, which breaks Debian policy. Can any Stretch users file a bug report against this?
Sorry, Steve, I can't help you even though I run Stretch and use Thunderbird. Mine is an appimage, not the Debian version. All I can tell you is that mine is version 68.4.2 (64-bit). I'm wondering if Debian has an update coming for Thunderbird.
Hi all, I'm trying to use GeSpeaker with Mbrola voices, in gnome on Buster. I installed espeak, then gespeaker, then Mbrola. But gespeaker will not launch from the gnome gui (panel). The documentation is sparse at best and it does not cover specific configuration issues or errors as far as I can tell. Does anyone have experience with theses packages in this configuration? If so, can you direct me to useful docs for gespeaker and Mbrola, please? Thank you. -dh
Got it: python dbus error Code: Select allsudo apt install python-dbus worked just fine.
WiFi has been problematic on this laptop lately. It is not the laptop in my signature, but my Lenovo X240 with similar specs. Problem: WiFi takes a long time to connect, if it connects at all. Networking usually works if I turn WiFi off and on again. Sometimes it "connects", but there is no throughput. Pings give 100% package loss. Using Debian Buster with KDE. NetworkManager and wpa_supplicant are enabled. Using NetworkManager plasmoid. I found this in the logs. It is complaining about soft block and a missing directory: Code: Select alljan. 10 11:42:46 debian-mini systemd[1]: Removed slice User Slice of UID 110. jan. 10 11:43:05 debian-mini dhclient[730]: DHCPDISCOVER on enp0s25 to 255.255.255.255 port 67 interval 11 jan. 10 11:43:06 debian-mini sh[716]: DHCPDISCOVER on enp0s25 to 255.255.255.255 port 67 interval 11 jan. 10 11:43:16 debian-mini dhclient[730]: DHCPDISCOVER on enp0s25 to 255.255.255.255 port 67 interval 1 jan. 10 11:43:16 debian-mini sh[716]: DHCPDISCOVER on enp0s25 to 255.255.255.255 port 67 interval 1 jan. 10 11:43:17 debian-mini dhclient[730]: No DHCPOFFERS received. jan. 10 11:43:17 debian-mini sh[716]: No DHCPOFFERS received. jan. 10 11:43:17 debian-mini sh[716]: No working leases in persistent database - sleeping. jan. 10 11:43:17 debian-mini dhclient[730]: No working leases in persistent database - sleeping. jan. 10 11:43:17 debian-mini avahi-autoipd(enp0s25)[1321]: Found user 'avahi-autoipd' (UID 105) and group 'avahi-autoipd' (GID 112). jan. 10 11:43:17 debian-mini avahi-autoipd(enp0s25)[1321]: Successfully called chroot(). jan. 10 11:43:17 debian-mini avahi-autoipd(enp0s25)[1321]: Successfully dropped root privileges. jan. 10 11:43:17 debian-mini avahi-autoipd(enp0s25)[1321]: Starting with address 169.254.8.15 jan. 10 11:43:23 debian-mini avahi-autoipd(enp0s25)[1321]: Callout BIND, address 169.254.8.15 on interface enp0s25 jan. 10 11:43:23 debian-mini avahi-daemon[740]: Joining mDNS multicast group on interface enp0s25.IPv4 with address 169.254.8.15. jan. 10 11:43:23 debian-mini avahi-daemon[740]: New relevant interface enp0s25.IPv4 for mDNS. jan. 10 11:43:23 debian-mini avahi-daemon[740]: Registering new address record for 169.254.8.15 on enp0s25.IPv4. jan. 10 11:43:27 debian-mini avahi-autoipd(enp0s25)[1321]: Successfully claimed IP address 169.254.8.15 jan. 10 11:43:27 debian-mini sh[716]: enp0s25=enp0s25 jan. 10 11:44:43 debian-mini NetworkManager[745]: <info> [1578653083.2024] manager: rfkill: WiFi hardware radio set disabled jan. 10 11:44:43 debian-mini wpa_supplicant[739]: rfkill: WLAN soft blocked jan. 10 11:44:43 debian-mini NetworkManager[745]: <info> [1578653083.2025] device (wlp3s0): state change: disconnected -> unavailable (reason 'none', sys-iface-state: 'managed') jan. 10 11:44:43 debian-mini wpa_supplicant[739]: rfkill: WLAN soft blocked jan. 10 11:44:43 debian-mini NetworkManager[745]: <info> [1578653083.2057] audit: op="radio-control" arg="wireless-enabled" pid=1152 uid=1000 result="success" jan. 10 11:44:43 debian-mini wpa_supplicant[739]: nl80211: Failed to open /proc/sys/net/ipv4/conf/p2p-dev-wlp3s0/drop_unicast_in_l2_multicast: No such file or directory jan. 10 11:44:43 debian-mini wpa_supplicant[739]: nl80211: Failed to set IPv4 unicast in multicast filter jan. 10 11:44:43 debian-mini NetworkManager[745]: <info> [1578653083.2063] manager: rfkill: WiFi now disabled by radio killswitch jan. 10 11:44:43 debian-mini wpa_supplicant[739]: nl80211: Failed to open /proc/sys/net/ipv4/conf/p2p-dev-wlp3s0/drop_unicast_in_l2_multicast: No such file or directory jan. 10 11:44:43 debian-mini wpa_supplicant[739]: nl80211: Failed to set IPv4 unicast in multicast filter jan. 10 11:44:43 debian-mini wpa_supplicant[739]: nl80211: Failed to open /proc/sys/net/ipv4/conf/p2p-dev-wlp3s0/drop_unicast_in_l2_multicast: No such file or directory jan. 10 11:44:43 debian-mini wpa_supplicant[739]: nl80211: Failed to set IPv4 unicast in multicast filter jan. 10 11:44:43 debian-mini wpa_supplicant[739]: nl80211: deinit ifname=p2p-dev-wlp3s0 disabled_11b_rates=0 jan. 10 11:44:43 debian-mini wpa_supplicant[739]: nl80211: deinit ifname=wlp3s0 disabled_11b_rates=0 jan. 10 11:44:43 debian-mini NetworkManager[745]: <info> [1578653083.9581] manager: rfkill: WiFi hardware radio set enabled jan. 10 11:44:44 debian-mini NetworkManager[745]: <info> [1578653084.2074] audit: op="radio-control" arg="wireless-enabled" pid=1152 uid=1000 result="success" jan. 10 11:44:44 debian-mini kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready jan. 10 11:44:44 debian-mini NetworkManager[745]: <info> [1578653084.2079] manager: rfkill: WiFi now enabled by radio killswitch jan. 10 11:44:44 debian-mini NetworkManager[745]: <info> [1578653084.2798] sup-iface[0x55c3698d0440,wlp3s0]: supports 5 scan SSIDs jan. 10 11:44:44 debian-mini NetworkManager[745]: <info> [1578653084.2807] device (wlp3s0): supplicant interface state: starting -> ready jan. 10 11:44:44 debian-mini NetworkManager[745]: <info> [1578653084.2808] device (wlp3s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed jan. 10 11:44:44 debian-mini kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready Output of systemctl Code: Select allroot@debian-mini:~# systemctl UNIT LOAD ACTIVE SUB DESCRIPTION proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point sys-devices-pci0000:00-0000:00:02.0-drm-card0-card0\x2deDP\x2d1-intel_backlight.device loaded active plugged /sys/devices/pci0000:00/0000:00:02.0/drm/card0/card0-eDP-1/intel_backlight sys-devices-pci0000:00-0000:00:03.0-sound-card0.device loaded active plugged Haswell-ULT HD Audio Controller (ThinkPad X240) sys-devices-pci0000:00-0000:00:14.0-usb2-2\x2d7-2\x2d7:1.0-bluetooth-hci0.device loaded active plugged /sys/devices/pci0000:00/0000:00:14.0/usb2/2-7/2-7:1.0/bluetooth/hci0 sys-devices-pci0000:00-0000:00:19.0-net-enp0s25.device loaded active plugged Ethernet Connection I218-LM (ThinkPad X240) sys-devices-pci0000:00-0000:00:1b.0-sound-card1.device loaded active plugged 8 Series HD Audio Controller (ThinkPad X240) sys-devices-pci0000:00-0000:00:1c.1-0000:03:00.0-net-wlp3s0.device loaded active plugged Wireless 7260 (Wireless-N 7260) sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged TS128GSSD720 1 sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged TS128GSSD720 2 sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device loaded active plugged TS128GSSD720 5 sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged TS128GSSD720 sys-devices-platform-serial8250-tty-ttyS0.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS0 sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1 sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2 sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3 sys-devices-virtual-block-dm\x2d0.device loaded active plugged LVM PV 6hbV7r-4doc-GF2m-2VLC-Oeh0-K412-n7ogt0 on /dev/dm-0 sys-devices-virtual-block-dm\x2d1.device loaded active plugged /sys/devices/virtual/block/dm-1 sys-devices-virtual-block-dm\x2d2.device loaded active plugged /sys/devices/virtual/block/dm-2 sys-devices-virtual-misc-rfkill.device loaded active plugged /sys/devices/virtual/misc/rfkill sys-subsystem-bluetooth-devices-hci0.device loaded active plugged /sys/subsystem/bluetooth/devices/hci0 sys-subsystem-net-devices-enp0s25.device loaded active plugged Ethernet Connection I218-LM (ThinkPad X240) sys-subsystem-net-devices-wlp3s0.device loaded active plugged Wireless 7260 (Wireless-N 7260) -.mount loaded active mounted / boot.mount loaded active mounted /boot dev-hugepages.mount loaded active mounted Huge Pages File System dev-mqueue.mount loaded active mounted POSIX Message Queue File System run-user-1000.mount loaded active mounted /run/user/1000 sys-kernel-debug.mount loaded active mounted Kernel Debug File System systemd-ask-password-plymouth.path loaded active waiting Forward Password Requests to Plymouth Directory Watch systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch init.scope loaded active running System and Service Manager session-3.scope loaded active running Session 3 of user hallvor accounts-daemon.service loaded active running Accounts Service apparmor.service loaded active exited Load AppArmor profiles avahi-daemon.service loaded active running Avahi mDNS/DNS-SD Stack blk-availability.service loaded active exited Availability of block devices bluetooth.service loaded active running Bluetooth service console-setup.service loaded active exited Set console font and keymap cron.service loaded active running Regular background program processing daemon dbus.service loaded active running D-Bus System Message Bus getty@tty1.service loaded active running Getty on tty1 haveged.service loaded active running Entropy daemon using the HAVEGE algorithm ifup@enp0s25.service loaded active exited ifup for enp0s25 keyboard-setup.service loaded active exited Set the console keyboard layout kmod-static-nodes.service loaded active exited Create list of required static device nodes for the current kernel lvm2-monitor.service loaded active exited Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling lvm2-pvscan@254:0.service loaded active exited LVM event activation on device 254:0 NetworkManager.service loaded active running Network Manager nftables.service loaded active exited nftables polkit.service loaded active running Authorization Manager rsyslog.service loaded active running System Logging Service rtkit-daemon.service loaded active running RealtimeKit Scheduling Policy Service sddm.service loaded active running Simple Desktop Display Manager systemd-backlight@backlight:intel_backlight.service loaded active exited Load/Save Screen Backlight Brightness of backlight:intel_backlight systemd-cryptsetup@sda5_crypt.service loaded active exited Cryptography Setup for sda5_crypt systemd-fsck@dev-disk-by\x2duuid-eb6a114e\x2da7bf\x2d4960\x2d91d0\x2dc638b0b580d1.service loaded active exited File System Check on /dev/disk/by-uuid/eb6a114e-a7bf-4960-91d0-c638b0b580d1 systemd-journal-flush.service loaded active exited Flush Journal to Persistent Storage systemd-journald.service loaded active running Journal Service systemd-logind.service loaded active running Login Service systemd-modules-load.service loaded active exited Load Kernel Modules systemd-random-seed.service loaded active exited Load/Save Random Seed systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems systemd-sysctl.service loaded active exited Apply Kernel Variables systemd-sysusers.service loaded active exited Create System Users systemd-timesyncd.service loaded active running Network Time Synchronization systemd-tmpfiles-setup-dev.service loaded active exited Create Static Device Nodes in /dev systemd-tmpfiles-setup.service loaded active exited Create Volatile Files and Directories systemd-udev-trigger.service loaded active exited udev Coldplug all Devices systemd-udevd.service loaded active running udev Kernel Device Manager systemd-update-utmp.service loaded active exited Update UTMP about System Boot/Shutdown systemd-user-sessions.service loaded active exited Permit User Sessions tlp.service loaded active exited TLP system startup/shutdown udisks2.service loaded active running Disk Manager unattended-upgrades.service loaded active running Unattended Upgrades Shutdown upower.service loaded active running Daemon for power management user-runtime-dir@1000.service loaded active exited User Runtime Directory /run/user/1000 user@1000.service loaded active running User Manager for UID 1000 wpa_supplicant.service loaded active running WPA supplicant -.slice loaded active active Root Slice system-getty.slice loaded active active system-getty.slice system-lvm2\x2dpvscan.slice loaded active active system-lvm2\x2dpvscan.slice system-systemd\x2dbacklight.slice loaded active active system-systemd\x2dbacklight.slice system-systemd\x2dcryptsetup.slice loaded active active system-systemd\x2dcryptsetup.slice system-systemd\x2dfsck.slice loaded active active system-systemd\x2dfsck.slice system.slice loaded active active System Slice user-1000.slice loaded active active User Slice of UID 1000 user.slice loaded active active User and Session Slice avahi-daemon.socket loaded active running Avahi mDNS/DNS-SD Stack Activation Socket dbus.socket loaded active running D-Bus System Message Bus Socket dm-event.socket loaded active listening Device-mapper event daemon FIFOs lvm2-lvmpolld.socket loaded active listening LVM2 poll daemon socket syslog.socket loaded active running Syslog Socket systemd-fsckd.socket loaded active listening fsck to fsckd communication Socket systemd-initctl.socket loaded active listening initctl Compatibility Named Pipe systemd-journald-audit.socket loaded active running Journal Audit Socket systemd-journald-dev-log.socket loaded active running Journal Socket (/dev/log) systemd-journald.socket loaded active running Journal Socket systemd-udevd-control.socket loaded active running udev Control Socket systemd-udevd-kernel.socket loaded active running udev Kernel Socket dev-mapper-debian\x2d\x2dmini\x2d\x2dvg\x2dswap_1.swap loaded active active /dev/mapper/debian--mini--vg-swap_1 basic.target loaded active active Basic System bluetooth.target loaded active active Bluetooth cryptsetup.target loaded active active Local Encrypted Volumes getty.target loaded active active Login Prompts graphical.target loaded active active Graphical Interface local-fs-pre.target loaded active active Local File Systems (Pre) local-fs.target loaded active active Local File Systems multi-user.target loaded active active Multi-User System network-pre.target loaded active active Network (Pre) network.target loaded active active Network nss-user-lookup.target loaded active active User and Group Name Lookups paths.target loaded active active Paths remote-fs.target loaded active active Remote File Systems slices.target loaded active active Slices sockets.target loaded active active Sockets sound.target loaded active active Sound Card swap.target loaded active active Swap sysinit.target loaded active active System Initialization time-sync.target loaded active active System Time Synchronized timers.target loaded active active Timers anacron.timer loaded active waiting Trigger anacron every hour apt-daily-upgrade.timer loaded active waiting Daily apt upgrade and clean activities apt-daily.timer loaded active waiting Daily apt download activities fstrim.timer loaded active waiting Discard unused blocks once a week logrotate.timer loaded active waiting Daily rotation of log files man-db.timer loaded active waiting Daily man-db regeneration systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 127 loaded units listed. Pass --all to see loaded but inactive units, too. To show all installed unit files use 'systemctl list-unit-files'. Hardware: Code: Select allhallvor@debian-mini:~$ lspci 00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 0b) 00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b) 00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 0b) 00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04) 00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04) 00:19.0 Ethernet controller: Intel Corporation Ethernet Connection I218-LM (rev 04) 00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04) 00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 6 (rev e4) 00:1c.1 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4) 00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04) 00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04) 00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04) 00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04) 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5227 PCI Express Card Reader (rev 01) 03:00.0 Network controller: Intel Corporation Wireless 7260 (rev 6b) Loaded modules: Code: Select allhallvor@debian-mini:~$ lsmod Module Size Used by ctr 16384 4 ccm 20480 6 acpi_call 16384 0 cmac 16384 1 bnep 24576 2 btusb 53248 0 btrtl 16384 1 btusb btbcm 16384 1 btusb btintel 24576 1 btusb bluetooth 647168 26 btrtl,btintel,btbcm,bnep,btusb uvcvideo 118784 0 videobuf2_vmalloc 16384 1 uvcvideo videobuf2_memops 16384 1 videobuf2_vmalloc videobuf2_v4l2 28672 1 uvcvideo videobuf2_common 53248 2 videobuf2_v4l2,uvcvideo drbg 28672 1 videodev 212992 3 videobuf2_v4l2,uvcvideo,videobuf2_common ansi_cprng 16384 0 media 45056 2 videodev,uvcvideo ecdh_generic 24576 2 bluetooth arc4 16384 2 intel_rapl 24576 0 iwlmvm 303104 0 x86_pkg_temp_thermal 16384 0 intel_powerclamp 16384 0 coretemp 16384 0 msr 16384 0 joydev 24576 0 mac80211 835584 1 iwlmvm mei_wdt 16384 0 snd_hda_codec_realtek 122880 1 kvm 749568 0 snd_hda_codec_hdmi 57344 1 snd_hda_codec_generic 86016 1 snd_hda_codec_realtek iwlwifi 249856 1 iwlmvm irqbypass 16384 1 kvm snd_hda_intel 45056 4 nft_counter 16384 1 intel_cstate 16384 0 intel_uncore 135168 0 snd_hda_codec 151552 4 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec_realtek rmi_smbus 16384 0 cfg80211 774144 3 iwlmvm,iwlwifi,mac80211 wmi_bmof 16384 0 rmi_core 81920 1 rmi_smbus snd_hda_core 94208 5 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek sg 36864 0 intel_rapl_perf 16384 0 snd_hwdep 16384 1 snd_hda_codec serio_raw 16384 0 thinkpad_acpi 106496 1 pcspkr 16384 0 rtsx_pci_ms 20480 0 snd_pcm 114688 4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core iTCO_wdt 16384 0 nvram 16384 1 thinkpad_acpi tpm_tis 16384 0 memstick 16384 1 rtsx_pci_ms iTCO_vendor_support 16384 1 iTCO_wdt snd_timer 36864 1 snd_pcm rfkill 28672 7 bluetooth,thinkpad_acpi,cfg80211 mei_me 45056 1 snd 94208 17 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek,snd_timer,thinkpad_acpi,snd_pcm mei 118784 3 mei_wdt,mei_me tpm_tis_core 20480 1 tpm_tis soundcore 16384 1 snd tpm 65536 2 tpm_tis,tpm_tis_core nft_ct 20480 3 ac 16384 0 pcc_cpufreq 16384 0 battery 20480 1 thinkpad_acpi nf_conntrack 172032 1 nft_ct rng_core 16384 1 tpm nf_defrag_ipv6 20480 1 nf_conntrack nf_defrag_ipv4 16384 1 nf_conntrack libcrc32c 16384 1 nf_conntrack evdev 28672 22 nf_tables_set 32768 3 nf_tables 143360 31 nft_ct,nft_counter,nf_tables_set nfnetlink 16384 1 nf_tables ip_tables 28672 0 x_tables 45056 1 ip_tables autofs4 49152 2 ext4 737280 2 crc16 16384 2 bluetooth,ext4 mbcache 16384 1 ext4 jbd2 122880 1 ext4 crc32c_generic 16384 0 fscrypto 32768 1 ext4 ecb 16384 0 algif_skcipher 16384 0 af_alg 28672 1 algif_skcipher dm_crypt 40960 1 dm_mod 155648 9 dm_crypt sd_mod 61440 3 hid_generic 16384 0 usbhid 57344 0 hid 135168 2 usbhid,hid_generic crct10dif_pclmul 16384 0 crc32_pclmul 16384 0 crc32c_intel 24576 4 ghash_clmulni_intel 16384 0 pcbc 16384 0 i915 1732608 19 rtsx_pci_sdmmc 28672 0 mmc_core 176128 1 rtsx_pci_sdmmc ahci 40960 2 libahci 40960 1 ahci aesni_intel 200704 8 xhci_pci 16384 0 libata 270336 2 libahci,ahci xhci_hcd 266240 1 xhci_pci ehci_pci 16384 0 ehci_hcd 94208 1 ehci_pci i2c_algo_bit 16384 1 i915 scsi_mod 249856 3 sd_mod,libata,sg aes_x86_64 20480 1 aesni_intel drm_kms_helper 208896 1 i915 crypto_simd 16384 1 aesni_intel cryptd 28672 4 crypto_simd,ghash_clmulni_intel,aesni_intel glue_helper 16384 1 aesni_intel psmouse 172032 0 lpc_ich 28672 0 i2c_i801 28672 0 drm 495616 10 drm_kms_helper,i915 usbcore 294912 7 xhci_hcd,ehci_pci,usbhid,uvcvideo,ehci_hcd,btusb,xhci_pci e1000e 282624 0 rtsx_pci 73728 2 rtsx_pci_sdmmc,rtsx_pci_ms usb_common 16384 1 usbcore thermal 20480 0 wmi 28672 1 wmi_bmof video 45056 2 thinkpad_acpi,i915 button 16384 0
I edited /etc/resolv.conf and put in a new address. The connection (to eduroam) seems nice and stable now. Marking as solved.
Hi guys, I have a very annoying issue, I use a Debian VM to handle some specific task. It is Sid on Virtualbox with macOS as host. Today after a reboot it stopped to boot because after inserting the password I received this warning: Code: Select alllibgcc_s.so.1 must be installed for pthread_cancel to work aborted And It requested again the password. I chrooted and reinstalled a bunch of packages that have that library, I also installed GNULIB that should handle pthread tasks, and did a fsck; but none of those worked and I don't understand how to fix it. Any ideas? Everything is on / with a very small swap partition.
Maybe sid is broken again ? libgcc_s.so.1 seems to be a "soft" dependency of libpthread (not shown by ldd, loaded only when needed). Did you check if it is included in the initramfs ?
I've been looking for some decent and up-to-date documentation about creating deb files from upstream sources. During my search, I found the following: https://www.debian.org/doc/manuals/debm ... 04.en.html Can anyone tell me if this is the preferred way, or are there other tutorials/tools out there... thx
Chrisdb wrote:if this is the preferred way Yes, debmake is the most convenient option, it fills in most of the debian folder contents for you.
Hi, I am trying to install this visualiser: https://github.com/dpayne/cli-visualizer And get the following error: Code: Select alllysander@psychopig-xxxvii:~/Downloads/cli-visualizer-master$ ./install.sh mkdir: cannot create directory ‘build/’: File elysander@psychopig-xxxvii:~/Downloads/cli-visualizer-master$ dpkg -S ncurses xists CMake Error: The following variables are used in this project, but they are set to NOTFOUND. Please set them or make sure they are set and tested correctly in the CMake files: LIB_NCURSES linked by target "vis" in directory /home/lysander/Downloads/cli-visualizer-master I am rather unsure of what dependencies I need though. I already have these: Code: Select alllysander@psychopig-xxxvii:~/Downloads/cli-visualizer-master$ dpkg -S ncurses ncurses-base: /usr/share/doc/ncurses-base/changelog.gz libncursesw6:amd64: /lib/x86_64-linux-gnu/libncursesw.so.6.1 ncurses-term: /usr/share/doc/ncurses-term ncurses-term: /usr/share/doc/ncurses-term/copyright lib64ncurses6:i386: /lib64/libncurses.so.6 ncurses-base: /usr/share/doc/ncurses-base ncurses-bin: /usr/share/doc/ncurses-bin/copyright ncurses-base: /usr/share/doc/ncurses-base/changelog.Debian.gz ncurses-base: /usr/share/doc/ncurses-base/copyright ncurses-bin: /usr/share/doc/ncurses-bin/changelog.gz lib64ncurses6:i386: /usr/share/doc/lib64ncurses6 lib64ncursesw6:i386: /lib64/libncursesw.so.6 ncurses-bin: /usr/share/doc/ncurses-bin ncurses-bin: /usr/share/doc/ncurses-bin/changelog.Debian.gz libncursesw6:amd64: /lib/x86_64-linux-gnu/libncursesw.so.6 lib64ncurses6:i386: /lib64/libncurses.so.6.1 ncurses-term: /usr/share/doc/ncurses-term/changelog.Debian.gz libncursesw6:amd64: /usr/share/doc/libncursesw6 libncurses6:amd64: /lib/x86_64-linux-gnu/libncurses.so.6 libncurses6:amd64: /lib/x86_64-linux-gnu/libncurses.so.6.1 libncurses6:amd64: /usr/share/doc/libncurses6 lib64ncursesw6:i386: /lib64/libncursesw.so.6.1 vlc-plugin-base:amd64: /usr/lib/x86_64-linux-gnu/vlc/plugins/gui/libncurses_plugin.so ncurses-term: /usr/share/doc/ncurses-term/changelog.gz ncurses-base: /usr/share/lintian/overrides/ncurses-base lib64ncursesw6:i386: /usr/share/doc/lib64ncursesw6 Code: Select alllysander@psychopig-xxxvii:~/Downloads/cli-visualizer-master$ dpkg -S fftw libfftw3-long3:amd64: /usr/share/doc/libfftw3-long3/README.Debian libfftw3-single3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3f_omp.so.3 libfftw3-3:amd64: /usr/share/doc/libfftw3-3/NEWS.gz libfftw3-long3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3l_threads.so.3.5.8 libfftw3-single3:amd64: /usr/share/doc/libfftw3-single3/NEWS.gz libfftw3-single3:amd64: /usr/share/doc/libfftw3-single3 libfftw3-single3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3f_threads.so.3 libfftw3-long3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3l_omp.so.3.5.8 libfftw3-long3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3l.so.3 libfftw3-single3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3f_omp.so.3.5.8 libfftw3-3:amd64: /usr/share/doc/libfftw3-3/README.Debian libfftw3-3:amd64: /usr/share/doc/libfftw3-3/README libfftw3-double3:amd64: /usr/share/doc/libfftw3-double3/README libfftw3-single3:amd64: /usr/share/doc/libfftw3-single3/README.Debian libfftw3-double3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3_threads.so.3 libfftw3-double3:amd64: /usr/share/doc/libfftw3-double3/NEWS.gz libfftw3-long3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3l.so.3.5.8 libfftw3-3:amd64: /usr/share/doc/libfftw3-3 libfftw3-double3:amd64: /usr/share/doc/libfftw3-double3/copyright libfftw3-single3:amd64: /usr/share/doc/libfftw3-single3/README libfftw3-long3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3l_omp.so.3 libfftw3-double3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3_omp.so.3.5.8 libfftw3-double3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3.so.3.5.8 libfftw3-double3:amd64: /usr/share/doc/libfftw3-double3/README.Debian libfftw3-long3:amd64: /usr/share/doc/libfftw3-long3/README libfftw3-long3:amd64: /usr/share/doc/libfftw3-long3/copyright libfftw3-single3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3f.so.3.5.8 libfftw3-long3:amd64: /usr/share/doc/libfftw3-long3/changelog.Debian.gz libfftw3-double3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3.so.3 libfftw3-long3:amd64: /usr/share/doc/libfftw3-long3/NEWS.gz libfftw3-single3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3f_threads.so.3.5.8 libfftw3-double3:amd64: /usr/share/doc/libfftw3-double3 libfftw3-long3:amd64: /usr/share/doc/libfftw3-long3 libfftw3-double3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3_omp.so.3 libfftw3-single3:amd64: /usr/share/doc/libfftw3-single3/copyright libfftw3-3:amd64: /usr/share/doc/libfftw3-3/copyright libfftw3-single3:amd64: /usr/share/doc/libfftw3-single3/changelog.Debian.gz libfftw3-single3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3f.so.3 libfftw3-long3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3l_threads.so.3 libfftw3-double3:amd64: /usr/lib/x86_64-linux-gnu/libfftw3_threads.so.3.5.8 libfftw3-double3:amd64: /usr/share/doc/libfftw3-double3/changelog.Debian.gz libfftw3-3:amd64: /usr/share/doc/libfftw3-3/changelog.Debian.gz Apparently it's not enough to compile this. I need ncurses and fftw. What more do I need?
Try Code: Select all# apt install libncurses-dev Which allows cmake to finish but then make will complain: Code: Select all/home/empty/git/cli-visualizer/src/Transformer/SpectrumTransformer.h:16:10: fatal error: fftw3.h: No such file or directory #include <fftw3.h> ^~~~~~~~~ So I used Code: Select allempty@E485:~ $ apt-file search fftw3.h libfftw3-dev: /usr/include/fftw3.h libmkl-dev: /usr/include/mkl/fftw/fftw3.h libvigraimpex-dev: /usr/include/vigra/fftw3.hxx empty@E485:~ $ Installing the libfftw3-dev package let everything build. Haven't tested the program though. EDIT: generally speaking if it's a build error then you need -dev packages.
Hi All, While trying to install nvidia-detect, I keep getting the following message: Errors were encountered while processing: xserver-xorg-video-nvidia xserver-xorg-video-nvidia-legacy-390xx I am not sure what to do. I have tried to install them and I have tried to uninstall them. I am not sure what the computer needs me to do. Any ideas? chadrick
How are you installing packages? The command line would show you the actual errors referred to instead of hiding them in a GUI.
I have the same problem as described here: I noticed that when I suspend my laptop by closing the lid, my two-finger vertical scroll stops working on my touchpad. When I reboot my laptop (with sudo reboot) my vertical scroll works again. I think something goes wrong when my laptop exits suspend mode. EDIT: Ok, so very mysteriously, after waking from sleep the touchpad will respond to three-finger vertical scroll instead of two-finger vertical scroll. https://www.reddit.com/r/i3wm/comments/ ... er_laptop/ Systemsettings says two finger vertical scroll is enabled. I don't have much to offer here, but any ideas?
Code: Select allhallvor@debian-thinkpad:~$ kcm-touchpad-list-devices | grep TOUCHPAD Name: SynPS/2 Synaptics TouchPad Type: TOUCHPAD Use: Extension Pointer Code: Select allhallvor@debian-thinkpad:~$ synclient bash: fant ikke kommando synclient It says no such command. Code: Select all$ cat /proc/bus/input/devices I: Bus=0011 Vendor=0002 Product=0007 Version=01b1 N: Name="SynPS/2 Synaptics TouchPad" P: Phys=isa0060/serio1/input0 S: Sysfs=/devices/platform/i8042/serio1/input/input5 U: Uniq= H: Handlers=mouse0 event5 B: PROP=15 B: EV=b B: KEY=e520 10000 0 0 0 0 B: ABS=660800011000003 I: Bus=0011 Vendor=0002 Product=000a Version=0000 N: Name="TPPS/2 IBM TrackPoint" P: Phys=synaptics-pt/serio0/input0 S: Sysfs=/devices/platform/i8042/serio1/serio2/input/input7 U: Uniq= H: Handlers=mouse2 event9 B: PROP=21 B: EV=7 B: KEY=70000 0 0 0 0 B: REL=3
Can I change the OS language only for a specific user? If so, how?
Code: Select allempty@E485:~ $ localectl System Locale: LANG=en_GB.UTF-8 LANGUAGE=en_GB:en VC Keymap: uk X11 Layout: gb X11 Model: pc105 empty@E485:~ $ localectl set-locale en_US.UTF-8 empty@E485:~ $ localectl System Locale: LANG=en_US.UTF-8 LANGUAGE=en_GB:en VC Keymap: uk X11 Layout: gb X11 Model: pc105+inet X11 Options: terminate:ctrl_alt_bksp empty@E485:~ $
I can not boot Windows 10 after I boot into linux. I get an error: https://i.imgur.com/uD44pKK.jpg But the weird thing is that AFTER I boot into Windows 10 from its own bootloader (which sits on a different physical drive), I can boot again using grub. even though It looks different. Normally when booting, I don't see the blue windows 10 logo. the issue is reproduceable by these steps: 1: normal boot: https://i.imgur.com/RLlUF5U.jpg 2: boot via grub: https://i.imgur.com/SjwC4tg.jpg 3: boot debian ... 4: boot Windows 10 from grub: https://i.imgur.com/uD44pKK.jpg 5: boot windows 10 via its own bootloader: https://i.imgur.com/RLlUF5U.jpg ... Edit: Sorry I cannot include thumbnails to the pictures, I get an internal server error when I attempt to do that
1) Please post the output of the following commands from Debian. Code: Select allefibootmgr -v blkid fdisk -l 2) Post the Windows menu entry in /boot/grub/grub.cfg. 3) At the GRUB boot screen press "c" to enter the command line and post the output of "ls".
I am utterly baffled by this. I had Steam and Telegram opened in GNOME and after closing their windows they are still not actually closed. Their icons do not appear in the taskbar. How on Earth do I close them? Do I have to do it via Task Manager? How do I get a list of applications that are actually running?! This is on stable, by the way.
For Steam go to Steam → Exit in the menus at the top left of the window. Or use Code: Select allpkill steam
I have had this problem several times after resuming from suspend.* The WiFi will be connected to the network, but no traffic comes through. After a few minutes, everything works as usual. It is not a dealbreaker, just annoying. The computer is a Lenovo Thinkpad X240 (not the one in my signature) with Intel 7260 WiFi. Code: Select all00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b) 03:00.0 Network controller: Intel Corporation Wireless 7260 (rev 6b) Errors from journalctl from the time this was happening: Code: Select alldes. 19 11:56:34 debian-mini wpa_supplicant[815]: nl80211: Failed to open /proc/sys/net/ipv4/conf/p2p-dev-wlp3s0/drop_unicast_in_l2_multicast: No such file or directory des. 19 11:56:34 debian-mini wpa_supplicant[815]: nl80211: Failed to set IPv4 unicast in multicast filter des. 19 11:56:34 debian-mini nm-dispatcher[20246]: req:5 'down' [wlp3s0]: new request (2 scripts) des. 19 11:56:34 debian-mini nm-dispatcher[20246]: req:5 'down' [wlp3s0]: start running ordered scripts... des. 19 11:56:34 debian-mini nm-dispatcher[20246]: req:6 'connectivity-change': new request (2 scripts) des. 19 11:56:34 debian-mini wpa_supplicant[815]: nl80211: Failed to open /proc/sys/net/ipv4/conf/p2p-dev-wlp3s0/drop_unicast_in_l2_multicast: No such file or directory des. 19 11:56:34 debian-mini kernel: IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready des. 19 11:56:34 debian-mini wpa_supplicant[815]: nl80211: Failed to set IPv4 unicast in multicast filter [...] des. 19 11:59:30 debian-mini root[21300]: /etc/dhcp/dhclient-exit-hooks.d/zzz_avahi-autoipd returned non-zero exit status 1 It complains about a missing file. This is a very minimal install, so I may lack something important... Any ideas? * I very rarely reboot the computer, so it is possible that there is a problem on fresh boots as well, as the problem comes and goes.
Yes, NetworkManager is installed and enabled. I am puzzled by the random loss of traffic. The computer worked fine when I woke up the computer from suspend now - and it usually works fine, like I mentioned. Code: Select allroot@debian-mini:~# systemctl list-unit-files --state=enabled UNIT FILE STATE accounts-daemon.service enabled anacron.service enabled apparmor.service enabled autovt@.service enabled avahi-daemon.service enabled blk-availability.service enabled console-setup.service enabled cron.service enabled dbus-fi.w1.wpa_supplicant1.service enabled dbus-org.freedesktop.Avahi.service enabled dbus-org.freedesktop.ModemManager1.service enabled dbus-org.freedesktop.nm-dispatcher.service enabled dbus-org.freedesktop.timesync1.service enabled getty@.service enabled haveged.service enabled keyboard-setup.service enabled lvm2-monitor.service enabled ModemManager.service enabled network-manager.service enabled networking.service enabled NetworkManager-dispatcher.service enabled NetworkManager-wait-online.service enabled NetworkManager.service enabled nftables.service enabled pppd-dns.service enabled rsyslog.service enabled syslog.service enabled systemd-timesyncd.service enabled tlp-sleep.service enabled tlp.service enabled udisks2.service enabled unattended-upgrades.service enabled wpa_supplicant.service enabled avahi-daemon.socket enabled dm-event.socket enabled lvm2-lvmpolld.socket enabled remote-fs.target enabled anacron.timer enabled apt-daily-upgrade.timer enabled apt-daily.timer enabled fstrim.timer enabled logrotate.timer enabled man-db.timer enabled 43 unit files listed. Code: Select allroot@debian-mini:~# systemctl status NetworkManager ● NetworkManager.service - Network Manager Loaded: loaded (/lib/systemd/system/NetworkManager.service; enabled; vendor preset: enabled) Active: active (running) since Fri 2019-12-20 08:28:24 CET; 13min ago Docs: man:NetworkManager(8) Main PID: 814 (NetworkManager) Tasks: 4 (limit: 4915) Memory: 17.6M CGroup: /system.slice/NetworkManager.service ├─ 814 /usr/sbin/NetworkManager --no-daemon └─1547 /sbin/dhclient -d -q -sf /usr/lib/NetworkManager/nm-dhcp-helper -pf /run/dhclient-wlp3s0.pid -lf /var/lib/NetworkManager/dhclient-92909545-2a78-4268-838d-60fa21ae1e65-wlp3s0. des. 20 08:29:18 debian-mini dhclient[1650]: XMT: Solicit on wlp3s0, interval 16790ms. des. 20 08:29:34 debian-mini dhclient[1650]: XMT: Solicit on wlp3s0, interval 34970ms. des. 20 08:29:47 debian-mini NetworkManager[814]: <warn> [1576826987.2806] dhcp6 (wlp3s0): request timed out des. 20 08:29:47 debian-mini NetworkManager[814]: <info> [1576826987.2807] dhcp6 (wlp3s0): state changed unknown -> timeout des. 20 08:29:47 debian-mini NetworkManager[814]: <info> [1576826987.2829] dhcp6 (wlp3s0): canceled DHCP transaction, DHCP client pid 1650 des. 20 08:29:47 debian-mini NetworkManager[814]: <info> [1576826987.2829] dhcp6 (wlp3s0): state changed timeout -> done des. 20 08:38:24 debian-mini NetworkManager[814]: <info> [1576827504.3732] device (wlp3s0): supplicant interface state: completed -> authenticating des. 20 08:38:24 debian-mini NetworkManager[814]: <info> [1576827504.3762] device (wlp3s0): supplicant interface state: authenticating -> associating des. 20 08:38:24 debian-mini NetworkManager[814]: <info> [1576827504.3883] device (wlp3s0): supplicant interface state: associating -> associated des. 20 08:38:24 debian-mini NetworkManager[814]: <info> [1576827504.3948] device (wlp3s0): supplicant interface state: associated -> completed shep wrote:The other thing to look at is power saving features: https://wiki.archlinux.org/index.php/Po ... _(iwlwifi) My realtek card dropped connections until I disable powersaving with a /etc/modprobe.d entry. I tried disabling the WiFi power saving feature on TLP. It was disabled on AC power, but enabled on battery. I'll let you know how it works out.
Hello. I'm using Debian Buster with Plasma Desktop and sddm. I'm trying to add a new user to my Debian Buster. This is to be an account to my daughter to start exploring and practicing to type with the laptop keyboard and start getting used with online searches, etc. So I did the following command in terminal: Code: Select allsudo useradd -m -d /home/homefolder newuser Then I switched to 'root' user and set a password to the newly created user using: Code: Select allpasswd newuser Then I went back to my normal user and tried to switch to the newly created user I used: Code: Select allsu -s newuser and enter my normal user password and I get the following error: Code: Select allsu: failed to execute newuser: No such file or directory and if I use the newuser password in the above command I get a different error: Code: Select allsu: Authentication failure If I issue: Code: Select allcat /etc/passwd I get the following: Code: Select allnewuser:x:1003:1004::/home/homefolder:/bin/sh Why can't I switch to my daughter's newly created account? Note: I already tried in a new terminal session. Also 'newuser' and 'homefolder' are just generic names I used. But I was consistent changing the names, so the generic names I used, are correctly replace in the correct places here in my post.
Run adduser(8) instead, this isn't Arch. You will have to delete that abortive initial attempt first though: Code: Select all# deluser
Solved When I try to connect to wiki(dot)debian(dot)org, I get the following message on screen <p>You are not allowed to access this!</p> , futhermore, both the regular (http://....) debian repo and the local ftp repo are not reachable also openvpn keeps kicking me offline, although the settings, did work this morning, untill this afternoon, after I got back from a doctors appointment. This is the Apt log Start-Date: 2019-12-04 16:28:59 Commandline: apt-get -o APT::Status-Fd=4 -o APT::Keep-Fds::=5 -o APT::Keep-Fds::=6 -q -y --no-remove install grub-pc Install: grub2-common:amd64 (2.02+dfsg1-20, automatic), grub-pc:amd64 (2.02+dfsg1-20), grub-pc-bin:amd64 (2.02+dfsg1-20, automatic) End-Date: 2019-12-04 16:29:01 Start-Date: 2019-12-04 16:37:09 Commandline: apt install nvidia-driver Requested-By: user (1000) Install: linux-headers-4.19.0-6-amd64:amd64 (4.19.67-2+deb10u2, automatic), libnvidia-glvkspirv:amd64 (418.74-1, automatic), libmpx2:amd64 (8.3.0-6, automatic), nvidia-support:amd64 (20151021+9, automatic), libgles-nvidia1:amd64 (418.74-1, automatic), libgles-nvidia2:amd64 (418.74-1, automatic), nvidia-kernel-common:amd64 (20151021+9, automatic), linux-libc-dev:amd64 (4.19.67-2+deb10u2, automatic), libnvidia-ml1:amd64 (418.74-1, automatic), nvidia-vulkan-icd:amd64 (418.74-1, automatic), nvidia-egl-icd:amd64 (418.74-1, automatic), libfakeroot:amd64 (1.23-1, automatic), libc6-dev:amd64 (2.28-10, automatic), update-glx:amd64 (1.0.0, automatic), nvidia-driver:amd64 (418.74-1), libalgorithm-diff-perl:amd64 (1.19.03-2, automatic), libalgorithm-merge-perl:amd64 (0.08-3, automatic), nvidia-modprobe:amd64 (418.56-1, automatic), binutils:amd64 (2.31.1-16, automatic), libitm1:amd64 (8.3.0-6, automatic), linux-headers-4.19.0-6-common:amd64 (4.19.67-2+deb10u2, automatic), g++:amd64 (4:8.3.0-1, automatic), libopengl0:amd64 (1.1.0-1, automatic), nvidia-vulkan-common:amd64 (418.74-1, automatic), gcc:amd64 (4:8.3.0-1, automatic), nvidia-vdpau-driver:amd64 (418.74-1, automatic), libgl1-nvidia-glvnd-glx:amd64 (418.74-1, automatic), linux-compiler-gcc-8-x86:amd64 (4.19.67-2+deb10u2, automatic), libasan5:amd64 (8.3.0-6, automatic), libgles1:amd64 (1.1.0-1, automatic), libglx-nvidia0:amd64 (418.74-1, automatic), glx-alternative-nvidia:amd64 (1.0.0, automatic), dkms:amd64 (2.6.1-4, automatic), nvidia-kernel-dkms:amd64 (418.74-1, automatic), build-essential:amd64 (12.6, automatic), libfile-fcntllock-perl:amd64 (0.22-3+b5, automatic), libegl-nvidia0:amd64 (418.74-1, automatic), nvidia-egl-common:amd64 (418.74-1, automatic), binutils-x86-64-linux-gnu:amd64 (2.31.1-16, automatic), libxnvctrl0:amd64 (418.74-1, automatic), libgcc-8-dev:amd64 (8.3.0-6, automatic), libnvidia-ptxjitcompiler1:amd64 (418.74-1, automatic), libnvidia-cfg1:amd64 (418.74-1, automatic), libtsan0:amd64 (8.3.0-6, automatic), nvidia-legacy-check:amd64 (418.74-1, automatic), libubsan1:amd64 (8.3.0-6, automatic), g++-8:amd64 (8.3.0-6, automatic), libnvidia-fatbinaryloader:amd64 (418.74-1, automatic), make:amd64 (4.2.1-1.2, automatic), fakeroot:amd64 (1.23-1, automatic), gcc-8:amd64 (8.3.0-6, automatic), nvidia-kernel-support:amd64 (418.74-1, automatic), glx-diversions:amd64 (1.0.0, automatic), linux-headers-amd64:amd64 (4.19+105+deb10u1, automatic), liblsan0:amd64 (8.3.0-6, automatic), nvidia-driver-libs:amd64 (418.74-1, automatic), nvidia-driver-bin:amd64 (418.74-1, automatic), manpages-dev:amd64 (4.16-2, automatic), binutils-common:amd64 (2.31.1-16, automatic), nvidia-persistenced:amd64 (418.56-1, automatic), libc-dev-bin:amd64 (2.28-10, automatic), xserver-xorg-video-nvidia:amd64 (418.74-1, automatic), libbinutils:amd64 (2.31.1-16, automatic), libnvidia-rtcore:amd64 (418.74-1, automatic), nvidia-installer-cleanup:amd64 (20151021+9, automatic), linux-kbuild-4.19:amd64 (4.19.67-2+deb10u2, automatic), glx-alternative-mesa:amd64 (1.0.0, automatic), libcc1-0:amd64 (8.3.0-6, automatic), libnvidia-cbl:amd64 (418.74-1, automatic), libdpkg-perl:amd64 (1.19.7, automatic), patch:amd64 (2.7.6-3+deb10u1, automatic), libnvidia-glcore:amd64 (418.74-1, automatic), libalgorithm-diff-xs-perl:amd64 (0.04-5+b1, automatic), libstdc++-8-dev:amd64 (8.3.0-6, automatic), libnvidia-eglcore:amd64 (418.74-1, automatic), nvidia-settings:amd64 (418.74-1, automatic), dpkg-dev:amd64 (1.19.7, automatic), nvidia-alternative:amd64 (418.74-1, automatic) End-Date: 2019-12-04 16:38:27 Start-Date: 2019-12-04 16:38:53 Commandline: apt install muon Requested-By: user (1000) Install: muon:amd64 (4:5.8.0-1), python-six:amd64 (1.12.0-1, automatic), python-xapian:amd64 (1.4.11-2, automatic), apt-xapian-index:amd64 (0.49, automatic), python-chardet:amd64 (3.0.4-3, automatic), libqapt3-runtime:amd64 (3.0.4-1, automatic), python-debian:amd64 (0.1.35, automatic), libqapt3:amd64 (3.0.4-1, automatic), python-pkg-resources:amd64 (40.8.0-1, automatic), python-apt:amd64 (1.8.4, automatic) End-Date: 2019-12-04 16:39:21 Start-Date: 2019-12-04 16:39:50 Commandline: apt install audacity Requested-By: user (1000) Install: audacity:amd64 (2.2.2-1+b1), libportaudio2:amd64 (19.6.0-1, automatic), libsuil-0-0:amd64 (0.10.0~dfsg0-1, automatic), libid3tag0:amd64 (0.15.1b-14, automatic), libwxgtk3.0-0v5:amd64 (3.0.4+dfsg-8, automatic), libvamp-hostsdk3v5:amd64 (2.7.1~repack0-1, automatic), libportsmf0:amd64 (0.1~svn20101010-5, automatic), audacity-data:amd64 (2.2.2-1, automatic), libwxbase3.0-0v5:amd64 (3.0.4+dfsg-8, automatic) End-Date: 2019-12-04 16:39:56 Start-Date: 2019-12-04 16:46:46 Install: snapd:amd64 (2.37.4-1+b1, automatic), squashfs-tools:amd64 (1:4.3-12, automatic), libsnapd-qt1:amd64 (1.45-1.1), libsnapd-glib1:amd64 (1.45-1.1, automatic), liblzo2-2:amd64 (2.10-0.1, automatic) End-Date: 2019-12-04 16:46:51 Start-Date: 2019-12-04 16:48:34 Commandline: packagekit role='install-packages' Requested-By: user (1000) Install: libvte-2.91-0:amd64 (0.54.2-2, automatic), libgee-0.8-2:amd64 (0.20.1-2, automatic), timeshift:amd64 (19.01+ds-2), libvte-2.91-common:amd64 (0.54.2-2, automatic), rsync:amd64 (3.1.3-6, automatic) End-Date: 2019-12-04 16:48:36 Start-Date: 2019-12-04 16:49:04 Commandline: packagekit role='install-packages' Requested-By: user (1000) Install: libkpmcore7:amd64 (3.3.0-5, automatic), partitionmanager:amd64 (3.3.1-5) End-Date: 2019-12-04 16:49:05 Start-Date: 2019-12-04 16:49:25 Commandline: packagekit role='install-packages' Requested-By: user (1000) Install: kdf:amd64 (4:18.04.1-1) End-Date: 2019-12-04 16:49:25 Start-Date: 2019-12-04 16:52:18 Install: zulucrypt-cli:amd64 (5.4.0-3, automatic), libzulucrypt1.2.0:amd64 (5.4.0-3, automatic), libzulucrypt-exe1.2.0:amd64 (5.4.0-3, automatic), zulucrypt-gui:amd64 (5.4.0-3), zulupolkit:amd64 (5.4.0-3, automatic), libzulucryptpluginmanager1.0.0:amd64 (5.4.0-3, automatic), zulumount-cli:amd64 (5.4.0-3, automatic), zulumount-gui:amd64 (5.4.0-3) End-Date: 2019-12-04 16:52:19 Start-Date: 2019-12-05 02:22:01 Install: gir1.2-soup-2.4:amd64 (2.64.2-2, automatic), libavcodec-extra:amd64 (7:4.1.4-1~deb10u1), ufw:amd64 (0.36-1, automatic), gufw:amd64 (18.10.0-1), gir1.2-webkit2-4.0:amd64 (2.26.2-1~deb10+1, automatic), libavcodec-extra58:amd64 (7:4.1.4-1~deb10u1, automatic), gir1.2-javascriptcoregtk-4.0:amd64 (2.26.2-1~deb10+1, automatic) Remove: libavcodec58:amd64 (7:4.1.4-1~deb10u1) End-Date: 2019-12-05 02:22:06 Start-Date: 2019-12-05 02:23:57 Install: libcurl4:amd64 (7.64.0-4, automatic), libjson-perl:amd64 (4.02000-1, automatic), libtext-csv-xs-perl:amd64 (1.38-1, automatic), gnome-icon-theme:amd64 (3.12.0-3, automatic), libpango-perl:amd64 (1.227-3+b1, automatic), libjson-xs-perl:amd64 (3.040-1+b1, automatic), libtext-csv-perl:amd64 (1.99-1, automatic), libmspack0:amd64 (0.10.1-1, automatic), clamav:amd64 (0.101.4+dfsg-0+deb10u1, automatic), clamtk:amd64 (5.27-1), libtypes-serialiser-perl:amd64 (1.0-1, automatic), clamav-daemon:amd64 (0.101.4+dfsg-0+deb10u1), clamdscan:amd64 (0.101.4+dfsg-0+deb10u1, automatic), clamav-freshclam:amd64 (0.101.4+dfsg-0+deb10u1, automatic), libcommon-sense-perl:amd64 (3.74-2+b7, automatic), libtfm1:amd64 (0.13-4, automatic), clamav-base:amd64 (0.101.4+dfsg-0+deb10u1, automatic), libclamav9:amd64 (0.101.4+dfsg-0+deb10u1, automatic), libgtk2-perl:amd64 (2:1.24992-1+b2, automatic) End-Date: 2019-12-05 02:24:03 Start-Date: 2019-12-05 14:55:48 Install: firmware-realtek:amd64 (20190114-2) End-Date: 2019-12-05 14:56:01 Start-Date: 2019-12-05 16:14:23 Reinstall: bluedevil:amd64 (4:5.14.5-1), libavahi-glib1:amd64 (0.7-4+b1), plasma-discover-backend-snap:amd64 (5.14.5.1-1), plasma-discover-common:amd64 (5.14.5.1-1), libavahi-common-data:amd64 (0.7-4+b1), libavahi-common3:amd64 (0.7-4+b1), plasma-discover:amd64 (5.14.5.1-1), discover-data:amd64 (2.2013.01.11), libactivation-java:amd64 (1.2.0-2), libavahi-core7:amd64 (0.7-4+b1) End-Date: 2019-12-05 16:14:30 Start-Date: 2019-12-05 16:18:31 Commandline: packagekit role='install-packages' Requested-By:user (1000) Install: libpkcs11-helper1:amd64 (1.25.1-1, automatic), easy-rsa:amd64 (3.0.6-1, automatic), openvpn:amd64 (2.4.7-1), pcscd:amd64 (1.8.24-1, automatic), opensc-pkcs11:amd64 (0.19.0-1, automatic), opensc:amd64 (0.19.0-1, automatic), libccid:amd64 (1.4.30-1, automatic) End-Date: 2019-12-05 16:18:34 Start-Date: 2019-12-05 21:18:07 Install: libqtshadowsocks2:amd64 (2.1.0-2+b1, automatic), network-manager-openvpn:amd64 (1.8.10-1), libnss-resolve:amd64 (241-7~deb10u2, automatic), libtspi1:amd64 (0.3.14+fixed1-1, automatic), shadowsocks-qt5:amd64 (3.0.1-2), libbotan-2-9:amd64 (2.9.0-2, automatic), openvpn-systemd-resolved:amd64 (1.2.7-1) End-Date: 2019-12-05 21:18:10 Start-Date: 2019-12-05 21:57:41 Install: curl:amd64 (7.64.0-4) End-Date: 2019-12-05 21:57:42 Start-Date: 2019-12-05 22:24:35 Install: python3-notify2:amd64 (0.3-3, automatic), xsane:amd64 (0.999-6+b1, automatic), python3-dbus.mainloop.pyqt5:amd64 (5.11.3+dfsg-1+b3, automatic), hplip-gui:amd64 (3.18.12+dfsg0-2), xsane-common:amd64 (0.999-6, automatic) End-Date: 2019-12-05 22:24:37 Start-Date: 2019-12-05 23:13:43 Commandline: apt autoremove Requested-By: user(1000) Remove: libpkcs11-helper1:amd64 (1.25.1-1), easy-rsa:amd64 (3.0.6-1), opensc-pkcs11:amd64 (0.19.0-1), opensc:amd64 (0.19.0-1), libnss-resolve:amd64 (241-7~deb10u2) End-Date: 2019-12-05 23:13:45 Start-Date: 2019-12-05 23:27:55 Install: libev4:amd64 (1:4.25-1, automatic), libcorkipset1:amd64 (1.1.1+20150311-8, automatic), libbloom1:amd64 (1.5-5, automatic), shadowsocks-libev:amd64 (3.2.5+ds-1), libcork16:amd64 (0.15.0+ds-12, automatic) Remove: libqtshadowsocks2:amd64 (2.1.0-2+b1), shadowsocks-qt5:amd64 (3.0.1-2) End-Date: 2019-12-05 23:28:00 Start-Date: 2019-12-05 23:38:35 Commandline: apt install openvpn Requested-By: user (1000) Install: libpkcs11-helper1:amd64 (1.25.1-1, automatic), easy-rsa:amd64 (3.0.6-1, automatic), openvpn:amd64 (2.4.7-1), opensc-pkcs11:amd64 (0.19.0-1, automatic), opensc:amd64 (0.19.0-1, automatic) End-Date: 2019-12-05 23:38:37 Start-Date: 2019-12-06 00:55:50 Install: network-manager-openvpn:amd64 (1.8.10-1) End-Date: 2019-12-06 00:55:51 Start-Date: 2019-12-06 01:17:19 Commandline: apt autoremove Requested-By:user(1000) Remove: libtspi1:amd64 (0.3.14+fixed1-1), libbotan-2-9:amd64 (2.9.0-2) End-Date: 2019-12-06 01:17:20 Start-Date: 2019-12-07 00:52:54 Install: libmail-sendmail-perl:amd64 (0.80-1, automatic), intltool-debian:amd64 (0.35.0+20060710.5, automatic), libarchive-zip-perl:amd64 (1.64-1, automatic), libarchive-cpio-perl:amd64 (0.10-1, automatic), dwz:amd64 (0.12-3, automatic), dh-autoreconf:amd64 (19, automatic), dh-strip-nondeterminism:amd64 (1.1.2-1, automatic), libfile-stripnondeterminism-perl:amd64 (1.1.2-1, automatic), po-debconf:amd64 (1.0.21, automatic), libdvd-pkg:amd64 (1.4.2-1-1), debhelper:amd64 (12.1.1, automatic), autopoint:amd64 (0.19.8.1-9, automatic), gettext:amd64 (0.19.8.1-9, automatic), libsys-hostname-long-perl:amd64 (1.5-1, automatic) Error: Sub-process /usr/bin/dpkg returned an error code (1) End-Date: 2019-12-07 00:54:36 Start-Date: 2019-12-07 00:56:08 Commandline: apt install libdvd-pkg Requested-By: user (1000) End-Date: 2019-12-07 00:56:15 Start-Date: 2019-12-07 03:30:39 Install: libykpers-1-1:amd64 (1.19.3-3+deb10u1, automatic), keepassxc:amd64 (2.3.4+dfsg.1-1), libyubikey-udev:amd64 (1.19.3-3+deb10u1, automatic), libzxcvbn0:amd64 (2.4+dfsg-2, automatic), libyubikey0:amd64 (1.13-4, automatic) End-Date: 2019-12-07 03:30:44 Start-Date: 2019-12-07 06:03:05 Install: pdftk:amd64 (2.02-5), pdftk-java:amd64 (3.0.2-2, automatic) End-Date: 2019-12-07 06:03:06 Start-Date: 2019-12-07 06:07:38 Install: okular-extra-backends:amd64 (4:17.12.2-2.2), libchm1:amd64 (2:0.40a-5, automatic), libmarkdown2:amd64 (2.2.4-1, automatic) End-Date: 2019-12-07 06:07:39 Start-Date: 2019-12-07 06:15:49 Install: pdfchain:amd64 (1:0.4.4.2-1) End-Date: 2019-12-07 06:15:49 Start-Date: 2019-12-07 06:23:53 Install: python3-pypdf2:amd64 (1.26.0-2, automatic), pdfarranger:amd64 (1.1.1-1), gir1.2-poppler-0.18:amd64 (0.71.0-5, automatic) Purge: pdfchain:amd64 (1:0.4.4.2-1) End-Date: 2019-12-07 06:23:54 Start-Date: 2019-12-08 01:41:09 Commandline: apt install samba Requested-By:user (1000) Install: python-tdb:amd64 (1.3.16-2+b1, automatic), python-samba:amd64 (2:4.9.5+dfsg-5+deb10u1, automatic), python-dnspython:amd64 (1.16.0-1, automatic), libgfapi0:amd64 (5.5-3, automatic), samba:amd64 (2:4.9.5+dfsg-5+deb10u1), samba-dsdb-modules:amd64 (2:4.9.5+dfsg-5+deb10u1, automatic), libcephfs2:amd64 (12.2.11+dfsg1-2.1+b1, automatic), libtirpc-common:amd64 (1.1.4-0.4, automatic), libgfrpc0:amd64 (5.5-3, automatic), libgfxdr0:amd64 (5.5-3, automatic), tdb-tools:amd64 (1.3.16-2+b1, automatic), attr:amd64 (1:2.4.48-4, automatic), python-crypto:amd64 (2.6.1-9+b1, automatic), samba-common:amd64 (2:4.9.5+dfsg-5+deb10u1, automatic), libtirpc3:amd64 (1.1.4-0.4, automatic), samba-vfs-modules:amd64 (2:4.9.5+dfsg-5+deb10u1, automatic), samba-common-bin:amd64 (2:4.9.5+dfsg-5+deb10u1, automatic), libglusterfs0:amd64 (5.5-3, automatic), python-gpg:amd64 (1.12.0-6, automatic), python-ldb:amd64 (2:1.5.1+really1.4.6-3, automatic), librados2:amd64 (12.2.11+dfsg1-2.1+b1, automatic) End-Date: 2019-12-08 01:41:18 Start-Date: 2019-12-08 02:23:42 Commandline: apt install samba-client cifs-utils Requested-By: user (1000) Install: cifs-utils:amd64 (2:6.8-2), smbclient:amd64 (2:4.9.5+dfsg-5+deb10u1) End-Date: 2019-12-08 02:23:43 Start-Date: 2019-12-08 15:57:35 Commandline: packagekit role='update-packages' Requested-By: user (1000) Upgrade: libnss3:amd64 (2:3.42.1-1+deb10u1, 2:3.42.1-1+deb10u2) End-Date: 2019-12-08 15:57:36 Start-Date: 2019-12-08 16:15:58 Install: kdenetwork-filesharing:amd64 (4:17.08.3-1+b1) End-Date: 2019-12-08 16:15:59 Start-Date: 2019-12-08 18:51:37 Install: libzulucrypt-plugins:amd64 (5.4.0-3) End-Date: 2019-12-08 18:51:38 Start-Date: 2019-12-09 22:50:33 Install: 0install-core:amd64 (2.12.3-2, automatic), 0install:amd64 (2.12.3-2) End-Date: 2019-12-09 22:50:35
A simple search would have found the answer. http://forums.debian.net/viewtopic.php? ... pn#p705898
Dear people I have debian 10 gnome on my computer. I have installed thunderbird mail via software, but this is in English, how do I get it in Dutch? Sincerely, Sjaak
Sjaak Straver wrote:how do I get it in Dutch? Code: Select allapt-get install thunderbird-l10n-nl That will install the Dutch language pack. What I do not know (because I've never done it) is if there's additional step, such as switching the language choice in Thunderbird's settings. Either way, install the package and let us know.
I ran into a strange issue today while setting up a couple snap packages. I am able to launch the packages through the terminal but dmenu does not list them. I am on a fresh Debian 10 installation. $PATH in dmenu does not match $PATH in the terminal when I echo it. dmenu: Code: Select all/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games terminal: Code: Select all/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/snap/bin I am using lightdm/lightdm-gtk-greeter + xmonad. My terminal is urxvt. xmonad launches dmenu with Code: Select alldmenu_run -fn 'Source Code Pro:size=10' -nb '#1d1f21' -nf '#c5c8c6' -sb '#1d1f21' -sf '#81a2be' -p 'dmenu:' My .bashrc file is pretty much default from the installer. Code: Select all# ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples # If not running interactively, don't do anything case $- in *i*) ;; *) return;; esac # don't put duplicate lines or lines starting with space in the history. # See bash(1) for more options HISTCONTROL=ignoreboth # append to the history file, don't overwrite it shopt -s histappend # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) HISTSIZE=1000 HISTFILESIZE=2000 # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. shopt -s checkwinsize # If set, the pattern "**" used in a pathname expansion context will # match all files and zero or more directories and subdirectories. #shopt -s globstar # make less more friendly for non-text input files, see lesspipe(1) #[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" # set variable identifying the chroot you work in (used in the prompt below) if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then debian_chroot=$(cat /etc/debian_chroot) fi # set a fancy prompt (non-color, unless we know we "want" color) case "$TERM" in xterm-color|*-256color) color_prompt=yes;; esac # uncomment for a colored prompt, if the terminal has the capability; turned # off by default to not distract the user: the focus in a terminal window # should be on the output of commands, not on the prompt #force_color_prompt=yes if [ -n "$force_color_prompt" ]; then if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then # We have color support; assume it's compliant with Ecma-48 # (ISO/IEC-6429). (Lack of such support is extremely rare, and such # a case would tend to support setf rather than setaf.) color_prompt=yes else color_prompt= fi fi if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' fi unset color_prompt force_color_prompt # If this is an xterm set the title to user@host:dir case "$TERM" in xterm*|rxvt*) PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" ;; *) ;; esac # enable color support of ls and also add handy aliases if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" alias ls='ls --color=auto' #alias dir='dir --color=auto' #alias vdir='vdir --color=auto' #alias grep='grep --color=auto' #alias fgrep='fgrep --color=auto' #alias egrep='egrep --color=auto' fi # colored GCC warnings and errors #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' # some more ls aliases #alias ll='ls -l' #alias la='ls -A' #alias l='ls -CF' # Alias definitions. # You may want to put all your additions into a separate file like # ~/.bash_aliases, instead of adding them here directly. # See /usr/share/doc/bash-doc/examples in the bash-doc package. if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile # sources /etc/bash.bashrc). if ! shopt -oq posix; then if [ -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion elif [ -f /etc/bash_completion ]; then . /etc/bash_completion fi fi I already tried rebooting/logging out and clearing dmenu cache. Does anyone have any ideas on what the issue is? Thanks
It's not uncommon for a package to not be picked up by one or another menu. Manually add it to you favourites.
I'm attempting to recover a laptop. It's SATA drive has failed catastrophically. Until I'm able to get in a new SATA HDD I'm attempting to recover some use of the laptop with a live boot disk of Debian 10.0.0 and an external USB HDD. Unfortunately the live boot fails, returning: ata1: COMREST failed (errno=-32). As near as I can tell this means that it is failing to establish a connection with the internal SATA drive, which, if course it would considering that the SATA drive has failed. Is there anyway to bypass this part of the live boot or point it towards an external USB HDD instead?
The BIOS may allow to disable the SATA controller or a SATA port/device. Can't you just remove the failed drive ? Try to add the parameter "libata.force=disable" to the kernel command line while in the boot loader menu.
I have a desktop with two drives. The SSD has Stretch and the HDD has Buster (upgraded from Stretch). When I boot Buster I do not get the splash screen and instead just get the text output. I have searched the web for solutions and have tried several things, all to no avail. I have checked plymouthd-start.service and it would appear that Plymouth should be showing the splash screen. Code: Select all$ systemctl status plymouth-start.service ● plymouth-start.service - Show Plymouth Boot Screen Loaded: loaded (/lib/systemd/system/plymouth-start.service; static; vendor pr Active: inactive (dead) since Thu 2019-10-31 13:12:05 CST; 19min ago Process: 550 ExecStart=/sbin/plymouthd --mode=boot --pid-file=/run/plymouth/pi Process: 553 ExecStartPost=/bin/plymouth show-splash (code=exited, status=0/SU However, when I look at journalctl I see that Plymouth is being told to write out runtime data (two instances) Code: Select allOct 31 12:56:57 debian systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... Oct 31 12:56:57 debian systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. Oct 31 12:56:57 debian systemd[1]: Starting Set console font and keymap... Oct 31 12:56:57 debian systemd[1]: Starting udev Kernel Device Manager... Oct 31 12:56:57 debian systemd-tmpfiles[326]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:1] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher → /run/speech-dispatcher; please update the tmpfiles.d/ drop-in file accordingly. Oct 31 12:56:57 debian systemd-tmpfiles[326]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:2] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher/.cache → /run/speech-dispatcher/.cache; please update the tmpfiles.d/ drop-in file accordingly. Oct 31 12:56:57 debian systemd-tmpfiles[326]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:3] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher/.speech-dispatcher → /run/speech-dispatcher/.speech-dispatcher; please update the tmpfiles.d/ drop-in file accordingly. Oct 31 12:56:57 debian systemd-tmpfiles[326]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:4] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher/.cache/speech-dispatcher → /run/speech-dispatcher/.cache/speech-dispatcher; please update the tmpfiles.d/ drop-in file accordingly. Oct 31 12:56:57 debian systemd-tmpfiles[326]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:5] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher/log → /run/speech-dispatcher/log; please update the tmpfiles.d/ drop-in file accordingly. Oct 31 12:56:57 debian systemd[1]: Received SIGRTMIN+20 from PID 231 (plymouthd). Oct 31 12:56:57 debian systemd[1]: Started Set console font and keymap. Oct 31 12:56:57 debian systemd[1]: plymouth-read-write.service: Succeeded. Oct 31 12:56:57 debian systemd[1]: Started Tell Plymouth To Write Out Runtime Data. Oct 31 12:56:58 debian apparmor.systemd[325]: Restarting AppArmor I have looked for errors that might be causing the text output, and here is a list generated with journalctl -b -p 3 Code: Select all-- Logs begin at Thu 2019-10-31 12:56:56 CST, end at Thu 2019-10-31 13:10:21 CST. -- Oct 31 12:56:56 debian kernel: usbhid 2-1:1.1: couldn't find an input interrupt endpoint That error is caused by a Genius mouse. I disconnected the mouse and re-booted the machine. I get the same text output with no error. I have "quiet splash" set in grub. Here is my /etc/default/grub file. And YES, I did a update-grub after making changes. Code: Select all# If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. # For full documentation of the options in this file, see: # info -f grub -n 'Simple configuration' GRUB_DEFAULT=0 GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX="" # Uncomment to enable BadRAM filtering, modify to suit your needs # This works with Linux (no patch required) and with any kernel that obtains # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" # Uncomment to disable graphical terminal (grub-pc only) #GRUB_TERMINAL=console # The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' GRUB_GFXMODE=1024x768 # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux #GRUB_DISABLE_LINUX_UUID=true # Uncomment to disable generation of recovery mode menu entries #GRUB_DISABLE_RECOVERY="true" # Uncomment to get a beep at grub start #GRUB_INIT_TUNE="480 440 1" Other than the no splash screen issue, the upgrade from Stretch went well and Buster seems to be working with no issues. If anybody has any suggestions as to what I can do to ge the Plymouth splash screen working, I would appreciate the help. Oh, by the way, when I boot Stretch, same machine different drive, I do not get any text output during boot. Of course I do not have Plymouth installed. Thanks in advance. Here's some additional info: Just looked at the /var/log/boot.log and here are the first lines: Code: Select allroot@debian:~# cat /var/log/boot.log /dev/sdb1: clean, 186284/30040064 files, 3787066/120139520 blocks [ OK ] Started Tell Plymouth To Write Out Runtime Data. [ OK ] Started Set console font and keymap. [ OK ] Started Create Volatile Files and Directories. So even thought the plymouth-start.service specifically states to show splash the boot process start by telling Plymouth to out put text Code: Select allProcess: 553 ExecStartPost=/bin/plymouth show-splash (code=exited, status=0/SU I also saw where Plymouth will not do the splash screen if the hardware does not support DRM. Here is what I see from glx_info. SO it would appear that my hardware supports DRM. Code: Select alljohn@debian:~$ glxinfo name of display: :0.0 display: :0 screen: 0 direct rendering: Yes I also made all the changes recommended in the Debian Wiki for Plymouth. I am stumped. Still no help from the forum.
Well, I found something that might be an issue. In the Debian Plymouth Wiki it instructs the user to edit the /etc/initramfs_tools/modules file to add Code: Select allintel_agp drm i915 modeset=1 I did that and then did update-initramfs -u When I look at loaded modules, using lsmod, I do not see intel_agp added. I then looked at /lib/modules/4.19.0-6-amd64/modules.builtin and do not find intel_agp. I do find intel-agp.ko . However I can not load that module either. So is this what is causing Plymouth to go directly to text instead of the splash screen? And if so, how do I fix the problem?
I've installed Tor browser and it opens the connection window in black and then opens Tor browser in black. Doesn't Tor browser work in Debian? I've used it in many other distros and never had this happen. How do you get Tor to work in Debian?
There was a bug, should be fixed now. https://bugs.debian.org/cgi-bin/bugrepo ... bug=942901 https://github.com/micahflee/torbrowser ... r/pull/426 https://forum.siduction.org/index.php?topic=7810.0 But also:- https://github.com/micahflee/torbrowser ... issues/443
Hi folks, I'm stuck on trying to understand something : even with a "generic" (not "targeted") initrd, my root partition "/lib/modules/4.19.0-6-amd64/" folder is much bigger that the "/lib/modules/4.19.0-6-amd64/" folder of the initrd (extracted using gunzip then cpio). It's 331.4 MB vs 92.5 MB. I understand why (not all drivers are needed into the initrd) but I'm trying to understand which mechanism is used for selecting which modules files will be sent (or not) to the initrd when running update-initramfs I did the test, putting manually all the 331.4MB of modules into the initrd works fine (but the resulting initrd file is of course bigger that the one created by update-initramfs). Thank you in advance !
You should have a look to /etc/initramfs-tools/initramfs.conf Code: Select all# MODULES: [ most | netboot | dep | list ] # most - Add most filesystem and all harddrive drivers. # dep - Try and guess which modules to load. # netboot - Add the base modules, network modules, but skip block devices. # list - Only include modules from the 'additional modules' list MODULES=dep initrd.img => 8 MB
I created a custom Debian Live ISO and burned to pendrive with dd. The pendrive can be booted from BIOS with no problems. Now I want to be able to boot the same live system from UEFI too (without removing isolinux). This way I can use the same pendrive with any firmware (BIOS and UEFI). I tried with rufus with no success. I think xorriso should do the trick, but many attempts didn't success. I even created an ESP partition on the pendrive and there I copied the content of the /boot/grub directory (and changed grub.cfg accordingly). No way to make it work. Can someone help me? Thanks. Shortly, the procedure: Code: Select alldebootstrap --arch=amd64 buster /media/Live/livework/chroot chroot /media/Live/livework/chroot ... install Debian+LXDE+customizations ... copy kernel & initrd on /media/Live/livework/binary/live/ cd /media/Live/livework/ mksquashfs chroot binary/live/filesystem.squashfs -comp xz -e boot ... configure isolinux Finally: Code: Select allxorriso -as mkisofs -r -J -joliet-long -l \ -isohybrid-mbr /usr/lib/ISOLINUX/isohdpfx.bin -partition_offset 16 \ -A "my_Debian_Live" -b isolinux/isolinux.bin -c \ isolinux/boot.cat -no-emul-boot -boot-load-size 4 \ -boot-info-table -o my_Debian_Live.iso \ binary
Check the mkiso function in this gist: https://gist.github.com/Head-on-a-Stick ... -mkshrc-L7 But you should probably be using live-build instead of doing this manually.
Hi... I was trying to install GNS3 in Debian Buster using pip3 because it is not in default repositories but there is one package missing which GNS3 site says it must be installed from Ubuntu repositories but I'm totally against mixing pacjages from different repositories, mainly if they are from different OSs. The missing packages is 'ubridge'. However I found a similar package but I need confirmation if this package is the one to install instead of Ubuntu 'ubridge'. The package name is 'bridge-utils'. Can anyone confirm if this package can replace 'ubrige' for GNS3? Thanks Psy
Well, after digging a while a friend of mine suggested me to try to compile 'ubrige' from sources and it actually worked! Solved.
I installed Firefox 69 using snap but it doesn't let you download files and won't let you make it the default browser. Why is this? Do I have to delete Firefox ESR for it to work correctly? What is the best way to install Firefox? Why do we have to be stuck the the ESR version? Running Debian testing and like it very much except for this Firefox version problem.
This has been covered in many posts in the forum but the easiest way to have the latest version of Firefox is to download the tar file from Mozilla, extract it to your $HOME and navigate inside the folder and run it, this way you can get updates via the help menu, you can also create a menu entry using a .desktop file (depending on your DE).
I am using Debian sid (unstable) with MATE desktop. I just performed a full-upgrade by running: sudo apt update && sudo apt full-upgrade After the first "# apt update" step, I didn't find anything weird, just a handful of packages to be upgraded and a few others removed. I proceeded with the full-upgrade. But after the full-upgrade process, when I tried to update the repository again, I was prompted to remove the entire desktop environment. UPDATE: I fixed this issue with "sudo tasksel". I selected MATE desktop and 3 small packages (deleted during previous operation) got restored. Now apt no longer prompt me to remove the entire desktop.
nadebula1984 wrote:... I was somehow too hasty to perform the full-upgrade (albeit I did notice that a few packages would be removed)... Welcome to Sid. Sid likes to break things. Now you have learned not to upgrade when important packages are to be removed. Abort the upgrade and try again later. That said, if you're careful you can run Sid without too much pain. I've been doing it for over 10 years and only had to reinstall a couple of times. Make a full system backup often, preferably just before you upgrade.
I have been trying to update the apt index and get the following - Code: Select all$ sudo apt update Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease Err:1 http://cdn-fastly.deb.debian.org/debian buster InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC Hit:2 http://cdn-fastly.deb.debian.org/debian-security buster/updates InRelease Err:2 http://cdn-fastly.deb.debian.org/debian-security buster/updates InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9D6D8F6BC857C906 NO_PUBKEY AA8E81B4331F7F50 Hit:3 http://cdn-fastly.deb.debian.org/debian unstable InRelease Err:3 http://cdn-fastly.deb.debian.org/debian unstable InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC Hit:4 http://cdn-fastly.deb.debian.org/debian experimental InRelease Err:4 http://cdn-fastly.deb.debian.org/debian experimental InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC Hit:5 http://debug.mirrors.debian.org/debian-debug buster-debug InRelease Err:5 http://debug.mirrors.debian.org/debian-debug buster-debug InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC Hit:6 http://debug.mirrors.debian.org/debian-debug unstable-debug InRelease Hit:7 http://debug.mirrors.debian.org/debian-debug experimental-debug InRelease Err:6 http://debug.mirrors.debian.org/debian-debug unstable-debug InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC Err:7 http://debug.mirrors.debian.org/debian-debug experimental-debug InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC Hit:8 https://packages.riot.im/debian buster InRelease Reading package lists... Done Building dependency tree Reading state information... Done 3 packages can be upgraded. Run 'apt list --upgradable' to see them. W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://cdn-fastly.deb.debian.org/debian buster InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://cdn-fastly.deb.debian.org/debian-security buster/updates InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9D6D8F6BC857C906 NO_PUBKEY AA8E81B4331F7F50 W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://cdn-fastly.deb.debian.org/debian unstable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://cdn-fastly.deb.debian.org/debian experimental InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://debug.mirrors.debian.org/debian-debug buster-debug InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://debug.mirrors.debian.org/debian-debug unstable-debug InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://debug.mirrors.debian.org/debian-debug experimental-debug InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: Failed to fetch http://cdn-fastly.deb.debian.org/debian/dists/buster/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: Failed to fetch http://cdn-fastly.deb.debian.org/debian-security/dists/buster/updates/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9D6D8F6BC857C906 NO_PUBKEY AA8E81B4331F7F50 W: Failed to fetch http://cdn-fastly.deb.debian.org/debian/dists/unstable/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: Failed to fetch http://cdn-fastly.deb.debian.org/debian/dists/experimental/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: Failed to fetch http://debug.mirrors.debian.org/debian-debug/dists/buster-debug/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: Failed to fetch http://debug.mirrors.debian.org/debian-debug/dists/unstable-debug/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC W: Failed to fetch http://debug.mirrors.debian.org/debian-debug/dists/experimental-debug/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453E I do have this however, any ideas ? Code: Select all$ apt-cache policy debian-keyring debian-keyring: Installed: 2019.02.25 Candidate: 2019.02.25 Version table: 2019.03.24 500 500 http://cdn-fastly.deb.debian.org/debian unstable/main amd64 Packages *** 2019.02.25 990 990 http://cdn-fastly.deb.debian.org/debian buster/main amd64 Packages I then updated to - Code: Select all$ apt-cache policy debian-archive-keyring debian-archive-keyring: Installed: 2019.1 Candidate: 2019.1 Version table: *** 2019.1 500 500 http://cdn-fastly.deb.debian.org/debian unstable/main amd64 Packages 100 /var/lib/dpkg/status 2018.1 990 990 http://cdn-fastly.deb.debian.org/debian buster/main amd64 Packages solved by doing - Code: Select all# gpg --recv-keys 4D270D06F42584E6 # gpg --export 4D270D06F42584E6 | apt-key add - and doing similar there. Quite unorthodox but works.
Maybe fixed in that newer version of the keyring in Sid, too. Maybe you could have forced its install?
When i boot the installer it gets to the "Detect CD ROM" step, saying it cannot detect CD Rom (which i obviously don't even have) and then asking me to load drivers from CD Rom. I have tried multiple installers: debian-10.1.0-amd64-DVD-1.iso debian-10.1.0-amd64-netinst.iso firmware-10.1.0-amd64-netinst.iso Installing from external USB drive (using Etcher for that) Shouldn't it ask me about internet connection ? i would like to install everything by using WiFi. My PC specs are in signature. Thanks
pawRoot wrote:using Etcher Use the methods recommended in the installation guide instead, that error is seen when tools attempt to "correct" an isohybrid image. pawRoot wrote:My PC specs are in signature Ninth generation Intel with an operating system whose package versions were frozen last December? Good luck with that...
Run apt-get update with an local mirror (created with apt-mirror) show the following errors: Err:14 http://local_mirror.pc/debian buster-backports/main Translation-en 404 Not Found [IP: 196.168.1.150 80] Ign:16 http://local_mirror.pc/debian buster-backports/contrib Translation-en Ign:18 http://local_mirror.pc/debian buster-backports/non-free Translation-en Err:20 http://local_mirror.pc/debian-security buster/updates/main Translation-en 404 Not Found [IP: 196.168.1.150 80] Fetched 14.6 MB in 4s (3,939 kB/s) Reading package lists... Done E: Failed to fetch http://local_mirror.pc/debian/dists/buster-backports/main/i18n/Translation-en 404 Not Found [IP: 196.168.1.150 80] E: Failed to fetch http://local_mirror.pc/debian-security/dists/buster/updates/main/i18n/Translation-en 404 Not Found [IP: 196.168.1.150 80] E: Some index files failed to download. They have been ignored, or old ones used instead. Why? Some files are missing. Here is the apt-mirror config file. ############# config ################## # set base_path /data_pool/apt-mirror # # set mirror_path $base_path/mirror # set skel_path $base_path/skel # set var_path $base_path/var # set cleanscript $var_path/clean.sh # set defaultarch <running host architecture> # set postmirror_script $var_path/postmirror.sh # set run_postmirror 0 set nthreads 20 set _tilde 0 # ############# end config ############## deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian-security/ buster/updates main contrib non-free # mirror additional architectures #deb-alpha http://ftp.us.debian.org/debian unstable main contrib non-free #deb-amd64 http://ftp.us.debian.org/debian unstable main contrib non-free #deb-armel http://ftp.us.debian.org/debian unstable main contrib non-free #deb-hppa http://ftp.us.debian.org/debian unstable main contrib non-free #deb-i386 http://ftp.us.debian.org/debian unstable main contrib non-free #deb-ia64 http://ftp.us.debian.org/debian unstable main contrib non-free #deb-m68k http://ftp.us.debian.org/debian unstable main contrib non-free #deb-mips http://ftp.us.debian.org/debian unstable main contrib non-free #deb-mipsel http://ftp.us.debian.org/debian unstable main contrib non-free #deb-powerpc http://ftp.us.debian.org/debian unstable main contrib non-free #deb-s390 http://ftp.us.debian.org/debian unstable main contrib non-free #deb-sparc http://ftp.us.debian.org/debian unstable main contrib non-free clean http://ftp.us.debian.org/debian
https://askubuntu.com/questions/1105932 ... lations-en That is a bug.
Hello everybody! This one might be a little weird, but I am in a very tight spot. My device is a Fujitsu Siemens Amilio A1630 from 2004, running some, seemingly limited, American Megatrends BIOS. I've had a few issues trying to boot from USB, like that the laptop prefers booting from the HDD, and there seems to be no way to change it. Regardless, I've got Debian Buster (AMD64) installed with XFCE by using a Plop Boot Manager CD. The issue is that I can not get Windows 7 installed from USB. I can boot it using GRUB (root=(hdd1,msdos1); chainloader +1; boot) but it gives me an error related to BOOT\BCD - 0xc00000e - I read that this is because Windows Setup does not have the necessary drivers for USB for this machine. The obvious solution at this point would be to burn a Windows 7 DVD, however the DVD drive in this laptop will not function reliably (I can't even get far in the Windows XP install). Is there perhaps any way to install Windows 7 as a secondary OS from within Debian? -- I am not afraid of losing GRUB or my current Debian setup, as I can still boot a Debian setup using my Plop Boot Manager CD.
Maybe this might help: https://superuser.com/questions/457640/ ... b-on-linux
After installing kvm on a cli only machine (Debian 10) i get this error when attempting to make a VM: Code: Select all$ sudo apt install qemu-kvm libvirt-clients libvirt-daemon-system bridge-utils $ sudo adduser <youruser> libvirt $ sudo adduser <youruser> libvirt-qemu $ export LIBVIRT_DEFAULT_URI='qemu:///system' $ sudo virt-install --name=kvm1-website.org --vcpus=8 --memory=8192 --cdrom=/home/user/iso/debian-10.0.0-amd64-netinst.iso --disk path=/dev/sdb --os-type=linux --os-variant=debianbuster --network bridge=br0,model=virtio --autostart --extra-args "console=ttyS0" [sudo] password for user: sudo: virt-install: command not found If anyone had any advice that would be great, thank you.
https://packages.debian.org/search?sear ... e&arch=any indicates that it is in the package virtinst. Alternatively if you have enough disk space you can install and use apt-file to search which package provides a given file. Note that locate will not list new files (and will continue to list deleted files) until its database has been updated (updatedb, done daily by a cronjob).
I have a font that I downloaded and want to add to usr/share/font folder but it won't allow me to copy it there. Do I need to be in root? if yes, how do I open Dolphin file manager in root? Running Debian 10 KDE
To install a system font in KDE, System Settings > Appearance > Fonts > Font Management > Add
It seems after updating to buster, that the command now shows the date in AM/PM (12 hour) timeset. Can this be changed, so it shows 24 hours instead ? I know, I can "mangle" it with the format options, but its not exactly what I want. Code: Select all#date Fri 06 Sep 2019 05:51:42 PM CEST
What are your locale settings? Run "locale" on the command prompt and post the output. I have LC_TIME=en_DK.UTF-8 (gives you English with sane, er, European formatting).
Hi, How can I find the cause of random crashes? I don't really know if this technically is called a crash. What I am experiencing is this: - I am working normally at the computer - and suddenly all windows close - and the login screen appears (when we introduce the username and password) - there is no freeze whatsoever - this happens when I am using apps like Firefox, Thunar, Virtualbox, etc - but the only app that I was always using in every ocasion was Thunar - however, I don't know if Thunar is the cause because I am using it almost all the time - so it could happen without it being the cause also Before I was on Debian 8 Jessie XFCE and this never happened. Now, I'm on Debian 10 Buster XFCE for a couple of weeks. And since then I have experienced multiple crashes. Here are just a few from the last days. 20190827-110234 20190827-143625 20190827-194612 20190827-195104 20190827-203955 20190827-204106 20190827-215204 20190827-231419 20190827-235152 20190828-001438 20190828-001805 20190828-001852 20190828-003114 20190828-010440 20190828-020430 How can I investigate this? I have googled and found out that there are many cases of crashes, in a multitude of distros: Debian, Fedora, Arch, etc. But almost every case reports "freezes", i.e, the system freezing, and in my case that doesn't happen; never did, not even once. What happens is I am just logged out of my session and the login screen appears (when we introduce the username and password), like I said above. From my google searches, I've seen people advising to analyse this files: /home/user/.xsession-errors.old /var/log/lightdm/"various logs" and analyse the result of this commands: # inxi -Fz # journalctl ============================================= # inxi -Fz System: Host: princ-20190810 Kernel: 4.19.0-5-amd64 x86_64 bits: 64 Desktop: Xfce 4.14.1 Distro: Debian GNU/Linux 10 (buster) Machine: Type: Desktop System: LENOVO product: 10AHS0LH00 v: ThinkCentre M83 serial: <filter> Mobo: LENOVO model: SHARKBAY v: NOK serial: N/A BIOS: LENOVO v: FBKTA6AUS date: 01/28/2015 CPU: Topology: Quad Core model: Intel Core i5-4670S bits: 64 type: MCP L2 cache: 6144 KiB Speed: 2954 MHz min/max: 800/3800 MHz Core speeds (MHz): 1: 2149 2: 2856 3: 2749 4: 2236 Graphics: Device-1: NVIDIA GT218 [GeForce 210] driver: nouveau v: kernel Display: server: X.Org 1.20.4 driver: modesetting unloaded: fbdev,vesa resolution: 1600x1200~60Hz OpenGL: renderer: NVA8 v: 3.3 Mesa 18.3.6 Audio: Device-1: Intel 8 Series/C220 Series High Definition Audio driver: snd_hda_intel Device-2: NVIDIA High Definition Audio driver: snd_hda_intel Sound Server: ALSA v: k4.19.0-5-amd64 Network: Device-1: Intel Ethernet I217-LM driver: e1000e IF: eno1 state: up speed: 100 Mbps duplex: full mac: <filter> Drives: Local Storage: total: 5.91 TiB used: 4.76 TiB (80.6%) ID-1: /dev/sda vendor: Toshiba model: HDWD130 size: 2.73 TiB ID-2: /dev/sdb vendor: Samsung model: HD154UI size: 1.36 TiB ID-3: /dev/sdc vendor: Seagate model: ST31500341AS size: 1.36 TiB ID-4: /dev/sdd vendor: Crucial model: CT500MX500SSD1 size: 465.76 GiB Partition: ID-1: / size: 20.03 GiB used: 8.64 GiB (43.1%) fs: ext4 dev: /dev/dm-0 ID-2: /boot size: 922.0 MiB used: 63.9 MiB (6.9%) fs: ext4 dev: /dev/sdd1 ID-3: swap-1 size: 4.64 GiB used: 0 KiB (0.0%) fs: swap dev: /dev/dm-1 Sensors: System Temperatures: cpu: 29.8 C mobo: 27.8 C gpu: nouveau temp: 51 C Fan Speeds (RPM): N/A Info: Processes: 220 Uptime: 3h 45m Memory: 7.71 GiB used: 1.26 GiB (16.4%) Shell: bash inxi: 3.0.32 ============================================= ============================================= ============================================= Here ao some of the contents of some .xsession-errors.old: ============================================= Gdk-Message: 11:32:01.627: mousepad: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.627: thunar: Fatal IO error 104 (Connection reset by peer) on X server :0.0. Gdk-Message: 11:32:01.627: /usr/lib/firefox-esr/firefox-esr: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. gigolo: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.628: wrapper-2.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.628: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.628: xfce4-terminal: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.629: wrapper-2.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.629: polkit-gnome-authentication-agent-1: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.629: synaptic: Fatal IO error 2 (No such file or directory) on X server :0.0. xfsettingsd: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.629: firefox-esr: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 11:32:01.629: light-locker: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. ============================================= (VirtualBox:27937): Gtk-WARNING **: 19:09:29.432: Theme parsing error: gtk.css:6:32: Invalid character in string. Must be escaped. Qt WARNING: QXcbConnection: XCB error: 3 (BadWindow), sequence: 24860, resource id: 11858764, major code: 40 (TranslateCoords), minor code: 0 Qt WARNING: QXcbConnection: XCB error: 3 (BadWindow), sequence: 44356, resource id: 11868674, major code: 40 (TranslateCoords), minor code: 0 Qt WARNING: QXcbConnection: XCB error: 3 (BadWindow), sequence: 63936, resource id: 11906422, major code: 40 (TranslateCoords), minor code: 0 Qt WARNING: QXcbConnection: XCB error: 3 (BadWindow), sequence: 60636, resource id: 11962297, major code: 40 (TranslateCoords), minor code: 0 Gdk-Message: 19:23:45.047: VirtualBox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. gigolo: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:23:45.071: Thunar: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:23:45.071: wrapper-2.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:23:45.072: polkit-gnome-authentication-agent-1: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfwm4: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:23:45.076: light-locker: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfce4-panel: Fatal IO error 4 (Interrupted system call) on X server :0.0. xfsettingsd: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfdesktop: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:23:45.082: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfce4-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0. ============================================= Gdk-Message: 19:27:26.804: VirtualBox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:27:26.804: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:27:26.805: wrapper-2.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfce4-panel: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfdesktop: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:27:26.805: polkit-gnome-authentication-agent-1: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfce4-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0. xfwm4: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfsettingsd: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:27:26.812: light-locker: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 19:27:26.814: Thunar: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. ============================================= (VirtualBox:6567): Gtk-WARNING **: 12:26:55.736: Theme parsing error: gtk.css:6:32: Invalid character in string. Must be escaped. Qt WARNING: QXcbConnection: XCB error: 3 (BadWindow), sequence: 24637, resource id: 12127279, major code: 40 (TranslateCoords), minor code: 0 gigolo: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:31:19.850: /usr/lib/firefox-esr/firefox-esr: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:31:19.850: /usr/lib/firefox-esr/firefox-esr: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. ###!!! [Parent][MessageChannel] Error: (msgtype=0x160080,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv Gdk-Message: 12:31:19.866: VirtualBox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:31:19.866: /usr/lib/firefox-esr/firefox-esr: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:31:19.866: polkit-gnome-authentication-agent-1: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:31:19.867: light-locker: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfce4-panel: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:31:19.866: /usr/lib/firefox-esr/firefox-esr: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:31:19.870: wrapper-2.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfdesktop: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfwm4: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfsettingsd: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:31:19.877: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfce4-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0. Gdk-Message: 12:31:19.885: Thunar: Fatal IO error 0 (Success) on X server :0.0. ###!!! [Parent][MessageChannel] Error: (msgtype=0x160080,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv ###!!! [Parent][MessageChannel] Error: (msgtype=0x160080,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv Gdk-Message: 12:31:19.942: firefox-esr: Fatal IO error 104 (Connection reset by peer) on X server :0.0. ============================================= UUID changed to: 12345678-1234-1234-1234-190823124640 wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:48:56.504: polkit-gnome-authentication-agent-1: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. wrapper-1.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfce4-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0. Gdk-Message: 12:48:56.506: wrapper-2.0: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfwm4: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:48:56.508: Thunar: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:48:56.508: light-locker: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfsettingsd: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfdesktop: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. xfce4-panel: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. Gdk-Message: 12:48:56.512: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.0. ============================================= How can I investigate this? Am I looking at the right files? Has someone else having the same issue?
efrpcabo wrote: Thanks. That means that indeed I have a Optimus (hybrid) graphics chipset. So I have to go with the Bumblebee. No it doesn't mean that at all. As this is a desktop it most likely is NOT Optimus. You may be able to disable the Intel graphics in UEFI/BIOS setup menu and use just the Nvidia graphics, or pull the Nvidia card out and use the Intel graphics. As this is a low spec Nvidia card you may find it works well with the default nouveau driver which saves you the hassle of installing Nvidia. It also may work fine without the Nvidia card at all, just using the onboard graphics. Either way you should install firmware-misc-nonfree and intel-microcode.
Hi, In Debian Buster, I am having difficulties doing update-initramfs within a chroot. In Jessie I could do it with success. But now on Debian Buster I keep having this error: cryptsetup ERROR Source mismatch Google didn't help about this error, except a mention in this article: http://kenta.blogspot.com/2019/07/ttvdp ... luks2.html Can anybody help?
What is the contents of /mnt/temp/etc/crypttab and fstab ?
Hi, In Debian Buster 10 64 bits, I tried changing the encrypted devices naming in fstab and crypttab, but I got an error. I ignored that error and then tried to reboot, but dropped into an initramfs shell. As I was working in a virtual machine and just prior to this I had made a backup of the VDI disk, I just replaced the disk with the backup. So, no harm done. Can anybody please tell me what am I missing here? ============================================= fstab before changes UUID=79d4debc-d950-4b2e-8694-6e209e7928e7 /boot ext2 defaults 0 2 /dev/mapper/sda2_crypt none swap sw 0 0 /dev/mapper/sda3_crypt / ext4 errors=remount-ro 0 1 fstab after changes UUID=79d4debc-d950-4b2e-8694-6e209e7928e7 /boot ext2 defaults 0 2 /dev/mapper/d1064_swap_crypt none swap sw 0 0 /dev/mapper/d1064_root_crypt / ext4 errors=remount-ro 0 1 ============================================= crypttab before changes sda2_crypt UUID=63022acc-da3f-4658-8dad-c45c337d31cc none luks,swap,discard sda3_crypt UUID=a9a655f3-a3a0-450f-9ab0-589293e8b89c none luks,discard crypttab after changes d1064_swap_crypt UUID=63022acc-da3f-4658-8dad-c45c337d31cc none luks,swap,discard d1064_root_crypt UUID=a9a655f3-a3a0-450f-9ab0-589293e8b89c none luks,discard ============================================= update-initramfs -u update-initramfs: Generating /boot/initrd.img-4.19.0-5-amd64 cryptsetup: WARNING: target 'sda3_crypt' not found in /etc/crypttab cryptsetup: WARNING: target 'sda2_crypt' not found in /etc/crypttab cryptsetup: WARNING: The initramfs image may not contain cryptsetup binaries nor crypto modules. If that's on purpose, you may want to uninstall the 'cryptsetup-initramfs' package in order to disable the cryptsetup initramfs integration and avoid this warning. W: Couldn't identify type of root file system for fsck hook =============================================
As already explained, the initramfs generator requires that the crypto device names which were used to open the LUKS containers with cryptsetup match the ones in crypttab and fstab. If you are working in a chroot, you must open the LUKS devices with the new target names before entering the chroot. If you are not working in a chroot, you can try to rename the devices with Code: Select alldmsetup rename sda2_crypt d1064_swap_crypt and so on. Not tested.
Hi all, Im a relative new user of linux (~6 months) so bare with me if I am making stupid comments. I've done as much trouble shooting as I can: Today I messed up big time (see backstory below). Current, on bootup I do not end up at log-in screen. Instead it boots straight to command line where I can log in and operate from there. I tried following below: https://stackoverflow.com/questions/483 ... -not-found However I cannot figure out how to install the referenced file via command line as computer isn't recognising USB file format after I downloaded the install file using another computer. I'll carry on figuring that out tomorrow but all in all I think im at the end of my skill set/patience - in particular im not confident this will fix the issue. I followed the other comments re "systemctl1 status gdm", with the result being gdm.service not found, no such file or directory. I have tried installing gdm3 again/rebuilding, but all installs using command line are getting hung up on dependancy issues with a number of different packages. I have tried numerious ways of configuring and rebuilding to no avail. Particularly ones are tex-common and fontconfig. This may be possible cause, or unrelated. I think may be issue with my use of latex and unrelated. In summary: How do I get my display manager / GUI back? If someone could guide me in right direction it would be very much appreciated. Sorry Im not sure on how much info to give first off, if i've given too much to start etc. But any help would be greatly appreciated. Backstory: I plugged the laptop into a new monitor last night at home. When I got to work and tried to plug into the two I use there, one wasn't working. I restarted and noticed a firmware error on start up. Googled the error and followed following instructions: https://unix.stackexchange.com/question ... 68g-2?rq=1 Restarted and then got stuck at /dev/sda1 screen. Also occisionally had errors telling me GPU was overheating. I loaded into safety mode and uninstalled all NVIDA* as per some googling and realising issue was likely related to my messing around with drivers from the above link - sorry I cannot remember the exact message board links that got me to that reasoning. On restart after doing above I am where I am now. All of above leads me to think it is possible that issue is related to NVIDIA graphical card/driver error and maybe not the GUI being uninstalled, but above is where I am at with my step by step process. I am (was) running Debian 9 on a Lanovo T480.
Post output of the following: Code: Select allapt-cache policy dpkg --audit lspci -knn
Can anybody please help me on downgrading Thunar from 1.8.4 to 1.6.3? I'm using Debian Buster and I use Thunar custom actions very much. The problem is that Thunar custom actions don't work on the Desktop, as you can read here: https://bbs.archlinux.org/viewtopic.php ... 7#p1807697 So, either I upgrade XFCE from 4.12 to 4.13 or I downgrade Thunar from 1.8.4 to 1.6.3 Correct me if I'm wrong, but I believe it is best to choose downgrade Thunar. So, I need some help to do this right. I've googled around and I've read I should run this command: apt policy thunar which gives me this result, which I believe says I only have version 1.8.4-1 available: thunar: Installed: 1.8.4-1 Candidate: 1.8.4-1 Version table: *** 1.8.4-1 500 500 http://deb.debian.org/debian stable/main amd64 Packages 100 /var/lib/dpkg/status If this is so, it seems I'm stuck!... Can someone shed some light in here, please?
Since the earlier version is from Stretch you need to arrange to have it seen by apt in a local pool. That's a page of explanation! Then with whatever tool try to remove the current and install the last in one step, and simply see what it says. It may help to have changed the default FM to something else first, I used spacefm, and actually like it. If synaptic doesn't want to do it, then maybe drop down to a root VT and see if aptitude (and you) can make sense of it....Bottom line is you can rip it out and reinstall what you have to as long as apt can see both versions, and then you pick. I never bother with pinning things, it's a mess. I simply control what apt sees. Or some other way? I've mentioned this, and complained some over the last months. Since I use staged images I caught it and have full buster images with spacefm, hybrid Buster with the thunar upgrade skipped, and my main hypervisor still on stretch because of thunar.
As per Code: Select allhttps://docs.xfce.org/xfce/thunar/faq I cant change the hotkey for Code: Select all; (gtk_accel_path "<Actions>/ThunarStandardView/select-by-pattern" "<Primary>s") into Code: Select all; (gtk_accel_path "<Actions>/ThunarStandardView/select-by-pattern" "<Primary>f") because every time I restart thunar its always at primary s again. I want to change the ctrl s into ctrl f in order to search by pattern. I did the thunar -q before and tried editing from terminal (have to have thunar closed obviousy) and then rebooted. No avail. Any info? Tried editing the accels file in in recovery even and no luck. Id also like to make thunar search not case sensitive if possible.
You need to uncomment the line(s) you changed by removing the "; " in front.
Running Buster on a 3-week old Acer swift notebook, XFCE. A few days ago I noticed that there was an extra wifi icon in the Notification Area, in the "Nm tray". Hmm, I thought, no big deal. But over the following days an additional one appeared after every new startup. Now there are 10. The 'Connection ...active' message appears on any of them when I hover the mouse there. The (intel) wifi was quick to setup, and has been running normally since. Any ideas?
Do they only appear when you do a fresh log in? If so, have you looked in XFCE's autostart settings to see if you have it autostarting every time?
Hello. I have Debian 9 and Windows 10 installed in my computer. My computer's battery does not work and someone disconnected it while it was frozen. When I turn it on, it appears on the screen: Code: Select allerror: unknown filesystem grub rescue> I have read on many pages solutions for this problem but apparently everyone can access the partition where the system is, I do not. Even when I try to do Code: Select allsudo mount /dev/sda5 /mnt/linux The terminal says: wrong fs type, bad option, bad superblock on /dev/sda5 ... I have a LiveUSB with Debian that I can use to fix the system, I just do not know how. Thank you. If this is not the right place to post this, please tell me where I can do it.
davideluque wrote:I have a LiveUSB with Debian that I can use to fix the system, I just do not know how. https://www.debian.org/releases/stretch ... 07.html.en
Im on Debian 10. Trying Code: Select alladduser newuser in order to create a new user as per https://linuxize.com/post/how-to-add-an ... -debian-9/ (thought it should work for debian 10 as well, checked out for debian 10 and couldn't find solution still) However it reads out Code: Select allbash: adduser: command not found Sais the same thing when i try on normal user and on super user. I just want to generate a new user so someone else in the house can use the PC with a fresh new user experience and not see all of my personal private stuff. Ill then hand them the user and password for their own user so they can use my pc without eyeing my private data. How do I just create a new user to hand out so they use the pc without looking at my personal private data? Should be easy,
Adduser is in /usr/sbin/ which is only accessible to root. At a guess you didn't use the correct command to switch to root - you need to use Code: Select allsu - not just Code: Select allsu
I was trying to use bluetooth in my Dell Inspiron 3521 laptop. I am using debian 9 netinst with i3 wm. I have followed this debian wiki page for this. But when I tried to use my bluetooth from bluetoothctl I noticed that the list command shows no device(or controller according to bluetoothctl). Also hcitool dev command, rfkill list all etc showed no hci device in my system. Then to check if it is a hardware issue I booted from live ubuntu 19.04 and tried to use bluetooth. In that case my bluetooth worked perfectly. Then when I booted from my debian system again in my surprise I noticed that now my bluetooth is working without any problem! After rebooting, again my bluetooth device is lost! I can't find any hci device in my debian system. Why is this happening? Here are some information about my system and relevant command outputs when bluetooth device isn't found: $ cat /etc/os-release Code: Select allPRETTY_NAME="Debian GNU/Linux 9 (stretch)" NAME="Debian GNU/Linux" VERSION_ID="9" VERSION="9 (stretch)" ID=debian HOME_URL="https://www.debian.org/" SUPPORT_URL="https://www.debian.org/support" BUG_REPORT_URL="https://bugs.debian.org/" $ lspci Code: Select all00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09) 00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09) 00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04) 00:16.0 Communication controller: Intel Corporation 7 Series/C216 Chipset Family MEI Controller #1 (rev 04) 00:1a.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #2 (rev 04) 00:1b.0 Audio device: Intel Corporation 7 Series/C216 Chipset Family High Definition Audio Controller (rev 04) 00:1c.0 PCI bridge: Intel Corporation 7 Series/C216 Chipset Family PCI Express Root Port 1 (rev c4) 00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4) 00:1d.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #1 (rev 04) 00:1f.0 ISA bridge: Intel Corporation HM76 Express Chipset LPC Controller (rev 04) 00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04) 00:1f.3 SMBus: Intel Corporation 7 Series/C216 Chipset Family SMBus Controller (rev 04) 01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller (rev 05) 02:00.0 Network controller: Qualcomm Atheros AR9485 Wireless Network Adapter (rev 01) $ sudo systemctl status bluetooth Code: Select all bluetooth.service - Bluetooth service Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled) Active: active (running) since Fri 2019-07-05 23:18:49 +06; 31min ago Docs: man:bluetoothd(8) Main PID: 2240 (bluetoothd) Status: "Running" Tasks: 1 (limit: 4915) CGroup: /system.slice/bluetooth.service └─2240 /usr/lib/bluetooth/bluetoothd Jul 05 23:18:49 multivac systemd[1]: Starting Bluetooth service... Jul 05 23:18:49 multivac bluetoothd[2240]: Bluetooth daemon 5.43 Jul 05 23:18:49 multivac systemd[1]: Started Bluetooth service. Jul 05 23:18:49 multivac bluetoothd[2240]: Starting SDP server Jul 05 23:18:49 multivac bluetoothd[2240]: Bluetooth management interface 1.14 initialized $ sudo rfkill list all Code: Select all0: phy0: Wireless LAN Soft blocked: no Hard blocked: no $ sudo hcitool dev Code: Select allDevices:
Do you have any error messages or similar relating to bluetooth in either dmesg or journalctl outputs? Perhaps non-free firmware or firmware of a particular revision number is needed for full functionality (I suppose the wifi and bluetooth are integrated into one chip).
Hello, Just wanted to ask if other users are experiencing the same issue as me. Whenever I try to login to the forum with my smartphone (android 9 -> chrome 76), the site says succesfully logged in, but afterwards my login session is terminated. thx
How long afterwards? I've just tried with Android 8 + Chrome 76 with no issues.
I've had a NAS4FREE Server that I've been using for years with Debian 8 (32 Bit). I've upgraded to Debian 9 (64 Bit) and now I can't ssh into my NAS4Free because of some change in ssh (or Openssh) that prevents me from being able to login. I've got Password Authentication enabled and also DSA Key Authentication enabled for testing. (Everything works fine from my old Debain 8 (32 Bit Laptop)). But, since changing to Debian 9 (64 Bit) I can ssh into my NAS4FREE Server. Here is the debug message I am getting, and it hangs at this point, until it times out. Code: Select alllarry@debian:~$ ssh -vvv lkraemer78@192.168.1.250 OpenSSH_7.4p1 Debian-10+deb9u6, OpenSSL 1.0.2s 28 May 2019 debug1: Reading configuration data /etc/ssh/ssh_config debug1: /etc/ssh/ssh_config line 19: Applying options for * debug2: resolving "192.168.1.250" port 22 debug2: ssh_connect_direct: needpriv 0 debug1: Connecting to 192.168.1.250 [192.168.1.250] port 22. ..................................................... ..................................................... debug1: connect to address 192.168.1.250 port 22: Connection timed out ssh: connect to host 192.168.1.250 port 22: Connection timed out The important lines of /etc/ssh/ssh_config are: Code: Select all# RSAAuthentication yes PasswordAuthentication yes HostbasedAuthentication yes # GSSAPIAuthentication no # # IdentityFile ~/.ssh/id_rsa IdentityFile ~/.ssh/id_dsa # IdentityFile ~/.ssh/id_ecdsa # IdentityFile ~/.ssh/id_ed25519 Port 22 Protocol 2,1 # Cipher 3des # Code: Select all$man ssh Public key authentication The file ~/.ssh/authorized_keys lists the public keys that are permitted for logging in. ............ The user should then copy the public key to ~/.ssh/authorized_keys in his/her home directory on the remote machine. But, my NAS4FREE doesn't have a /home/user directory available. Code: Select allnas4free:/# pwd / nas4free:/# ls -alt total 37 dr-xr-xr-x 1 root wheel 0 Jul 27 06:14 proc drwxr-xr-x 3 root wheel 512 Jul 27 05:17 root drwxr-xr-x 14 root wheel 2048 Jul 27 04:49 etc drwxr-xr-x 4 root wheel 512 Jul 27 04:47 mnt -rw------- 1 www www 265 Jul 27 02:19 .websrv_htpasswd drwxr-xr-x 3 root wheel 1024 Jul 27 02:12 lib drwxr-xr-x 18 root wheel 512 Jul 27 02:12 . drwxr-xr-x 18 root wheel 512 Jul 27 02:12 .. drwxr-xr-x 13 root wheel 512 Jul 27 02:12 var lrwxr-xr-x 1 root wheel 8 Jul 27 02:12 home -> usr/home drwxr-xr-x 9 root wheel 512 Jul 27 02:12 usr dr-xr-xr-x 18 root wheel 512 Jul 27 02:12 dev drwxr-xr-x 5 root wheel 512 Feb 4 2013 cf drwxrwxr-x 2 root operator 512 Feb 4 2013 .snap drwxr-xr-x 2 root wheel 512 Feb 4 2013 conf.default drwxr-xr-x 2 root wheel 2048 Feb 4 2013 sbin drwxr-xr-x 2 root wheel 1024 Feb 4 2013 bin drwxr-xr-x 6 root wheel 512 Jan 31 2013 boot drwxr-xr-x 3 root wheel 512 Jan 31 2013 libexec lrwxr-xr-x 1 root wheel 7 Jan 31 2013 conf -> cf/conf lrwxr-xr-x 1 root wheel 8 Jan 31 2013 tmp -> /var/tmp drwxr-xr-x 2 root wheel 512 Jan 31 2013 ftmp nas4free:/mnt# pwd /mnt nas4free:/mnt# ls -alt drwxr-xr-x 4 root wheel 512 Jul 27 04:47 . drwx--x--x 2 root wheel 512 Jul 27 02:12 .ssh drwxr-xr-x 18 root wheel 512 Jul 27 02:12 .. drwxrwxrwx 12 root wheel 1024 Jul 26 13:45 store nas4free:/mnt# cd .ssh nas4free:/mnt/.ssh# ls -alt drwxr-xr-x 4 root wheel 512 Jul 27 06:17 .. drwx--x--x 2 root wheel 512 Jul 27 02:12 . -rw------- 1 root wheel 602 Jul 12 2012 authorized_keys2 nas4free:/mnt/.ssh# The main storage directory is /mnt/store So, I copied the authorized_keys2 file to authoried_keys, and it did not work to authenticate my connection. What am I missing? I need a developer or ssh GURU that can describe what changed so I can get my Laptop functional with Debian 9. I need a bit of help getting the ssh, scp, and Filezilla working with NAS4FREE from Debian 9. Thanks. Larry
You don't have any iptables or nftables rules that may be blocking you from traffic going out on port 22 do you? Obviously it isn't your router or modem doing it since you can connect with the other machine. Sorry I can't help more and I may have only stated the obvious that you already checked.
Hi all, I have Debian 10 running with few VirtualBox 6.0 instances. Each one of them have Remote Display option enabled (Oracle pack installed), so I can use RDP protocol to see desktop of each machine from my other PC. Each virtual machine have different port, everything works perfectly in my LAN network. I need to grant access to these VMs to WAN network, open ports in the router. The thing is, VirtualBox doesn't have any working authentication method. In VM's Settings/Display/Remote Display menu, I can see Authentication Method: Null, External, Guest. Null works fine without any password, but External and Guest just can't connect when I use Remote Desktop Manager in my Windows, same with Windows built-in Remote Desktop Connection - it doesn't ask for correct username/password, but just fails after 5 seconds. I don't get to ask how to set up this username and password. Anyone can share some ideas how to authenticate this over WAN? Maybe VirtualBox have some configuration option which I haven't seen? Or maybe I need to use some SSH, VPN tunneling or something?
Solved - used DDNS on the router, SSH server with EdDSA key (no password) opened to the world, on client side: PuTTY SSH authenticated with EdDSA key, with SSH tunnel to transfer RDP traffic from remote server to a localhost, then RDP viewer to connect to localhost:port (PuTTY brings traffic to localhost), and it works perfectly over WAN. All RDP un-authenticated traffic is encapsulated within secure SSH tunnel brought to life by PuTTY, it can be done with standard GNU tools as well I believe, so other Linux and Macs can have it too.
Hi everyone, I did a fresh install of Debian 10 and I kept the old /home partition intact. There were three users on this computer. I recreated the "main" one through the installation process, using the old username and password, and it was automatically associated to its original home folder ( /home/famille/ ). I do not know how to proceed to recreate the two other accounts and associate them to their old /home folders. I tried to use the adduser command but it does not work, neither does useradd, because in both cases loging in failed. What should I do? Thank you for your help! EDIT: So I created a user using the adduser command and it worked. I previously thought that I did not because I can only access this account and its home folder using tty. How do I enable graphical interface for this account? EDIT 2: I checked this page https://askubuntu.com/questions/159878/ ... er-account I verified that the user account was correctly associated to the original home folder but I cannot connect to the session yet. It seems that the accounts cannot use X11.
If you had user "joe", and after fresh install create user "joe", it's not the same (the numbers are different). To fix this, in cli or tty as you said as root: Code: Select allchown -R joe /home/joe/* and Code: Select allchown -R joe /home/joe.*
Code: Select allRepository 'http://deb.debian.org/debian buster InRelease' changed its 'Version' value from '' to '10.0'Repository 'http://deb.debian.org/debian buster InRelease' changed its 'Suite' value from 'testing' to 'stable'This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.Repository 'http://security.debian.org/debian-security buster/updates InRelease' changed its 'Version' value from '' to '10'Repository 'http://security.debian.org/debian-security buster/updates InRelease' changed its 'Suite' value from 'testing' to 'stable' I've been running Buster for weeks. Buster, not Testing, is in my sources. Is this something I need to address or just a temporary issue with the repositories right now? I see this in the terminal and in synaptic package manager. How do I 'accept' this? No option to do so in the terminal. Or is this just a temporary glitch? Not seen this before. Manpage doesn't seem to help. Running with MATE desktop. But seeing this on my other install with Xfce also.
Try Code: Select all# apt upgrade You should then receive a prompt asking to accept the change.
Hey all - I don't seem to recall this happening in the past (not a huge deal of course). When invoking a policy kit (policykit-1-gnome) and having gnome-keyring also, I seem to recall that it prompting for a password one time only. Now, when ever I reboot and the services that require this information, I seem to experience the request for a password and when I check to save, am prompted again for a keyring password. I cleared out ~/.local/share/keyrings thinking that the copy of the files that were there may have the incorrect permissions. Again,I don't seem to recall this happening before and since this is happening on a fresh build - I don't know if this is a SOP or not. And if not, what has someone done to correct this. TIA C.
Head_on_a_Stick wrote:So is this for your i3 desktop? How are you launching policykit-1-gnome? Have you exported the secrets for the gnome-keyring-daemon? For example: Code: Select all# ~/.profile export $(gnome-keyring-daemon --start --components=pkcs11,secrets) ^ That will need to go before the startx line (if you're using my suggestion). Sorry for the lateness in the reply, HoaS. Well - I'm not sure how to answer that so allow me to show you what I DO have. I have opted to remove most of my listings (runonce etc) from my i3 config in favor of adding them to my .xprofile - so here are the 2 entries. Code: Select all/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 & /usr/bin/gnome-keyring-daemon --start --components=pkcs11 & That's all I really ever had and it seemed to work as I described. Of course I could be wrong but I dont recall it ever asking on each boot up. I hope that tells you something. UPDATE: Meh - I worked it out after a little reading (it would help if I actually read the prompts when prompted). D'oh!!! C.
Hi folks - When installing a fresh copy of Debian, we are prompted for an environment. I think the default is the 1st listed of the choices (II want to say that it may be a stripped down version of Gnome?) but others are listed. For example, Gnome (assuming its ALL the Gnome bits) etc. My questions; 1. If you wanted to install an environment that is not listed of the choices, what is the best way to do this. Would it be simply to uncheck the 1st radio button and not install any environment (mainly its just a Debian install without X and all the other bits that go along with it). 2. If you allow the first option to be installed and opted to install something after a reboot etc, What is the best way to actually remove that version of Gnome without removing other dependencies like Xorg etc. I hope I articulated my points correctly and am hoping there is a way to remove the default desktop without ripping out what other DE/WM need. Thanks! C
#2 requires a bit of meta-package and intermediate package management knowledge.
switched from windows to deb a month ago and am a happy camper it does everything i need to do which is pretty much internet browsing and netflix had to switch because windows had outgrown my machine's hardware specs like a malignant tumour it ran slow a molasses and its not even that underpowered machine, i5 3rd gen, 4gig ram so my question is is there any reason u folks ever login into windows? anything u cant get done here in deb? forget games - not my scene. i would buy a dedicated gaming console if i ever wanted to dip into that
You should probably keep one windows machine available. Some things I need one for occasionally are bios tools, flash progs, hardware misc stuff that vendors release now and then, and of course halo and ff7 once every so often. Sometimes it's nearly impossible to get certain printers or other hardware to work on anything except windows. I think if you have a need for fat or ntfs devices it's probably better to do filesystem repair on windows. I really haven't found a better tool than chkdsk for those.
uname -r : 4.19.0-5-amd64 I am using Debian Buster Testing RC1, amd64 I was using VLC which was installed using synaptic package manager. Today I saw VLC in Upgraded (upstream) and upgraded it. This uninstalled VLC. I was not able to find VLC anymore so i uninstalled everything related to VLC. Now I tried to install VLC again but it is not showing up in synaptic package manager. I downloaded the VLC file directly and tried to install it but this is the error: Code: Select allsudo apt install /home/i/Downloads/libvlc-bin_3.0.6-0+deb9u1_amd64.deb Reading package lists... Done Building dependency tree Reading state information... Done Note, selecting 'libvlc-bin' instead of '/home/i/Downloads/libvlc-bin_3.0.6-0+deb9u1_amd64.deb' Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: libvlc-bin : Depends: libvlc5 (>= 3.0.6) but it is not installable E: Unable to correct problems, you have held broken packages. Only VLC-data and VLC-\10n is available and I have already install it but they are not showing in my system. Is there any way I can downgrade VLC and bring everything back to normal.
intellinux420 wrote:I am using Debian Buster Testing RC1 No, you are using Debian buster, "RC1" was the installer candidate. I hope you submitted feedback about the installer to the Debian developers. intellinux420 wrote:I was not able to find VLC anymore Here it is: https://packages.debian.org/buster/vlc A simulated installation went through on my Debian buster system (which was installed using the RC1 image) so you must have broken yours. Can we see Code: Select allapt policy
I just noticed Mousepad cannot open text files in the network. Other text editors can open those text files, but I want to use Mousepad. Similar thing was happening to LibreOffice, but I got it fixed by installing libreoffice-gnome. Is there a package I should install to fix this? If not what does it take to enable Mousepad to open files in the network? I am using Debian 10 (Testing) Xfce. Mousepad version 0.4.1. TIA
Can you drag a text file onto the network onto a running mousepad? Possibly stupid question, but do you have rights to read the file you're trying to open?
I followed the build process for wlroots and sway as outlined on their GitHub pages. Everything compiles and installs as it should, but when I run sway either on new tty or via GDM, it fails with: Code: Select allsway: error while loading shared libraries: libwlroots.so.3: cannot open shared object file: No such file or directory I have tried with different versions, both sway and wlroots master and sway 1.0 with wlroots 0.5. I noticed that both sway and wlroots when compiled install in /usr/local dir. What am I doing wrong? I am using Buster with GNOME. EDIT: Fixed it by adding my custom lib path to .bashrc
Wheelerof4te wrote:I noticed that both sway and wlroots when compiled install in /usr/local dir. That is the expected behaviour for a locally compiled program, it prevents conflicts with APT packages. You can build the latest version by adding a deb-src line for experimental and then using: Code: Select allapt source sway cd sway* uscan debuild -us -uc # dpkg -i ../sway*.deb
Hello I need to remove manually broken packages b43-fwcutter and firmware-b43-installer. This firmware I do not want to use, only remove but there is a some trouble during configuration and and can not remove by standard way using apt or dpkg. Thank you in advance for any proposal or advice.
cronoik wrote:Why can't it be removed by the standard way? Maybe because some action of a package removal script fails and returns an error. /var/lib/dpkg/info/$PACKAGE.{pre,post}rm otas.pe wrote:Sorry for Czech language. Prefix the command with "LANG=C" for output in English.
m figuring out how to run YARA to spot HiddenWasp infection what have i done till now? (have to list this bit to avoid bird poop), learned the following: * how to define YARA rules * how to install YARA * basic yara commands in cli * read manpage of memdump (Additionally, memdump manpage says it is not usable on machines using kernel 2.6 onwards, so m lost.) What i dont know? * how to run a predefined rule against 'in-memory artifacts' 3 pages of google search (yes i use google and i breathe) yields nothing useful to my single brain cell can anyone here with double digit brain cells (what a luxury) help me figure out how to do this? I know this vulnerability is only applicable to machines which are already breached. But i want to learn still. or i can always believe that i am using linux so hey m malware proof
sickpig wrote:m figuring out how to run YARA to spot HiddenWasp infection what have i done till now? (have to list this bit to avoid bird poop), learned the following: * how to define YARA rules * how to install YARA * basic yara commands in cli * read manpage of memdump (Additionally, memdump manpage says it is not usable on machines using kernel 2.6 onwards, so m lost.) What i dont know? * how to run a predefined rule against 'in-memory artifacts' You need a memory dump of a/your linux system. In kernels up to 2.6 you could use /dev/mem, but this is (normally) not allowed by the kernel anymore. AFAIK the only current software solution may be https://github.com/504ensicslabs/lime (but I have no experience with it). "Normally" you have hardware solutions which work no-matter-what with any kernel, etc. Good luck, and report if you succeed (or fail).
I had the same problem when it was Debian 9, On a Qemu VM,any way, I upgraded to testing, Debian 10 : Code: Select all $ lsb_release -a No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux buster/sid Release: testing Codename: buster All though it was the XFCE dvd ISO I used, I am not using Xfce, am using OpenBox , but any way, what I find annoying is that I boot, then get the login screen, that is fine, and I have OpenBox selected as my default WM, so I log in and OpenBox starts as expected. The annoying thing is if it is idle for even just a few minuets, it automatically logs out again, I want it to stay logged in, I will logout when I decide to logout, I don't like this automatic thing logging me out when ever it decides to. Any one know off hand how to disable this automatic log out thing ? Been doing some searches, but have not found anything yet, and I am busy , so hoping some one might know off hand. Thanks
Which display manager do you use? Is it lightdm with light-locker [1]? [1] https://packages.debian.org/buster/light-locker
Hello, everybody. I'm pretty stumbled upon the following issue: Debian 9, MATE. In order to make Qt apps (VLC, Virtualbox etc.) look the same, I installed qt5-gtk-platformtheme и qt5-style-plugins packages and put QT_QPA_PLATFORMTHEME=gtk2 into /etc/environment. Since I don't like font antialiasing, I've created the following ~/.config/fontconfig/fonts.conf (otherwise, Qt apps have antialiased fonts): Code: Select all<?xml version='1.0'?> <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> <fontconfig> <match target="font"> <edit name="rgba" mode="assign"> <const>none</const> </edit> </match> <match target="font"> <edit name="hinting" mode="assign"> <bool>true</bool> </edit> </match> <match target="font"> <edit name="hintstyle" mode="assign"> <const>hintmedium</const> </edit> </match> <match target="font"> <edit name="antialias" mode="assign"> <bool>false</bool> </edit> </match> </fontconfig> Now everything is perfect: native GTK apps like File manager and foreign Qt apps like VLC are uniform. But, unfortunately, this is not the case with Telegram. So, the question is: Is it possible to make Telegram ignore my fonts.conf? How can I make a particular application bypass my local font configuration? Thank you. UPDATE: Now it is solved. In order to make an application ignore local config execute it with: Code: Select allXDG_CONFIG_HOME= telegram-desktop Mind the space/gap between XDG_CONFIG_HOME= and the command itself.
Try Code: Select allXDG_CONFIG_HOME= telegram-desktop That will make it ignore all local configuration, not sure if that's what you want. I suppose you could copy ~/.config to ~/.config.telegram then change fonts.conf in the second location and use Code: Select allXDG_CONFIG_HOME="${HOME}/.config.telegram" telegram-desktop I don't use Telegram or Qt though so this is all guesswork. EDIT: and the paraphrase in your signature is wrong — the Bible says that the love of money is the root of all evil https://www.biblegateway.com/passage/?s ... ersion=KJV
Hello all. I installed Testing on an Asus TP210S (ISO file downloaded from https://ftp.acc.umu.se/cdimage/unoffici ... 64/iso-cd/, not the "edu" one), but X won't start. Here's Xorg.0.log from that laptop: https://pastebin.com/u8nJc5pr. I installed the packages intel-microcode and firmware-misc-nonfree but it still doesn't start X. When I query "lsmod|grep -i vga" nothing is returned. The package xserver-xorg-video-intel is installed; I report on this because the last time I had this problem on another laptop, it was solved by installing this package. On running "inxi -Gx" I found out that the driver loaded is modsetting, and it marks fbdev, vesa as unloaded; when trying to load vesa I get the error "FATAL: Module vesa not found in directory /lib/modules/4.19.0-4-amd64/"; when I try loading fbdev no error is produced but then I run lsmod|grep fbdev and nothing appears. Here's the output of "lsmod|grep -i video": https://pastebin.com/nahAuKFi Two other things: 1. Whenever I start the laptop, one of the first messages on screen is "Resuming from hibernation", which is quite odd because I just installed the system and haven't enabled hibernation (and I'm not planning on doing it). 2. If left to itself, after about 5 minutes without a login, the laptop will automatically shutdown. Any suggestions? I really want to install Testing on this one, specifically because of the more updated version of TeXLive, and because I bought this laptop to use at the office.
noober1983 wrote: When I query "lsmod|grep -i vga" nothing is returned. What about Code: Select alllspci|grep -i vga
Hi, I have a source tree (ucon64) that builds perfectly when I run "make" interactively, but when invoked by "dpkg-buildpackage" it is splitting Makefile variables, for example: Code: Select allcd libdiscmage && CFLAGS=-g -O2 -fdebug-prefix-map=/home/dan/Build/linux-packages/ucon64/ucon64-2.1.0=. -fstack-protector-strong -Wformat -Werror=format-security LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro /usr/bin/make /bin/sh: 1: -O2: not found It is executing "CFLAGS=-g" followed by "-O2", In this case CFLAGS and LDFLAGS should be enclosed with quotes, but it seems to have been unrolled as separate arguments. I haven't seen this before, does anyone know why this only happens with dpkg-buildpackage? Running "make" from the shell gets on with the build: Code: Select allcd libdiscmage && CFLAGS= LDFLAGS= make make[1]: Entering directory '/home/dan/Build/linux-packages/ucon64/ucon64-2.1.0/src/libdiscmage' gcc -I. -Wall -W -O3 -DHAVE_CONFIG_H -DDLL -DDLOPEN -fPIC -c libdm_misc.c -o libdm_misc.o Thanks!
https://www.debian.org/doc/debian-polic ... ld-options?
When trying to delete one bookmark, I managed to delete the sub-directory in which the bookmark was placed. When I learnt that FF automatically makes back-up copies of bookmarks, I thought I should save (far from FF) a copy made late in March. However, I have not been able to delete the bookmarks now present in FF. When I tried to bring in the bookmarks I had copied from FF to Chromium and Opera, I got the whole collection of bookmarks, each with three sub-folders -- and these were added to what was already present. I think there used to be a file named bookmarks.html but I cannot find it now. If I am told where the bookmarks of FF 60.6.1esr are placed by Buster pre-release, I could remove the whole lot and get them back from the saved back-up.
Not sure a Debian forum is the most appropriate for this Opera/Chrome/Firefox bookmark problem. However, bookmarks are saved here: Code: Select all# current bookmarks ~/.mozilla/firefox/<you_firefox_profile>/places.sqlite # backups ~/.mozilla/firefox/<you_firefox_profile>/bookmarkbackups/bookmarks*.jsonlz4
Get this error message, no sound in firefox using apulse. Anyone have any idea? Tried both std and esr channels, no go. Code: Select all[apulse] [error] do_connect_pcm: can't set sample format 14 ("FLOAT_LE") for playback device "default". Error code -22 (Invalid argument) [apulse] [error] do_connect_pcm: failed to open ALSA device. Apulse does no resampling or format conversion, leaving that task to ALSA plugins. Ensure that selected device is capable of playing a particular sample format at a particular rate. They have to be supported by either hardware directly, or by "plug" and "dmix" ALSA plugins which will perform required conversions on CPU. [Child 21121, MediaPlayback #2] WARNING: 7f0181e04050 OpenCubeb() failed to init cubeb: file /home/monsterovich/Distfiles/compile/firefox-66.0/dom/media/AudioStream.cpp, line 382 [Child 21121, MediaPlayback #2] WARNING: Decoder=7f0184420e00 [OnMediaSinkAudioError]: file /home/monsterovich/Distfiles/compile/firefox-66.0/dom/media/MediaDecoderStateMachine.cpp, line 3651
DebbyIan wrote:no sound in firefox using apulse The firefox-esr package in the Debian repositories is compiled with the --enable-alsa option and so does not need apulse or PulseAudio, try that instead. I think the firefox package in sid also uses that option but I'm not sure.
Hey, During the re-installation of Debian I had an option to set the numeric keypad mapping. Not knowing which to select I picked one, thinking I could always remap later. My numeric keypad is mapped like an ATM now. I haven't been able to find how to remap it like a classic keypad(1 left corner, 9 right top corner). I tried checking regional settings, keyboard mapping, 'dpkg-reconfigure keyboard-configuration' but all in vain. Does anyone know how to remap the numeric keypad, or has an idea? Thanks in advance, EarlGrey
Did you check the output of Code: Select alldebconf-show keyboard-configuration and the contents of /etc/default/keyboard ?
following guide at http://forums.debian.net/viewtopic.php?f=16&t=38976 to build deb from source by using dh-make. get error on dpkg-buildpackage error: Code: Select allProject ERROR: uchardet development package not found Makefile:52: recipe for target 'sub-src-ui-distclean' failed make[1]: *** [sub-src-ui-distclean] Error 3 make[1]: Leaving directory '/home/a/my_build/notepadqq-1' dh_auto_clean: make -j1 distclean returned exit code 2 debian/rules:18: recipe for target 'clean' failed make: *** [clean] Error 2 dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2 uchardet is installed for sure Code: Select allReading package lists... Done Building dependency tree Reading state information... Done uchardet is already the newest version (0.0.1-1+b2). 0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded. also all the dependencies are installed Code: Select allt5websockets5-dev libqt5svg5 libqt5svg5-dev libuchardet-dev Reading package lists... Done Building dependency tree Reading state information... Done libqt5svg5 is already the newest version (5.7.1~20161021-2+b2). libqt5svg5 set to manually installed. libqt5svg5-dev is already the newest version (5.7.1~20161021-2+b2). qttools5-dev-tools is already the newest version (5.7.1-1). qtwebengine5-dev is already the newest version (5.7.1+dfsg-6.1). libqt5websockets5-dev is already the newest version (5.7.1~20161021-4). libuchardet-dev is already the newest version (0.0.1-1+b2). qt5-default is already the newest version (5.7.1+dfsg-3+deb9u1). 0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded. followed the guide to the t, no other error besides the one reported above. anyone knows what gives?
Is this for notepadqq? They have a PPA available so you could use https://wiki.debian.org/CreatePackageFromPPA instead. Otherwise post the Makefile, you may have to call override_dh_auto_clean in debian/rules
Which one does 64 bit, Virtualbox no longer does but what about the other two?
kvm
Using AV Linux with debian stretch. I have spent days trying to troubleshoot this problem. I used Gnome Disk Utility to set most of my drives to noauto at boot. I can clearly see in fstab that they are set to noauto but still they are mounted. For the life of me I can't work out why. Reading the man for fstab it says drives marked noauto will not be mounted at boot. This however is just not the case. I have to use Disks to unmount them all after booting up. Any clues as to why this is happening would be greatly appreciated. Thanks in advance.
post your fstab, lets have a look
Strange problem I can't figure out, and I might not know all details.. Assumptions and Facts. 1. Working installation, full disk LUKS LVM as setup by debian installer at original install. Was Jessie, now stretch. 2. dd the image directly to alternate disk, new disk works as expected. Alternate tools; use qemu-img instead of dd qemu-img /dev/sdx directly to file (qcow2) and them qemu-img qcow2 to alternate disk. This results in a hang after grub times out to default boot, starts sequence, then never ask for password. No recovery. Or I pick recovery mode in grub, it echos all the magic, ask for key, accepts it and continues... Nothing seems altered once booted, updating grub or initramfs doesn't correct the issue. Ideas?
Hold the phones! The particular SSD may be the issue, subsequent boots always require recovery, however parts (?) of the disk are READ-ONLY. Well, freaky. Testing an image for smooth migration, the disk did go read only. Reboot to a fsck. Works. Aptitude can't lock... So I run it through a few rounds of badblocks, literally doubled the ssd's total LBA's written, poor thing. No errors anywhere. Re-image as usual... no issue. never mind.
I have been using mysqldump cammand for many years, but today it does not work. Code: Select allshum@debian:~$ sudo mysqldump -u root pmypassword --all-databases > /home/shum/storage/piwigo-dump/dump2019-03-31.sql Usage: mysqldump [OPTIONS] database [tables] OR mysqldump [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...] OR mysqldump [OPTIONS] --all-databases [OPTIONS] For more options, use mysqldump --help Please tell me what is wrong?
Never mind. Did not see the -p missing the -
=[ITALIANO]= Macchina in mio possesso: Server Debian 9 Ho un server e voglio installare PHP. Cercando di installarlo sto riscontrando vari problemi! Facendo Code: Select allsudo apt-get install php esce scritto questo errore: Code: Select allReading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: php : Depends: php7.3 but it is not going to be installed E: Unable to correct problems, you have held broken packages. Ho cercato online soluzioni a questo problema ma di funzionanti non ne ho trovata neanche una. =[INGLESE]= Machine in my possession: Debian Server 9 I have a server and want to install PHP. Trying to install it I am experiencing various problems! Making Code: Select allsudo apt-get install php I find this error: Code: Select all Reading package lists ... Done Building dependency tree Reading state information ... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some packages have not been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: php: Depends: php7.3 but it is not going to be installed E: Unable to correct problems, you have held broken packages. I searched online for solutions to this problem but I did not find any of them working.
@Head_on_a_Stick Even "Allora perché provate a installare la versione php dal buster Debian?" Italiano http://www.debianizzati.org/ http://www.debianitalia.org/
Hello... I tried to install the latest version 3.19.1 and install it with the .run file but I got into errors so I removed it and tried to reinstall the one from repositories which is 3.16.1 if I'm not mistaken. I'm running Debian 9.8 64bit and now, even hplip from repositories isn't working. hp-check shows this: Code: Select allCurrent contents of '/var/lib/hp/hplip.state' file: Plugins are not installed. Could not access file: No such file or directory Current contents of '~/.hplip/hplip.conf' file: warning: Could not access file: No such file or directory and also: Code: Select all--------------------- | Python Extentions | --------------------- cupsext CUPS-Extension REQUIRED - 3.16.11 OK - error: NOT FOUND OR FAILED TO LOAD! Please reinstall HPLIP and check for the proper installation of hpmudext. error: hpmudext IO-Extension REQUIRED - 3.16.11 MISSING 'Not Found or Failed to load, Please reinstall HPLIP' And when I try to run any of the other possible hp-* applications I always get an error like this: Code: Select all$hp-devicesettings Traceback (most recent call last): File "/usr/bin/hp-devicesettings", line 38, in <module> from base import device, utils, maint, tui, module File "/usr/share/hplip/base/device.py", line 41, in <module> from . import status File "/usr/share/hplip/base/status.py", line 49, in <module> import hpmudext ImportError: /usr/lib/python3/dist-packages/hpmudext.cpython-35m-x86_64-linux-gnu.so: undefined symbol: hpmud_make_par_uri I have checked for hpmudext and it is installed: Code: Select all$ dpkg --get-selections libhpmud0 libhpmud0:amd64 install Code: Select all$ dpkg --get-selections libhpmud-dev libhpmud-dev:amd64 install I have python2.7 and python3.5 installed Code: Select all$ which python /usr/local/bin/python $ python --version Python 2.7.13 $ which python3 /usr/bin/python3 $ python3 --version Python 3.5.3 pyqt5 is like this: Code: Select all$ dpkg -S pyqt5 python3-pyqt5: /usr/share/doc/python3-pyqt5/copyright python-pyqt5: /usr/share/doc/python-pyqt5 python-dbus.mainloop.pyqt5: /usr/share/doc/python-dbus.mainloop.pyqt5/changelog.Debian.gz python3-pyqt5: /usr/share/doc/python3-pyqt5/changelog.gz python3-dbus.mainloop.pyqt5: /usr/share/doc/python3-dbus.mainloop.pyqt5/changelog.gz python3-dbus.mainloop.pyqt5: /usr/share/doc/python3-dbus.mainloop.pyqt5/copyright python-dbus.mainloop.pyqt5: /usr/share/doc/python-dbus.mainloop.pyqt5 python3-dbus.mainloop.pyqt5: /usr/share/doc/python3-dbus.mainloop.pyqt5/changelog.Debian.gz python3-pyqt5: /usr/share/doc/python3-pyqt5 python-pyqt5: /usr/share/doc/python-pyqt5/copyright python-dbus.mainloop.pyqt5: /usr/share/doc/python-dbus.mainloop.pyqt5/copyright python-pyqt5: /usr/share/doc/python-pyqt5/changelog.Debian.gz python-dbus.mainloop.pyqt5: /usr/lib/python2.7/dist-packages/dbus/mainloop/pyqt5.x86_64-linux-gnu.so python3-dbus.mainloop.pyqt5: /usr/share/doc/python3-dbus.mainloop.pyqt5 python-pyqt5: /usr/share/doc/python-pyqt5/changelog.gz python3-dbus.mainloop.pyqt5: /usr/lib/python3/dist-packages/dbus/mainloop/pyqt5.cpython-35m-x86_64-linux-gnu.so python-dbus.mainloop.pyqt5: /usr/share/doc/python-dbus.mainloop.pyqt5/changelog.gz python3-pyqt5: /usr/share/doc/python3-pyqt5/changelog.Debian.gz python3-pyqt5: /usr/lib/x86_64-linux-gnu/qt5/plugins/designer/libpyqt5.so pyqt4 is like this: Code: Select all$ dpkg -S pyqt4 python3-pyqt4: /usr/share/doc/python3-pyqt4/changelog.Debian.amd64.gz python3-pyqt4: /usr/share/doc/python3-pyqt4/copyright python3-pyqt4: /usr/share/doc/python3-pyqt4 python3-pyqt4: /usr/share/doc/python3-pyqt4/THANKS python-qt4: /usr/lib/x86_64-linux-gnu/qt4/plugins/designer/libpyqt4.so python3-pyqt4: /usr/share/doc/python3-pyqt4/changelog.Debian.gz python3-pyqt4: /usr/share/doc/python3-pyqt4/changelog.gz I don't know what else I might be missing.
Ok, it's solved. Chose to compile from sources and it couldn't be easier! Now it's working smoothly! [SOLVED]
Somestimes when I press a key, especially after just switching to the terminal window, the laptop screen will flash completely black and then on again. Occasionally when it flahes black it stays black. If the screen stays black I am unable to do anything (Ctrl+Alt+F1 does nothing, Alt+PrntScrn+K does nothing). I then have to force restart with the power button. Dell Latitude E5510 Laptop. I've had ubuntu and/or debian on it for years without noticing the problem. I don't know how long the screen has been flashing but it has not been that long that it has started crashing. I just tried a fresh stretch install since I upgraded from jessie a while back. The effect is still there. One way to duplicate: Install from live usb image: debian-live-9.8.0-amd64-gnome.iso Open a Terminal. Type a command like "ls" or "whoami" and hit enter. Press windows/super key as if you were to switch windows. Move mouse away off terminal window. Move mouse back and click on terminal window to go back to it. Press up arrow. It triggers the flash about half the time. Repeat the last three if necessary. Any ideas? Do you think its a new bug or is my hardware going bad? Thanks
What is your graphics hardware and driver(s)? Code: Select alllspci -knn | grep -iA2 'vga\|3d' Is there anything printed to the systemd journal when this happens? You will have to enable persistent logging to check previous boots: Code: Select all# mkdir /var/log/journal
Hello, Sorry, I speak a little English. Why I see this screen, when if I try restart my Asus notebook? How to solving this problem? screenshot Please help me. Thanks!
Hello. At the (initramfs) prompt, type fsck -f /dev/sda1 to check/repair your file system.
Debian stable 9.8 Debian package beets, program beet does not work. I start it:Code: Select allbeet import Music/, it scans and suggests corrections to each album, but on average, after every two albums, it will stop to this error: Code: Select allUnicodeDecodeError: 'utf8' codec can't decode byte 0xe4 in position 55: invalid continuation byte beets author says, that is corrected in next version: https://github.com/beetbox/beets/issues/2225 So tried Code: Select allpip install beets, but the same error persists. beet resumes fine, but seeing the same error time after time... What would help?
arzgi wrote:Code: Select allpip install beets Probably not a good idea: https://xkcd.com/1987/ If the problem occurs with the very latest version (as supplied by `pip`) then perhaps informing upstream would be the best idea.
Debian stable 9.8 I a drawed a cad image while ago. Between I reinstalled Debian, and now I do not remember wich CAD it was. It was a program from Debian repo. Does any one know which cad, available in Debian repo, creates .sch files? The file:Code: Select allv 20130925 2 C 40000 40000 0 0 0 title-B.sym C 41200 50300 1 0 0 5V-plus-1.sym C 41200 45000 1 0 0 5V-minus-1.sym N 41400 48700 41400 50300 4 N 41400 49700 47600 49700 4 N 41400 48700 47700 48700 4 T 47300 49800 9 10 1 0 0 0 1 G1+ T 47300 48800 9 10 1 0 0 0 1 G2+ N 41400 45000 41800 45000 4 N 41800 45000 41800 47300 4 N 41800 46500 44000 46500 4 C 44000 46400 1 0 0 resistor-1.sym { T 44300 46800 5 10 0 0 0 0 1 device=RESISTOR T 44200 46700 5 10 1 1 0 0 1 refdes=R2 10k } C 44100 47200 1 0 0 resistor-1.sym { T 44400 47600 5 10 0 0 0 0 1 device=RESISTOR T 44300 47500 5 10 1 1 0 0 1 refdes=R1 10 k } N 44100 47300 41800 47300 4 N 45000 47300 47800 47300 4 N 44900 46500 47800 46500 4 T 47400 47400 9 10 1 0 0 0 1 G1- T 47400 46600 9 10 1 0 0 0 1 G2- N 45000 47300 45000 48100 4 N 45000 48100 45900 48100 4 N 44900 46500 44900 45700 4 N 44900 45700 46000 45700 4 T 45100 48000 9 10 1 0 0 0 2 pymcu AI5 T 45200 45800 9 10 1 0 0 0 1 pymcu AI6 T 50100 40700 9 10 1 0 0 0 1 kosteus T 50000 40400 9 10 1 0 0 0 1 kosteus T 50000 40100 9 10 1 0 0 0 1 1 T 51500 40100 9 10 1 0 0 0 1 1 T 53800 40400 9 10 1 0 0 0 1 1 T 53800 40100 9 10 1 0 0 0 1 AK
https://en.wikipedia.org/wiki/.sch_(file_extension) https://fileinfo.com/software/geda/geda https://filext.com/file-extension/SCH
I have Debian testing LXDE. In any application when I click on something like "Website" - instead of opening web address in browser, I got error message. Example: In LibreOffice->About I clicked on button "Website" I got the following message: "/home/anton/https:/www.libreoffice.org/en: No such file or directory". (My username is "anton".) The same story in another applications. So - why is web address prefixed with "/home/anton/"?
Check the output of Code: Select allxdg-settings get default-web-browser Then look in either /usr/share/applications or ~/.local/share/applications (the latter location will be preferred if it exists) for the .desktop file given in the output and see what the "Exec" line says. It should be Code: Select allExec=exo-open --launch WebBrowser %u
Some weeks ago I just installed Debian in my older Pentium D desktop PC. It's an old 2GB machine, I was running Linux mint , but I decided to wipe everything and install Arch linux. So, I already had Arch running, but I also wanted to have Debian installed. After installing it, I could no longer boot my Arch linux because it crashed with a "kernel panic" message. So, I thought whatever could be wrong wouldn't be wrong if I installed something else. So I installed Manjaro, and everything was fine for a few days. Except today. Today I updated Debian and while it works fine, the update also updated Debian's GRUB and ruined Manjaro. Now Manjaro doesn't boot giving a "kernel panic" message. How do I know Debian updated GRUB? Easy. I had set a GRUB custom theme from Manjaro with a different background and all, now the theme is Debian's GRUB theme! Here I provide a screenshot with the exact kernel panic message: https://photos.app.goo.gl/zDBNquDaH33xCBfp9 Really it broke my other distro twice now.
Isakku wrote:Here I provide a screenshot with the exact kernel panic message The message indicates that the kernel cannot find the root device. This may mean that : - the kernel does not use an initrd/initramfs and the root= parameter was not passed properly by GRUB to the kernel command line ; check in grub.cfg. - the kernel is supposed to use an initrd/initramfs but none was specified in grub.cfg or GRUB failed to load it. The latter is more likely to happen on modern systems which mostly use a modular kernel and an initramfs. Either may be caused by failure of Debian grub-mkconfig/os-prober to properly parse the contents of Arch /boot and /boot/grub/grub.cfg. Without seeing the contents of Arch's /boot and grub.cfg, I cannot be more precise. To work around this, you can manually add a menu entry in Debian's grub.cfg to chainload Arch's GRUB from Debian's GRUB. If you don't want update-grub or grub-install to be run on kernel or GRUB package updates, remove the grub-pc package but leave the other grub-* packages. The script installed by boot-info-script is bootinfoscript. It is in the system path, you do not have to prepend it with ./ or anything.
I'm interrested in JRE/JDK 8 support in Debian(stretch). I know that is IcedTea(JDK). But, I couldn't find any document.
I think it will be supported as long as stretch is supported? sometime around 2022? https://wiki.debian.org/DebianReleases
Hello. I have modified my bashrc to add to my prompt the return value of last command. This works fine on most machines, but one. Upon login, most machines report 0 (true). But one machine reports false. Login process is fine; but inside the tasget host, the prompt reports 1 just at login time. After digging, I have to this: Code: Select all# head /etc/profile echo 4 return 5 And during login: Code: Select allDebian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Mon Feb 11 18:15:26 2019 from 2a01:e35:xx 4 -bash-4.4# echo $? 1 -bash-4.4# echo $? 0 -bash-4.4# As you see, I was expecting 5, but got 1. How to dig deeper than profile ? who loads profile ? What represents $? on the very first execution of prompt ? Is there a way to force $? to 0 ? for example, ending bashrc with true did not help.
...but login hasn't exited, so there wouldn't be a value yet? Probably the return/exit code from the last command preceding login...? Strange issue, not sure where I'd look. Probably syslog, or the journal? Could it be motd? lastlog? just guessing. Anything executed in a startup like ~.bashrc might be another guess. too busy to look it up... https://duckduckgo.com/html/?q=linux+pid+last+command
Hi trying to autostart applications via systemd service as my WM does not have any autostart section in it created service in /home/a/.config/systemd/user my script: [Unit] Description=to autostart stuff desktop independant [Service] Type=simple Environment=DISPLAY=:0 Environment="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games" ExecStart=/usr/bin/starty [Install] WantedBy=default.target upon running journalctl --user-unit starty.service i get below - Logs begin at Wed 2019-01-23 22:16:57 AEDT, end at Wed 2019-01-23 22:18:41 AE Jan 23 22:17:26 a systemd[1323]: Started to autostart stuff desktop independant. But my applications are not autostarting appreciate help thank you
sickpig wrote:my WM does not have any autostart section in it Add the desired autostart programs to ~/.xsessionrc, that should be parsed for any GUI session. For systemd autostart, see this thread: https://unix.stackexchange.com/question ... th-systemd
Hello again to everyone willing to enlight and help! This time I have a question related to inodes. I know the inode is a unique information set of data that identifies a file uniquely on a given linux system. So far so good. I am developing a script to tag multimedia files, basically photos and videos, so it is easier to find relevant files. I have tried a couple of apps but they are not as consistent as I expected. My questions are: 1) If I have /home mounted on a separate partition, does the inode of the files on /home change if I share that partition between two different linux systems? 2) If I have multimedia files in an external drive, does the inode of the files on that drive change between different linux systems? I case they change, how can I identify those files uniquely even when their name is changed? Are you aware of a really robust and consistent tag system? Thanks for your time! Best regards! *Edit: topic name.
You want the tags in the file, not the filesystem, or it's not portable, and therefore mostly useless.
Debian Version: 4.9.0-8-amd64 Distributor ID: Debian Description: Debian GNU/Linux 9.6 (stretch) Release: 9.6 Codename: stretch Desktop Environment: Debia-XFCE VLC Version: VLC media player 3.0.3 Vetinari (revision 3.0.3-1-0-gc2bb759264) VLC version 3.0.3 Vetinari (3.0.3-1-0-gc2bb759264) Compiled by buildd on x86-ubc-01.debian.org (Jul 18 2018 11:55:20) Compiler: gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1) vlc -vvv Output: Code: Select alluser@debian:~$ vlc -vvv VLC media player 3.0.3 Vetinari (revision 3.0.3-1-0-gc2bb759264) [00005593e99e41a0] main libvlc debug: VLC media player - 3.0.3 Vetinari [00005593e99e41a0] main libvlc debug: Copyright © 1996-2018 the VideoLAN team [00005593e99e41a0] main libvlc debug: revision 3.0.3-1-0-gc2bb759264 [00005593e99e41a0] main libvlc debug: configured with ./configure '--build=x86_64-linux-gnu' '--prefix=/usr' '--includedir=${prefix}/include' '--mandir=${prefix}/share/man' '--infodir=${prefix}/share/info' '--sysconfdir=/etc' '--localstatedir=/var' '--disable-silent-rules' '--libdir=${prefix}/lib/x86_64-linux-gnu' '--libexecdir=${prefix}/lib/x86_64-linux-gnu' '--disable-maintainer-mode' '--disable-dependency-tracking' '--config-cache' '--disable-update-check' '--enable-fast-install' '--docdir=/usr/share/doc/vlc' '--with-binary-version=3.0.3-1-0+deb9u1' '--enable-a52' '--enable-aa' '--enable-bluray' '--enable-avahi' '--enable-caca' '--enable-chromaprint' '--enable-chromecast' '--enable-dbus' '--enable-dca' '--enable-dvbpsi' '--enable-dvdnav' '--enable-faad' '--enable-flac' '--enable-fluidsynth' '--enable-freerdp' '--enable-freetype' '--enable-fribidi' '--enable-gles2' '--enable-gnutls' '--enable-harfbuzz' '--enable-jack' '--enable-kate' '--enable-libass' '--enable-libmpeg2' '--enable-libxml2' '--enable-lirc' '--enable-live555' '--enable-mad' '--enable-matroska' '--enable-mod' '--enable-mpc' '--enable-mpg123' '--enable-mtp' '--enable-ncurses' '--enable-notify' '--enable-ogg' '--enable-opus' '--enable-pulse' '--enable-qt' '--enable-realrtsp' '--enable-samplerate' '--enable-sdl-image' '--enable-sftp' '--enable-shine' '--enable-shout' '--enable-skins2' '--enable-sndio' '--enable-soxr' '--enable-speex' '--enable-svg' '--enable-svgdec' '--enable-taglib' '--enable-theora' '--enable-twolame' '--enable-upnp' '--enable-vdpau' '--enable-vnc' '--enable-vorbis' '--enable-x264' '--enable-x265' '--enable-zvbi' '--with-kde-solid=/usr/share/solid/actions/' '--disable-aribsub' '--disable-d3d11va' '--disable-decklink' '--disable-directx' '--disable-dsm' '--disable-dxva2' '--disable-fdkaac' '--disable-fluidlite' '--disable-goom' '--disable-gst-decode' '--disable-libplacebo' '--disable-libtar' '--disable-macosx' '--disable-macosx-avfoundation' '--disable-macosx-qtkit' '--disable-mfx' '--disable-opencv' '--disable-projectm' '--disable-schroedinger' '--disable-sparkle' '--disable-srt' '--disable-telx' '--disable-vpx' '--disable-vsxu' '--disable-wasapi' '--enable-alsa' '--enable-dc1394' '--enable-dv1394' '--enable-linsys' '--enable-nfs' '--enable-omxil' '--enable-udev' '--enable-v4l2' '--enable-wayland' '--enable-libva' '--enable-vcd' '--enable-smbclient' '--disable-oss' '--enable-crystalhd' '--enable-mmx' '--enable-sse' '--disable-neon' '--disable-altivec' 'build_alias=x86_64-linux-gnu' 'CFLAGS=-g -O2 -fdebug-prefix-map=/build/vlc-SXzg1C/vlc-3.0.3-1=. -fstack-protector-strong -Wformat -Werror=format-security ' 'LDFLAGS=-Wl,-z,relro -Wl,-z,now -Wl,--as-needed' 'CPPFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2' 'CXXFLAGS=-g -O2 -fdebug-prefix-map=/build/vlc-SXzg1C/vlc-3.0.3-1=. -fstack-protector-strong -Wformat -Werror=format-security ' 'OBJCFLAGS=-g -O2 -fdebug-prefix-map=/build/vlc-SXzg1C/vlc-3.0.3-1=. -fstack-protector-strong -Wformat -Werror=format-security' [00005593e99e41a0] main libvlc debug: searching plug-in modules [00005593e99e41a0] main libvlc debug: loading plugins cache file /usr/lib/x86_64-linux-gnu/vlc/plugins/plugins.dat [00005593e99e41a0] main libvlc debug: recursively browsing `/usr/lib/x86_64-linux-gnu/vlc/plugins' [00005593e99e41a0] main libvlc debug: plug-ins loaded: 517 modules [00005593e99e41a0] main libvlc debug: opening config file (/home/r2/.config/vlc/vlcrc) [00005593e99e4510] main logger debug: looking for logger module matching "any": 4 candidates [00005593e99e4510] main logger debug: using logger module "console" [00005593e99e41a0] main libvlc debug: translation test: code is "C" [00005593e99e4760] main keystore debug: looking for keystore module matching "memory": 4 candidates [00005593e99e4760] main keystore debug: using keystore module "memory" [00005593e99e41a0] main libvlc debug: CPU has capabilities MMX MMXEXT SSE SSE2 SSE3 SSSE3 FPU [00005593e9a72340] main input debug: Creating an input for 'Media Library' [00005593e9a72340] main input debug: Input is a meta file: disabling unneeded options [00005593e9a72340] main input debug: using timeshift granularity of 50 MiB [00005593e9a72340] main input debug: using default timeshift path [00005593e9a72340] main input debug: `file/directory:///home/r2/.local/share/vlc/ml.xspf' gives access `file' demux `directory' path `/home/r2/.local/share/vlc/ml.xspf' [00005593e9a808c0] main input source debug: creating demux: access='file' demux='directory' location='/home/r2/.local/share/vlc/ml.xspf' file='/home/r2/.local/share/vlc/ml.xspf' [00005593e9a80a40] main demux debug: looking for access_demux module matching "file": 17 candidates [00005593e9a80a40] main demux debug: no access_demux modules matched [00005593e9a9ae10] main stream debug: creating access: file:///home/r2/.local/share/vlc/ml.xspf [00005593e9a9ae10] main stream debug: (path: /home/r2/.local/share/vlc/ml.xspf) [00005593e9a9ae10] main stream debug: looking for access module matching "file": 28 candidates [00005593e9a9ae10] main stream debug: using access module "filesystem" [00005593e9a9bd80] main stream debug: looking for stream_filter module matching "prefetch,cache_read": 26 candidates [00005593e9a9bd80] cache_read stream debug: Using stream method for AStream* [00005593e9a9bd80] cache_read stream debug: starting pre-buffering [00005593e9a9bd80] cache_read stream debug: received first data after 0 ms [00005593e9a9bd80] cache_read stream debug: pre-buffering done 296 bytes in 0s - 3959 KiB/s [00005593e9a9bd80] main stream debug: using stream_filter module "cache_read" [00005593e9a9cf10] main stream debug: looking for stream_filter module matching "any": 26 candidates [00005593e9a9cf10] playlist stream debug: using XSPF playlist reader [00005593e9a9cf10] main stream debug: using stream_filter module "playlist" [00005593e9a9cf10] main stream debug: stream filter added to 0x5593e9a9bd80 [00005593e9aa0360] main stream debug: looking for stream_filter module matching "any": 26 candidates [00005593e9aa0360] main stream debug: no stream_filter modules matched [00005593e9aa0360] main stream_directory debug: looking for stream_directory module matching "any": 1 candidates [00005593e9aa0360] main stream_directory debug: no stream_directory modules matched [00005593e9a808c0] main input source debug: attachment of directory-extractor failed for file:///home/r2/.local/share/vlc/ml.xspf [00005593e9aa4270] main stream debug: looking for stream_filter module matching "record": 26 candidates [00005593e9aa4270] main stream debug: using stream_filter module "record" [00005593e9a808c0] main input source debug: creating demux: access='file' demux='directory' location='/home/r2/.local/share/vlc/ml.xspf' file='/home/r2/.local/share/vlc/ml.xspf' [00005593e9aa4a90] main demux debug: looking for demux module matching "directory": 55 candidates [00005593e9aa4a90] main demux debug: using demux module "directory" [00005593e9aa54b0] main demux meta debug: looking for meta reader module matching "any": 2 candidates [00005593e9aa54b0] lua demux meta debug: Trying Lua scripts in /home/r2/.local/share/vlc/lua/meta/reader [00005593e9aa54b0] lua demux meta debug: Trying Lua scripts in /usr/lib/x86_64-linux-gnu/vlc/lua/meta/reader [00005593e9aa54b0] lua demux meta debug: Trying Lua playlist script /usr/lib/x86_64-linux-gnu/vlc/lua/meta/reader/filename.luac [00005593e9aa54b0] lua demux meta debug: Trying Lua scripts in /usr/share/vlc/lua/meta/reader [00005593e9aa54b0] main demux meta debug: no meta reader modules matched [00005593e9a72340] main input debug: `file/directory:///home/r2/.local/share/vlc/ml.xspf' successfully opened [00005593e9aaf850] main xml reader debug: looking for xml reader module matching "any": 1 candidates [00005593e9aaf850] main xml reader debug: using xml reader module "xml" [00005593e9a72340] main input debug: EOF reached [00005593e9aa4a90] main demux debug: removing module "directory" [00005593e9aa4270] main stream debug: removing module "record" [00005593e9a9cf10] main stream debug: removing module "playlist" [00005593e9a9bd80] main stream debug: removing module "cache_read" [00005593e9a9ae10] main stream debug: removing module "filesystem" [00005593e9a6f750] main playlist debug: creating audio output [00005593e9a9ac70] main audio output debug: looking for audio output module matching "any": 6 candidates [00005593e9a9ac70] vlcpulse audio output debug: using library version 10.0.0 [00005593e9a9ac70] vlcpulse audio output debug: (compiled with version 10.0.0, protocol 32) [00005593e9a9ac70] vlcpulse audio output debug: connected locally to unix:/run/user/1000/pulse/native as client #44 [00005593e9a9ac70] vlcpulse audio output debug: using protocol 32, server protocol 32 [00005593e9a9ac70] pulse audio output debug: adding sink 0: alsa_output.pci-0000_00_1b.0.analog-stereo (Built-in Audio Analog Stereo) [00005593e9a9ac70] main audio output debug: using audio output module "pulse" [00005593e9a6f750] main playlist debug: keeping audio output [00005593e9ab5c10] main interface debug: looking for interface module matching "dbus,none": 19 candidates [00005593e9ab5c10] dbus interface debug: listening on dbus as: org.mpris.MediaPlayer2.vlc.instance12039 [00005593e9ab5c10] main interface debug: using interface module "dbus" [00005593e9ab9af0] main interface debug: looking for interface module matching "hotkeys,none": 19 candidates [00005593e9ab9af0] main interface debug: using interface module "hotkeys" [00005593e9aba680] main interface debug: looking for interface module matching "globalhotkeys,none": 19 candidates [00005593e9aba680] main interface debug: using interface module "xcb_hotkeys" [00005593e99e41a0] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface. [00005593e9abb7d0] main interface debug: looking for interface module matching "any": 19 candidates [00005593e9abb7d0] qt interface debug: Boring first Run Wizard QWidget::setMinimumSize: (/FirstRun) Negative sizes (-492131588,-492131668) are not possible [00007f04b8505c00] main generic debug: looking for extension module matching "any": 1 candidates [00007f04b8505c00] lua generic debug: Opening Lua Extension module [00007f04b8505c00] lua generic debug: Trying Lua scripts in /home/r2/.local/share/vlc/lua/extensions [00007f04b8505c00] lua generic debug: Trying Lua scripts in /usr/lib/x86_64-linux-gnu/vlc/lua/extensions [00007f04b8505c00] lua generic debug: Trying Lua playlist script /usr/lib/x86_64-linux-gnu/vlc/lua/extensions/VLSub.luac [00007f04b8505c00] lua generic debug: Scanning Lua script /usr/lib/x86_64-linux-gnu/vlc/lua/extensions/VLSub.luac [00007f04b8505c00] lua generic debug: Script /usr/lib/x86_64-linux-gnu/vlc/lua/extensions/VLSub.luac has the following capability flags: 0x5 [00007f04b8505c00] lua generic debug: Trying Lua scripts in /usr/share/vlc/lua/extensions [00007f04b8505c00] main generic debug: using extension module "lua" QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::font: Painter not active QPainter::setFont: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::setFont: Painter not active QPainter::setPen: Painter not active QPainter::setWorldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::translate: Painter not active QPainter::scale: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::translate: Painter not active QPainter::scale: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::drawRects: Painter not active QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::drawRects: Painter not active QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::setBrush: Painter not active QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::translate: Painter not active QPainter::scale: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::translate: Painter not active QPainter::scale: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::drawRects: Painter not active QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::drawRects: Painter not active QPainter::end: Painter not active, aborted QPainter::begin: Paint device returned engine == 0, type: 2 QPainter::save: Painter not active QPainter::setPen: Painter not active QPainter::setBrush: Painter not active QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::setRenderHint: Painter must be active to set rendering hints QPainter::worldTransform: Painter not active QPainter::setWorldTransform: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::setOpacity: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::brush: Painter not active QPainter::setBrush: Painter not active QPainter::pen: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::opacity: Painter not active QPainter::brush: Painter not active QPainter::pen: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::drawPath: Painter not active QPainter::setPen: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::drawPath: Painter not active QPainter::setBrush: Painter not active QPainter::setOpacity: Painter not active QPainter::setBrush: Painter not active QPainter::setPen: Painter not active QPainter::setWorldTransform: Painter not active QPainter::restore: Unbalanced save/restore QPainter::end: Painter not active, aborted [00005593e9abb7d0] main interface debug: using interface module "qt" [00005593e9a6f750] main playlist: playlist is empty [00005593e9a6f750] main playlist debug: nothing to play QWidget::setMinimumSize: (/FirstRun) Negative sizes (-492131588,-492131668) are not possible QXcbConnection: XCB error: 2 (BadValue), sequence: 419, resource id: 0, major code: 1 (CreateWindow), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 420, resource id: 14680069, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 421, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 422, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 423, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 425, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 426, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 427, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 431, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 435, resource id: 14680069, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 436, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 439, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 440, resource id: 14680069, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 444, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 445, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 448, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 449, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 2 (BadValue), sequence: 451, resource id: 0, major code: 1 (CreateWindow), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 452, resource id: 14680073, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 453, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 454, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 455, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 457, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 458, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 459, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 460, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 464, resource id: 14680073, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 465, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 468, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 469, resource id: 14680073, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 473, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 474, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 475, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 478, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 481, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 482, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 499, resource id: 14680073, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 500, resource id: 14680073, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 501, resource id: 14680073, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 502, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 503, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 504, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 505, resource id: 14680073, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 506, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 507, resource id: 14680073, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 508, resource id: 14680073, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 509, resource id: 14680073, major code: 8 (MapWindow), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 511, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 512, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 2 (BadValue), sequence: 521, resource id: 0, major code: 1 (CreateWindow), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 522, resource id: 14680080, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 523, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 524, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 525, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 527, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 528, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 529, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 530, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 534, resource id: 14680080, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 535, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 538, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 539, resource id: 14680080, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 543, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 544, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 547, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 548, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 550, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 551, resource id: 14680080, major code: 12 (ConfigureWindow), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 552, resource id: 14680080, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 553, resource id: 14680080, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 554, resource id: 14680080, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 555, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 556, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 557, resource id: 14680080, major code: 19 (DeleteProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 558, resource id: 14680080, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 559, resource id: 14680080, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 560, resource id: 14680080, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 561, resource id: 14680080, major code: 19 (DeleteProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 562, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 563, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 564, resource id: 14680069, major code: 12 (ConfigureWindow), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 565, resource id: 14680069, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 566, resource id: 14680069, major code: 2 (ChangeWindowAttributes), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 567, resource id: 14680069, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 568, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 569, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 570, resource id: 14680069, major code: 19 (DeleteProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 571, resource id: 14680069, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 572, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 573, resource id: 14680069, major code: 20 (GetProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 574, resource id: 14680069, major code: 19 (DeleteProperty), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 575, resource id: 14680069, major code: 8 (MapWindow), minor code: 0 QXcbConnection: XCB error: 3 (BadWindow), sequence: 577, resource id: 14680069, major code: 18 (ChangeProperty), minor code: 0 QWidget::setMinimumSize: (/FirstRun) Negative sizes (-492131588,-492131668) are not possible Question: I start vlc with any method and the things play, however without a GUI! This is very bad, I need to control video fast forward via GUI. Switched resolutions and workspaces trying to find the GUI, just no GUI to be found, unlike it worked before. This looks like a glitch as there are various other posts about it with 0 solution.
What video driver are you using? (install inxi and report what "inxi -G" outputs, in code tags this time.)
vlc-l10n - package Translations for VLC , on VLC installation ? tia !
Install vlc without Recommends. Also, ask yourself if you should be running Sid if you have to ask these sort of questions. Especially when you don't let others know you're running Sid in the first place, right off.
I built wireguard from the source following the official instructions and the stable WireGuard-0.0.20181119 version. If I use another kernel I have this problem: Code: Select allwg-quick up wg0 [#] ip link add wg0 type wireguard RTNETLINK answers: Operation not supported Unable to access interface: Protocol not supported [#] ip link delete dev wg0 Cannot find device "wg0" How can I remove it? I used make and after make install but make uninstall: Code: Select allmake uninstall make: *** No rule to make target 'uninstall'. Stop.
If you have a manifest.txt then try Code: Select allcat install_manifest.txt | xargs echo sudo rm | sh If not then list the install steps with Code: Select allmake -n install then reverse them EDIT: http://forums.debian.net/viewtopic.php?t=38976
I can't figure it out. I am no computer wiz, but I usually find solutions through google searching/trial and error uninstalling and switching off features...etc....etc...... I plug in ANYTHING into the audio jack of my laptop, and the volume is loud and clear for about half a second, and then the volume drops low and stays low. I have to amp up the volume much higher than normal to achieve a good listening volume. Sometimes youtube videos are so low, I crank up the volume on the system tray to 150% and youtube video volume all the way up, AND THE VOLUME IS STILL TOO LOW. I got headphones with a mic, earbuds, and desktop speakers with a subwoofer. Anything I plug in, it always happens. I looked through out ALL the audio settings. I looked for a profile setting for audio reduction, or safety feature to prevent ear damage, and I CAN'T FIND ANYTHING. I uninstalled alsa, didn't make a difference. Reinstalled it and uninstalled pulseaudio, no difference again. I emailed a tech rep (one that charges) and I got no response in days. It's not my HP laptop. I was using kali linux before switching to debian, and there was no volume reduction when plugging in anything. It was loud and clear. NORMAL. I don't want to install another linux distro just to avoid this issue. *****SOLVED******* go to page 3...
OP here: It's alsamixer. Open terminal - alsamixer: I noticed while having it opened and when I have nothing plugged in, the speaker volume is all the way up, and the headphone volume is muted and the sound is coming out of my laptop small built in speakers. When I plug in anything into the audio jack, the opposite happens; The headphones volume goes up to 100% and the speaker volume goes mute BUT THAT'S WHEN THE VOLUME GOES LOW FOR WHATEVER I PLUG IN. I manually boost the volume setting for "speaker", and tada, I get the full sound I had on kali linux. How do I modify this to permanently stay up. Am I the only one out there with this problem? I guess most people don't play loud music or movies like I do. I have auto-mute mode disabled. But when enabled, nothing changes.
hello I've just installed snapd on buster / testing and I would like to install the "node" snap that definitely exists on snapcraft : https://snapcraft.io/node Unfortunately I get this error : Code: Select allkrodelabestiole@micropoutre ~ sudo snap install node error: snap "node" not found searching for node gives me a list of snaps but no simple "node" : Code: Select allkrodelabestiole@micropoutre ~ snap find node Name Version Developer Notes Summary node-games 0+git.de4e610-dirty m4sk1n - Three fun console games written using Node. node-red 0.19.5 noderedteam - A visual tool for wiring the Internet of Things node-red-amd64 0.16.2 mikejac - Node-RED node-web-server-tcs-poc 1.0.0 ayushtcs - TCS POC on chuck norris quotation server ndsi-node-exporter 0.16.0 ndsi.ubuntu.admin - Prometheus Node Exporter microservicebus-node 2.0 wmmihaa - microservicebus-node is the node.js based agent used for microServiceBus.com bjornt-prometheus-node-exporter 0.13.0 bjornt - Prometheus Node Exporter libp2p-nodetrust-server 0.0.1 mkg20001 - Server for libp2p nodetrust sixd-node-snap 1.0.0 viagents - SixD node demo app hello-node-snap 1.0.2 bhdouglass - A simple hello world command nodeled 1.0.2 exoforce02 - A simple REST API to control an RGB LED on a Raspberry Pi fibre-framework 1.4.1 mrbenosborne - Event Driven | Web Server | NodeJS | Framework znode 0.13.7.6 4m8b - Znode for Zcoin project homebridge 0.4.45 ondra - HomeKit support for the impatient webstorm 2018.3.3 jetbrains classic Powerful IDE for modern JavaScript development kube-proxy 1.13.1 canonical classic Kubernetes network proxy runs on each node. amparewebslideshow 1.0.0 juthawong - Extract Image From Web and Display it as Slideshow widl-nan 0.1.7 test22222 - Auto generate native C++ addon source code by parsing Web IDL definition tor-middle-relay 0.3.4.10-1 chadmiller - Infrastructure node for other people's use of Tor network chuck-norris-webserver-classic 1.0.0 didrocks classic Chuck Norris quotation nodejs server chuck-norris-webserver 1.0.0 didrocks - Chuck Norris quotation nodejs server minetest-luk3yx 0.4.17.1-12-gdd5f0373 luk3yx - luk3yx's unofficial Minetest builds. Credit to the snappy playpen. kube-proxy-eks 1.10.3 canonical-cloud-snaps classic Kubernetes network proxy runs on each node. kubelet 1.13.1 canonical classic kubelet is the primary “node agent” that runs on each node in Kubernetes. trustgrid 1.0 trustgrid - Trustgrid node agent kubelet-eks 1.10.3 canonical-cloud-snaps classic kubelet is the primary “node agent” that runs on each node in Kubernetes. hello-bdmurray 0.1 bdmurray - A hello world style nodejs webserver app amparephonenumbercrawler 1.0.0 juthawong - Simple Node GUI Application To Crawl Phone Number From The Web neutroncoin-wallet 1.1.1 snapsbyjo - Cryptocurrency Wallet for Neutron ocf-util 1.3.1-0 ttzeng - Utilities for testing OCF devices bl-gateway 1.1 jessegrant - The node app that runs on the dell gateway. smartscreen 0.1.0 ypcloud - Social Screen Interaction paradrop-voice 0.1 lh - Enable voice output and recognition for Paradrop nodes. mist master obedm503 - automatic plant watering heimer 1.6.0 jussi-lind - Heimer is a simple cross-platform mind map tool. microk8s v1.13.1 canonical classic Kubernetes for workstations and appliances minikube 0.8.0 cmars - Run Kubernetes locally obsr v1.0.2 obsr - OBSR is OBServer's core wallet software. eureka-doom-editor 1.24 beidl - Eureka is a map editor for the classic DOOM games. keycloak-standalone-spicule 4.8.1 magicaltrout - Keycloak Single Sign On Server iota-mwc17 1.0.3 davadl - Wrapper to communicate with the iota demo dashboard mapscii 0.1.6 nhaines - The whole world in your console. tldr master agniva - Simplified and community-driven man pages audovia 3.7.1.2 songbuilder - Database application for making music using JFugue MusicStrings fetch-btc 1.2+git pl4gue - BTC price fetcher wonder-reader 1.0.1 msnitrogen - Wonder Reader detd 2.0-dist dataengrave - Det inkscape 0.92.3 inkscape - Vector Graphics Editor iri 1.1.0 iota - IOTA Reference Implementation verum-cli 2.1.0 scratso - The official Verum CLI interface app. Since I can't get to any documentation on how to handle repositories with snap I'm wondering what is happening here. I have a Solus and an ubuntu that successfully shows me this snap with many other more with no extra config. Any help would me appreciated, thanks !
Things like that can happen in testing. Can you install other packages? Otherwise I would recommend to open a bug report or ask at forum.snapcraft.io
Hi Is there any open source application, with GUI, that can implement Kanban, without requiring any server setup. I just intend to run it on my desktop, for personal use. Thankyou
https://greggigon.github.io/my-personal-kanban/ ?
Hello to everyone! I had recently made a fresh install of Debian 9.6 which uses MariaDB 10.1. Previously I was using 8.5 with MySQL 8.1 (which I still have on another partition). I found several issues with the usage of my databases. But there is one specific error which is annoying: Code: Select allMariaDB [<db>]> select * from <table>; ERROR 1932 (42S02): Table '<db>.<table>' doesn't exist in engine I have been searching around but found nothing useful to me and I really need to get those databases up because I make use of them on a daily basis. Thanks for your time! Best regards!
Code: Select all# journalctl -xe https://medium.com/@mcloide/moving-from ... cb042ed8d8
Hi, as title says ... i'm getting blind , need to take breaks every 10-15 minutes to relieve my eyes , TIA !
there is a method for working where you take 5 min brakes every 30 mins called the pomodoro or tomato technique. You could use these for your purpose. For example, there is a pomodoro gnome extnsion in the debian repo that allows you to set a duration for work and duration for pause. It will then after x amount of minutes darken the screen and tell you to take a brake. But you could also use more simpler techniques like a simple stop watch or systemd service that says "brake" every 10 mins or whatever other kind of scripting lnaguage / automation / timing programs there are.
When I restart my system (or bring it back up from suspend) my vpn automatically connects to my vpn provider's node in Texas. In order to connect to a closer node I have to disconnect from the Texas node and reconnect to one we'll call West for sake of discussion. I've done some searching and can't figure out how to change the default connection or if it's even possible. I'm using gnome network manager with network-manager-openvpn-gnome installed on debian stretch. Thanks in advance.
A little more info: Thinking I would try the easy, obvious route first, I simply deleted the "Texas" vpn configuration. The result was that eth0 failed to connect (it would connect and a second later disconnect). Thankfully I had a fresh clonezilla backup and was able to return things to the original config. Still hoping for some insight as to how network manager and this one particular vpn config could be linked.