[Bug 1809828] Re: Cannot install the npm package: dependency broken

2024-05-13 Thread psl
Ubuntu 18.04.6, amd64

Issue still not fixed:

$ node --version
v8.10.0

$ sudo apt install npm
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 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:
 npm : Depends: node-gyp (>= 0.10.9) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

node-gyp is not installed on my system.

This is in repository:

$ apt show node-gyp
Package: node-gyp
Version: 3.6.2-1ubuntu1
Priority: extra
Section: universe/web
Origin: Ubuntu
...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1809828

Title:
  Cannot install the npm package: dependency broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/npm/+bug/1809828/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1969859] Re: tlsv1.0 was removed

2022-04-21 Thread psl
I am not sure but it is possible that all the trouble I see in modern
distributions are caused by switch OPENSSL_TLS_SECURITY_LEVEL=2 in
OpenSSL lib. I cannot use certificate with weak key (1024 bits is weak
now), I cannot connect to clients with TLSv1.0 and TLSv1.1, etc.

$ openssl version -a 
OpenSSL 1.1.1f  31 Mar 2020
built on: Wed Mar  9 12:12:45 2022 UTC
platform: debian-amd64
options:  bn(64,64) rc4(16x,int) des(int) blowfish(ptr) 
compiler: gcc -fPIC -pthread -m64 -Wa,--noexecstack -Wall -Wa,--noexecstack -g 
-O2 -fdebug-prefix-map=/build/openssl-2iuOVN/openssl-1.1.1f=. 
-fstack-protector-strong -Wformat -Werror=format-security 
-DOPENSSL_TLS_SECURITY_LEVEL=2 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC 
-DOPENSSL_CPUID_OBJ -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT 
-DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM 
-DSHA512_ASM -DKECCAK1600_ASM -DRC4_ASM -DMD5_ASM -DAESNI_ASM -DVPAES_ASM 
-DGHASH_ASM -DECP_NISTZ256_ASM -DX25519_ASM -DPOLY1305_ASM -DNDEBUG -Wdate-time 
-D_FORTIFY_SOURCE=2
OPENSSLDIR: "/usr/lib/ssl"
ENGINESDIR: "/usr/lib/x86_64-linux-gnu/engines-1.1"
Seeding source: os-specific

This is Ubuntu 18.04, it has no switch OPENSSL_TLS_SECURITY_LEVEL and I
had more freedom to experiment with security protocols:

$ openssl version -a
OpenSSL 1.1.1  11 Sep 2018
built on: Wed Mar  9 12:13:40 2022 UTC
platform: debian-amd64
options:  bn(64,64) rc4(16x,int) des(int) blowfish(ptr) 
compiler: gcc -fPIC -pthread -m64 -Wa,--noexecstack -Wall -Wa,--noexecstack -g 
-O2 -fdebug-prefix-map=/build/openssl-vxXVMf/openssl-1.1.1=. 
-fstack-protector-strong -Wformat -Werror=format-security 
-DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSL_CPUID_OBJ 
-DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 
-DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DKECCAK1600_ASM 
-DRC4_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DGHASH_ASM 
-DECP_NISTZ256_ASM -DX25519_ASM -DPADLOCK_ASM -DPOLY1305_ASM -DNDEBUG 
-Wdate-time -D_FORTIFY_SOURCE=2
OPENSSLDIR: "/usr/lib/ssl"
ENGINESDIR: "/usr/lib/x86_64-linux-gnu/engines-1.1"
Seeding source: os-specific
root@budgie:~# openssl version -a | grep blow
options:  bn(64,64) rc4(16x,int) des(int) blowfish(ptr) 
root@budgie:~# openssl version -a | grep LEVEL

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1969859

Title:
  tlsv1.0 was removed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/curl/+bug/1969859/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1964122] Re: Cannot connect to router with admin page over TLS v1.0

2022-04-21 Thread psl
haproxy 2.0 doesn't like private key that is not strong enough (only
1024 bits).

I generated new certificate for key that has 2048 bits just to find that
this certificate is accepted but TLSv1.0 was removed from haproxy or
some SSL library, haproxy 2.0.13 cannot connect to the old router...:-(
haproxy cannot connect to the router and reports error 503 - Service
unavailable.

This is a script to generate new certificate, inspired by
https://gist.github.com/yuezhu/47b15b4b8e944221861ccf7d7f5868f5

$ cat gen-new-pem.sh
#!/bin/sh

FNAME="firewall"
DAYS=370
NUMBITS=2048

# Generate a unique private key (KEY)
openssl genrsa -out $FNAME.key $NUMBITS

# Generating a Certificate Signing Request (CSR)
openssl req -new -key $FNAME.key -out $FNAME.csr

# Creating a Self-Signed Certificate (CRT)
openssl x509 -req -days $DAYS -in $FNAME.csr -signkey $FNAME.key -out $FNAME.crt

# Append KEY and CRT to mydomain.pem
cat $FNAME.key $FNAME.crt > $FNAME.pem

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1964122

Title:
  Cannot connect to router with admin page over TLS v1.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1964122/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1969859] [NEW] tlsv1.0 was removed

2022-04-21 Thread psl
Public bug reported:

Mint 20.3 (Ubuntu 20.04)

$ curl -V
curl 7.68.0 (x86_64-pc-linux-gnu) libcurl/7.68.0 OpenSSL/1.1.1f zlib/1.2.11 
brotli/1.0.7 libidn2/2.2.0 libpsl/0.21.0 (+libidn2/2.2.0) 
libssh/0.9.3/openssl/zlib nghttp2/1.40.0 librtmp/2.3
Release-Date: 2020-01-08
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 
pop3s rtmp rtsp scp sftp smb smbs smtp smtps telnet tftp 
Features: AsynchDNS brotli GSS-API HTTP2 HTTPS-proxy IDN IPv6 Kerberos 
Largefile libz NTLM NTLM_WB PSL SPNEGO SSL TLS-SRP UnixSockets

It seems that support for TLSv1.0 was removed from curl or some SSL
library. It is not possible to use curl to test if web site still
supports tls v1.0. I have some old devices in my lab those support only
TLS v1.0 and it is difficult to use those in 2022 because all major WWW
browsers dropped support for TLS v1.0 & v1.1 and now I see that even CLI
tools remove support for those obsolete protocols... :-( I noticed
problems with haproxy an hour ago and just now I see that even curl
cannot be used...

Following command was working in Ubuntu 18.04 but it doesn't work in
20.04 anymore (error is unsupported protocol), oldrouter supports only
tlsv1.0:

$ curl -v -k --tlsv1.0 https://oldrouter.lan:445/
*   Trying 192.168.17.1:445...
* TCP_NODELAY set
* Connected to ipcop.home (192.168.17.1) port 445 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* TLSv1.3 (IN), TLS handshake, Server hello (2):
* TLSv1.3 (OUT), TLS alert, protocol version (582):
* error:1425F102:SSL routines:ssl_choose_client_version:unsupported protocol
* Closing connection 0
curl: (35) error:1425F102:SSL routines:ssl_choose_client_version:unsupported 
protocol

** Affects: curl (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1969859

Title:
  tlsv1.0 was removed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/curl/+bug/1969859/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1964122] Re: Cannot connect to router with admin page over TLS v1.0

2022-04-21 Thread psl
I installed Mint 20.3 (Ubuntu 20.04) to new desktop PC. haproxy was
upgraded to 2.0.13 and it doesn't  work with configuration that was
written for haproxy 1.8.8. The problem is with certificate file, haproxy
reports problem with configuration file, with line "bind". haproxy
cannot find SSL certificate (unable to load SSL certificate from PEM
file)... I spent hour on this issue and so far I do not know what is
wrong and how to fix it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1964122

Title:
  Cannot connect to router with admin page over TLS v1.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1964122/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1965167] [NEW] Bad data stored in QR code

2022-03-16 Thread psl
Public bug reported:

Linux Mint 19.3 (Ubuntu 18.04)
QtQR 1.4~bzr23-1

I try to create QR code for TurtleCoin address but QR code is rejected
as invalid in TonChan wallet (Android).

Wallet address used for QR code generation:

TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw

When I try to read QR code generated in QtQR in TonChan Android wallet
(https://play.google.com/store/apps/details?id=com.tonchan), it is
rejected. I try to send some coins to that address and I read address
from QR code.

When I create QR code with other tool, like here, it is accepted in
TonChan.

https://api.qrserver.com/v1/create-qr-
code/?size=150x150&qzone=5&ecc=Q&data=TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw

So, I used online QR code decoder https://zxing.org/w/decode.jspx and I
see that QtQR stores extra information to the QR code and those are
wrong... It is a BUG in QtQR.

Attachments: TRTL-DEMO-QR-QtQR-INVALID.png & TRTL-DEMO-QR-API-OK.png.

---

TRTL-DEMO-QR-API-OK.png decoded:

Raw text
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw

Raw bytes
46 35 45 25 44 c7 57 a7   24 e4 47 75 66 96 36 e3
87 94 e7 77 03 16 e5 34   86 87 76 64 65 a7 34 64
77 55 45 03 33 63 36 e4   36 25 26 73 63 53 15 a5
17 95 a6 64 13 95 93 36   e3 87 a7 96 53 75 84 45
65 94 d6 54 83 16 b6 76   96 83 76 46 86 95 53 46
85 25 56 b5 65 26 64 a7   05 34 d7 24 87 87 27 84
87 06 46 77 70 ec 11 ec   11 ec 11 ec 11 ec

Barcode format  QR_CODE
Parsed Result Type  TEXT
Parsed Result
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw

---

TRTL-DEMO-QR-QtQR-INVALID.png decoded, note section with UPC_E data that
stores value 10582572:

Raw text
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw

Raw bytes
46 6e fb bb f5 45 25 44   c7 57 a7 24 e4 47 75 66
96 36 e3 87 94 e7 77 03   16 e5 34 86 87 76 64 65
a7 34 64 77 55 45 03 33   63 36 e4 36 25 26 73 63
53 15 a5 17 95 a6 64 13   95 93 36 e3 87 a7 96 53
75 84 45 65 94 d6 54 83   16 b6 76 96 83 76 46 86
95 53 46 85 25 56 b5 65   26 64 a7 05 34 d7 24 87
87 27 84 87 06 46 77 70   ec 11 ec 11 ec 11

Barcode format  QR_CODE
Parsed Result Type  TEXT
Parsed Result
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw

Raw text
10582572
Raw bytes
(Not applicable)
Barcode format  UPC_E
Parsed Result Type  PRODUCT
Parsed Result
10582572

---

Try to replicate...

** Affects: qr-tools (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "QtQR, invalid QR is created"
   
https://bugs.launchpad.net/bugs/1965167/+attachment/5569732/+files/TRTL-DEMO-QR-QtQR-INVALID.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1965167

Title:
  Bad data stored in QR code

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qr-tools/+bug/1965167/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1965167] Re: Bad data storedin QR code

2022-03-16 Thread psl
** Attachment added: "QR code that is valid (not QtQR)"
   
https://bugs.launchpad.net/ubuntu/+source/qr-tools/+bug/1965167/+attachment/5569733/+files/TRTL-DEMO-QR-API-OK.png

** Description changed:

  Linux Mint 19.3 (Ubuntu 18.04)
  QtQR 1.4~bzr23-1
  
- I try to create QR code for TurtleCoin address but code QR code is rejected 
as invalid in TonChan wallet (Android).
-  
+ I try to create QR code for TurtleCoin address but QR code is rejected
+ as invalid in TonChan wallet (Android).
+ 
  Wallet address used for QR code generation:
  
  
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw
  
  When I try to read QR code generated in QtQR in TonChan Android wallet
  (https://play.google.com/store/apps/details?id=com.tonchan), it is
  rejected. I try to send some coins to that address and I read address
  from QR code.
  
  When I create QR code with other tool, like here, it is accepted in
  TonChan.
  
  https://api.qrserver.com/v1/create-qr-
  
code/?size=150x150&qzone=5&ecc=Q&data=TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw
  
  So, I used online QR code decoder https://zxing.org/w/decode.jspx and I
  see that QtQR stores extra information to the QR code and those are
  wrong... It is a BUG in QtQR.
  
- 
  Attachments: TRTL-DEMO-QR-QtQR-INVALID.png & TRTL-DEMO-QR-API-OK.png.
  
  ---
  
- 
  TRTL-DEMO-QR-API-OK.png decoded:
  
- Raw text  
+ Raw text
  
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw
  
- Raw bytes 
+ Raw bytes
  46 35 45 25 44 c7 57 a7   24 e4 47 75 66 96 36 e3
  87 94 e7 77 03 16 e5 34   86 87 76 64 65 a7 34 64
  77 55 45 03 33 63 36 e4   36 25 26 73 63 53 15 a5
  17 95 a6 64 13 95 93 36   e3 87 a7 96 53 75 84 45
  65 94 d6 54 83 16 b6 76   96 83 76 46 86 95 53 46
  85 25 56 b5 65 26 64 a7   05 34 d7 24 87 87 27 84
- 87 06 46 77 70 ec 11 ec   11 ec 11 ec 11 ec 
+ 87 06 46 77 70 ec 11 ec   11 ec 11 ec 11 ec
  
  Barcode formatQR_CODE
  Parsed Result TypeTEXT
- Parsed Result 
+ Parsed Result
  
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw
  
  ---
  
  TRTL-DEMO-QR-QtQR-INVALID.png decoded, note section with UPC_E data that
  stores value 10582572:
  
- Raw text  
+ Raw text
  
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw
  
- Raw bytes 
+ Raw bytes
  46 6e fb bb f5 45 25 44   c7 57 a7 24 e4 47 75 66
  96 36 e3 87 94 e7 77 03   16 e5 34 86 87 76 64 65
  a7 34 64 77 55 45 03 33   63 36 e4 36 25 26 73 63
  53 15 a5 17 95 a6 64 13   95 93 36 e3 87 a7 96 53
  75 84 45 65 94 d6 54 83   16 b6 76 96 83 76 46 86
  95 53 46 85 25 56 b5 65   26 64 a7 05 34 d7 24 87
- 87 27 84 87 06 46 77 70   ec 11 ec 11 ec 11 
+ 87 27 84 87 06 46 77 70   ec 11 ec 11 ec 11
  
  Barcode formatQR_CODE
  Parsed Result TypeTEXT
- Parsed Result 
+ Parsed Result
  
TRTLuzrNDwVicn8yNwp1nSHhwfFZsFGuTP363nCbRg651ZQyZfA9Y3n8zye7XDVYMeH1kgih7dhiU4hRUkVRfJpSMrHxrxHpdgw
  
- Raw text  
+ Raw text
  10582572
- Raw bytes 
+ Raw bytes
  (Not applicable)
  Barcode formatUPC_E
  Parsed Result TypePRODUCT
- Parsed Result 
+ Parsed Result
  10582572
  
  ---
  
  Try to replicate...

** Summary changed:

- Bad data storedin QR code
+ Bad data stored in QR code

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1965167

Title:
  Bad data stored in QR code

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qr-tools/+bug/1965167/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1964122] Re: Cannot connect to router with admin page over TLS v1.0

2022-03-14 Thread psl
Most WWW browsers removed support for TLS v1.0 & v1.1, including browsers on 
tablets, etc.
I just need an easy way to connect to my old router and I will need access it 
during migration to some newer replacement.

I have found that "HAProxy" can be used to create a proxy with TLS v1.3 to 
device with TLS v1.0, described at
https://discourse.haproxy.org/t/frontend-tls1-3-backend-tls1-0/4162

HAProxy configuration is tricky, this is my configuration that I can
start at PC with Ubuntu and allows me to connect with any modern WWW
browser to my old router. It is a workaround. This is my first
configuration of HAProxy, experienced user can design better solution...

EXAMPLE. HAProxy listens at https://localhost: and redirects to web
admin interface of my router that is at https:192.168.222.1:445

```
$ cat haproxy-firewall.cfg

# haproxy -f haproxy-firewall.cfg

global
# global settings here
tune.ssl.default-dh-param 2048

defaults
# defaults here
timeout connect 5s
timeout client 50s
timeout server 50s

frontend firewall_in_
# a frontend that accepts requests from clients
bind *: tfo ssl crt firewall.crt
mode http
option forwardfor
http-request redirect scheme https code 301 if !{ ssl_fc }
http-request redirect scheme https if !{ ssl_fc }
http-request add-header X-Forwarded-Proto https
http-response set-header X-Content-Type-Options: nosnif
http-response set-header Referrer-Policy no-referrer-when-downgrade
default_backend firewall_in_445

backend firewall_in_445
# servers that fulfill the requests
mode http
option forwardfor
option http-server-close
http-request set-header X-Forwarded-Port %[dst_port]
http-request add-header X-Forwarded-Proto https if { ssl_fc }
# CONNECT TO THE ROUTER
server firewall 192.168.222.1:445 maxconn 50 ssl verify none cookie 
firewall1
```

Config file refers to TLS certificate firewall.crt, I used certificates
from my router but you can create whatever you need. File firewall.crt
looks like this:

```
$ cat firewall.crt

-BEGIN CERTIFICATE-
MIIBoTCCAQoCCQD0JGamOKwuIDANBgkqhkiG9w0BAQQFADAVMRMwEQYDVQQDEwpp
...
-END CERTIFICATE-

-BEGIN RSA PRIVATE KEY-
MIICXAIBAAKBgQDTR0YioAYxPdq4qKzUVMLDfxUBB+qcd05L39fInHx5MlRhnoKX

-END RSA PRIVATE KEY-
```

TEST:
```
$ curl -v -s --tlsv1.3 https://localhost:
* Rebuilt URL to: https://localhost:/
*   Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to localhost (127.0.0.1) port  (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* TLSv1.3 (IN), TLS handshake, Server hello (2):
* TLSv1.3 (IN), TLS Unknown, Certificate Status (22):
* TLSv1.3 (IN), TLS handshake, Unknown (8):
* TLSv1.3 (IN), TLS Unknown, Certificate Status (22):
* TLSv1.3 (IN), TLS handshake, Certificate (11):
* TLSv1.3 (OUT), TLS alert, Server hello (2):
* SSL certificate problem: self signed certificate
* stopped the pause stream!
* Closing connection 0
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1964122

Title:
  Cannot connect to router with admin page over TLS v1.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1964122/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1911837] Re: inxi, error "Use of uninitialized value $val2"

2022-03-09 Thread psl
I still see the problem at system with Linux Mint 20.1.

$ inxi -V
inxi 3.0.38-00 (2020-03-14)
...

$ ssh localhost -C "inxi -F -c0"
user@localhost's password: 
Use of uninitialized value $pid in concatenation (.) or string at /usr/bin/inxi 
line 5207.
Use of uninitialized value $konvi in substitution (s///) at /usr/bin/inxi line 
5208.
System:Kernel: 5.4.0-90-generic x86_64 bits: 64 Console: N/A Distro: Linux 
Mint 20.1 Ulyssa 
...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1911837

Title:
  inxi, error "Use of uninitialized value $val2"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/inxi/+bug/1911837/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1964122] [NEW] Cannot connect to router with admin page over TLS v1.0

2022-03-08 Thread psl
Public bug reported:

firefox-97.0.2+linuxmint1+tricia

I cannot connect to web interface of my old router that is on local LAN.
It supports only TLS v1.0 and support for TLS v1.0 & 1.1 was removed in
Firefox v97... I know I should replace my router with some better
device, I already tried several times but new devices had other issues,
I always returned back to my old router... I do not think that it is
real security risk to have TLS v1.0 interface on local LAN...

Any idea how to connect to a device with TLS v1.0? Any idea for a
workaround? Maybe some proxy, or other browser, etc... I already tried
Chromium browser but it is the same, I cannot connect with TLSv1.0. Do I
really need to run old PC with W2k to manage my router?? ;-)

---

https://support.mozilla.org/en-US/kb/secure-connection-failed-firefox-
did-not-connect?as=u&utm_source=inproduct#w_tls-version-unsupported

Note: The option to enable TLS 1.0 and 1.1 has been removed from the
error page in Firefox version 97.

---

Router supports TLS v1.0 only:

$ curl -v -s --tlsv1.0 https://192.168.222.1:445
* Rebuilt URL to: https://192.168.222.1:445/
*   Trying 192.168.222.1...
* TCP_NODELAY set
* Connected to 192.168.222.1 (192.168.222.1) port 445 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
* TLSv1.0 (OUT), TLS handshake, Client hello (1):
* TLSv1.0 (IN), TLS handshake, Server hello (2):
* TLSv1.0 (IN), TLS handshake, Certificate (11):
* TLSv1.0 (OUT), TLS alert, Server hello (2):
* SSL certificate problem: self signed certificate
* stopped the pause stream!
* Closing connection 0

$ curl -v -s --tlsv1.1 https://192.168.222.1:445
* Rebuilt URL to: https://192.168.222.1:445/
*   Trying 192.168.222.1...
* TCP_NODELAY set
* Connected to 192.168.222.1 (192.168.222.1) port 445 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: /etc/ssl/certs
* TLSv1.1 (OUT), TLS handshake, Client hello (1):
* TLSv1.1 (IN), TLS handshake, Server hello (2):
* TLSv1.1 (OUT), TLS alert, Server hello (2):
* error:1425F102:SSL routines:ssl_choose_client_version:unsupported protocol
* stopped the pause stream!
* Closing connection 0

** Affects: firefox (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1964122

Title:
  Cannot connect to router with admin page over TLS v1.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1964122/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2022-03-06 Thread psl
*** This bug is a duplicate of bug 1882162 ***
https://bugs.launchpad.net/bugs/1882162

I have new, interesting case.

Ryzen motherboard with empty NVME slot. I installed Ubuntu to SATA
drive, it worked for several days. I added NVME SSD disk to M.2 NVME
slot on motherboard, disk is empty. After reboot, network interface was
not configured. Reason? Once NVME disk was added, eth interface was
renumbered from enp4s0 to enp5s0 and DHCP client was not started for
enp5s0. I modified /etc/netplan/00-installer-config.yaml file, I
replaced enp4s0 with enp5s0...

$ lspci | grep -i nvme
01:00.0 Non-Volatile memory controller: Sandisk Corp WD Blue SN500 / PC SN520 
NVMe SSD (rev 01)
$ lspci | grep -i eth
05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 
PCI Express Gigabit Ethernet Controller (rev 15)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1961057] [NEW] export to PDF from CLI

2022-02-16 Thread psl
Public bug reported:

ReText 7.0.1

This is not a bug but just a wish. I miss a batch mode of ReRext. I
would like to trigger export of MD file to PDF/HTML/ODT from command
line, with some parameter. Start ReText, open MD file, export it and
close ReText. Other option could be to show a command that is used
internally by ReText to export MD file. My aim is to be able to automate
the export process...

** Affects: retext (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1961057

Title:
  export to PDF from CLI

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1961057/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854092] Re: pbcopy & pbpaste for Linux

2022-01-07 Thread psl
Another idea for pbcopy & pbpaste use, simple snippet processor that
works in every application that works with clipboard. Could be useful if
you have to fill forms with similar values again and again...

```
# MAIN
#pbcopy  $OUT"
   echo -n "$OUT" | pbcopy  # write to clipboard
   fi
done
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1854092

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xsel/+bug/1854092/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1947473] Re: cannot view photos

2021-10-16 Thread psl
I see other problem. First photo was stored with wrong group.

$ ls -l /var/lib/zoph/ 
-rw-r--r-- 1 ubuntu ubuntu  2543347 May 30 21:33 img001.jpg
drwxr-sr-x 2 ubuntu zoph   4096 Oct 16 22:38 mid
drwxr-sr-x 2 ubuntu zoph   4096 Oct 16 22:38 thumb

I think I should see this:

-rw-r--r-- 1 ubuntu zoph  2543347 May 30 21:33 img001.jpg


** Description changed:

  zoph 0.9.4-4
  mysql-server 5.7.35-0ubuntu0.18.04.2
  Linux Mint 19.3 (Ubuntu 18.04)
  
  I installed zoph to my notebook and I try to configure it for the first
- time. I do not have experience with this package and it is painfull
+ time. I do not have experience with this package and it is painful
  process...
  
  I am at stage that I can login to the web interface
  (http://localhost/zoph/), I can create new user, album, places,
  categories. I miss any option to upload photos through web interface.
  
  I added my user to group "zoph" and now I can use "zoph CLI" interface
  (test "zoph -V").
  
  I uploaded the first photo with "zoph img001.jpg", it was without
  problem.
  
  THE BUG: I open "photos" (http://localhost/zoph/photos.php) in web
  interface and I see long SQL error:
  
  #0 db\db::query(db\select Object ([db\selectjoins] => ,[db\selectgroupby] => 
Array (),[*union] => Array (),[*subquery] => ,[*table] => zoph_photos,[*tables] 
=> Array ([p] => photos),[*alias] => p,[*fields] => Array ([0] => DISTINCT 
p.photo_id,[1] => p.name,[2] => p.path,[3] => p.width,[4] => 
p.height),[*params] => ,[*where] => ,[*having] => ,[*order] => Array ([0] => 
p.date asc,[1] => p.time asc,[2] => p.photo_id asc),[*count] => 12,[*offset] => 
0)) called at [/usr/share/zoph/www/php/classes/zophTable.inc.php:611] #1 
zophTable::getRecordsFromQuery(db\select Object ([db\selectjoins] => 
,[db\selectgroupby] => Array (),[*union] => Array (),[*subquery] => ,[*table] 
=> zoph_photos,[*tables] => Array ([p] => photos),[*alias] => p,[*fields] => 
Array ([0] => DISTINCT p.photo_id,[1] => p.name,[2] => p.path,[3] => 
p.width,[4] => p.height),[*params] => ,[*where] => ,[*having] => ,[*order] => 
Array ([0] => p.date asc,[1] => p.time asc,[2] => p.photo_id asc),[*count] => 
12,[*offset] => 0)) called at 
[/usr/share/zoph/www/php/photo_search.inc.php:477] #2 get_photos(Array (), 0, 
12, , user Object ([person] => person Object ([home] => ,[work] => ,[fields] => 
Array ([person_id] => 1,[first_name] => Unknown,[last_name] => 
Person,[middle_name] => ,[called] => ,[gender] => ,[dob] => ,[dod] => 
,[home_id] => ,[work_id] => ,[father_id] => ,[mother_id] => ,[spouse_id] => 
,[notes] => ,[coverphoto] => ,[pageset] => ,[email] => ,[createdby] => 
1)),[prefs] => prefs Object ([prefscolor_scheme] => ,[fields] => Array 
([user_id] => 1,[show_breadcrumbs] => 1,[num_breadcrumbs] => 8,[num_rows] => 
3,[num_cols] => 4,[max_pager_size] => 10,[random_photo_min_rating] => 
0,[reports_top_n] => 5,[color_scheme_id] => 1,[slideshow_time] => 5,[language] 
=> ,[recent_photo_days] => 7,[auto_edit] => 0,[camera_info] => 1,[allexif] => 
0,[autocomp_albums] => 1,[autocomp_places] => 1,[autocomp_categories] => 
1,[autocomp_photographer] => 1,[autocomp_people] => 1,[fullsize_new_win] => 
0,[view] => list,[autothumb] => highest,[child_sortorder] => sortname)),[lang] 
=> language Object ([iso] => en,[name] => English ,[languagefilename] => 
lang/en,[languagetranslations] => Array ()),[fields] => Array ([user_id] => 
1,[person_id] => 1,[user_class] => 0,[view_all_photos] => 1,[delete_photos] => 
1,[user_name] => admin,[password] => 
$2y$10$cFl.NZJDITXBg6Etl3udd.JpNkgzsRIwBoJf7f5AWqi9Itv1HJY6q,[browse_people] => 
1,[browse_places] => 1,[browse_tracks] => 1,[edit_organizers] => 
1,[detailed_people] => 1,[see_hidden_circles] => 1,[detailed_places] => 
1,[import] => 1,[download] => 1,[leave_comments] => 1,[allow_rating] => 
1,[allow_multirating] => 0,[allow_share] => 0,[lightbox_id] => ,[lastnotify] => 
,[lastlogin] => 2021-10-16 21:52:40,[lastip] => ::1))) called at 
[/usr/share/zoph/www/php/photos.php:64] SQLSTATE[HY000]: General error: 3065 
Expression #1 of ORDER BY clause is not in SELECT list, references column 
'zoph.p.date' which is not in SELECT list; this is incompatible with DISTINCT 
Fatal Error: SQL failed db.inc.php: 156.
  fatal error

** Description changed:

  zoph 0.9.4-4
  mysql-server 5.7.35-0ubuntu0.18.04.2
+ apache2 2.4.29-1ubuntu4.19
  Linux Mint 19.3 (Ubuntu 18.04)
  
  I installed zoph to my notebook and I try to configure it for the first
  time. I do not have experience with this package and it is painful
  process...
  
  I am at stage that I can login to the web interface
  (http://localhost/zoph/), I can create new user, album, places,
  categories. I miss any option to upload photos through web interface.
  
  I added my user to group "zoph" and now I can use "zoph CLI" interface
  (test "zoph -V").
  
  I uploaded the first photo with "zoph img001.jpg", it was without
  problem.
  
  THE BUG: I open "photos" (http://localhost/zoph/photos.php) in web
  interface a

[Bug 1947473] [NEW] cannot view photos

2021-10-16 Thread psl
Public bug reported:

zoph 0.9.4-4
mysql-server 5.7.35-0ubuntu0.18.04.2
Linux Mint 19.3 (Ubuntu 18.04)

I installed zoph to my notebook and I try to configure it for the first
time. I do not have experience with this package and it is painfull
process...

I am at stage that I can login to the web interface
(http://localhost/zoph/), I can create new user, album, places,
categories. I miss any option to upload photos through web interface.

I added my user to group "zoph" and now I can use "zoph CLI" interface
(test "zoph -V").

I uploaded the first photo with "zoph img001.jpg", it was without
problem.

THE BUG: I open "photos" (http://localhost/zoph/photos.php) in web
interface and I see long SQL error:

#0 db\db::query(db\select Object ([db\selectjoins] => ,[db\selectgroupby] => 
Array (),[*union] => Array (),[*subquery] => ,[*table] => zoph_photos,[*tables] 
=> Array ([p] => photos),[*alias] => p,[*fields] => Array ([0] => DISTINCT 
p.photo_id,[1] => p.name,[2] => p.path,[3] => p.width,[4] => 
p.height),[*params] => ,[*where] => ,[*having] => ,[*order] => Array ([0] => 
p.date asc,[1] => p.time asc,[2] => p.photo_id asc),[*count] => 12,[*offset] => 
0)) called at [/usr/share/zoph/www/php/classes/zophTable.inc.php:611] #1 
zophTable::getRecordsFromQuery(db\select Object ([db\selectjoins] => 
,[db\selectgroupby] => Array (),[*union] => Array (),[*subquery] => ,[*table] 
=> zoph_photos,[*tables] => Array ([p] => photos),[*alias] => p,[*fields] => 
Array ([0] => DISTINCT p.photo_id,[1] => p.name,[2] => p.path,[3] => 
p.width,[4] => p.height),[*params] => ,[*where] => ,[*having] => ,[*order] => 
Array ([0] => p.date asc,[1] => p.time asc,[2] => p.photo_id asc),[*count] => 
12,[*offset] => 0)) called at 
[/usr/share/zoph/www/php/photo_search.inc.php:477] #2 get_photos(Array (), 0, 
12, , user Object ([person] => person Object ([home] => ,[work] => ,[fields] => 
Array ([person_id] => 1,[first_name] => Unknown,[last_name] => 
Person,[middle_name] => ,[called] => ,[gender] => ,[dob] => ,[dod] => 
,[home_id] => ,[work_id] => ,[father_id] => ,[mother_id] => ,[spouse_id] => 
,[notes] => ,[coverphoto] => ,[pageset] => ,[email] => ,[createdby] => 
1)),[prefs] => prefs Object ([prefscolor_scheme] => ,[fields] => Array 
([user_id] => 1,[show_breadcrumbs] => 1,[num_breadcrumbs] => 8,[num_rows] => 
3,[num_cols] => 4,[max_pager_size] => 10,[random_photo_min_rating] => 
0,[reports_top_n] => 5,[color_scheme_id] => 1,[slideshow_time] => 5,[language] 
=> ,[recent_photo_days] => 7,[auto_edit] => 0,[camera_info] => 1,[allexif] => 
0,[autocomp_albums] => 1,[autocomp_places] => 1,[autocomp_categories] => 
1,[autocomp_photographer] => 1,[autocomp_people] => 1,[fullsize_new_win] => 
0,[view] => list,[autothumb] => highest,[child_sortorder] => sortname)),[lang] 
=> language Object ([iso] => en,[name] => English ,[languagefilename] => 
lang/en,[languagetranslations] => Array ()),[fields] => Array ([user_id] => 
1,[person_id] => 1,[user_class] => 0,[view_all_photos] => 1,[delete_photos] => 
1,[user_name] => admin,[password] => 
$2y$10$cFl.NZJDITXBg6Etl3udd.JpNkgzsRIwBoJf7f5AWqi9Itv1HJY6q,[browse_people] => 
1,[browse_places] => 1,[browse_tracks] => 1,[edit_organizers] => 
1,[detailed_people] => 1,[see_hidden_circles] => 1,[detailed_places] => 
1,[import] => 1,[download] => 1,[leave_comments] => 1,[allow_rating] => 
1,[allow_multirating] => 0,[allow_share] => 0,[lightbox_id] => ,[lastnotify] => 
,[lastlogin] => 2021-10-16 21:52:40,[lastip] => ::1))) called at 
[/usr/share/zoph/www/php/photos.php:64] SQLSTATE[HY000]: General error: 3065 
Expression #1 of ORDER BY clause is not in SELECT list, references column 
'zoph.p.date' which is not in SELECT list; this is incompatible with DISTINCT 
Fatal Error: SQL failed db.inc.php: 156.
fatal error

** Affects: zoph (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1947473

Title:
  cannot view photos

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/zoph/+bug/1947473/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1947459] [NEW] default page, ubuntu_logo.png is missing

2021-10-16 Thread psl
Public bug reported:

apache2 2.4.29-1ubuntu4.19
Linux Mint 19.3 (Ubuntu 18.04)

Once Apache is installed, it installs default home page
/var/www/html/index.html

That file refers to Ubuntu logo image, /icons/ubuntu_logo.png, but there
is no /var/www/html/icons folder.

This is fragment of html code from index.html:




  Apache2 Ubuntu Default Page

  

I fixed this cosmetic problem in the way I created symbolic link:

ln -s /usr/share/apache2/icons /var/www/html/icons

** Affects: apache2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1947459

Title:
  default page, ubuntu_logo.png is missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1947459/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1947451] Re: unzip, manpage doesn't describe -I -O switches

2021-10-16 Thread psl
** Summary changed:

- unzip, manpage doesn't describe -I -O swicthes
+ unzip, manpage doesn't describe -I -O switches

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1947451

Title:
  unzip, manpage doesn't describe -I -O switches

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unzip/+bug/1947451/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1947451] [NEW] unzip, manpage doesn't describe -I -O swicthes

2021-10-16 Thread psl
Public bug reported:

unzip 6.0-21ubuntu1.1
Linux Mint 19.3 (Ubuntu 18.04)

ZIP files doesn't store information about character set used to encode
filenames in the archive. In the case that user tries to extract ZIP
file created at Windows with unzip at Linux, filenames can be corrupted
in the case those contain characters from extended ASCII table...

unzip can handle this, it has switches "-I" and "-O" to specify encoding
of filenames in the archive.

$ unzip -h | grep CHARSET
  -O CHARSET  specify a character encoding for DOS, Windows and OS/2 archives
  -I CHARSET  specify a character encoding for UNIX and other archives

Information about these switches is missing in manual page (man unzip)

This is a way how to "list" files in ZIP file from Czech edition of
Windows at Ubuntu:

$ unzip -l -O CP852 archive-win.zip

File archive-win.zip is in format 2.0

Other problem is that it is not possible to instruct ZIP to create ZIP
archive with specific encoding; so I cannot create at Linux ZIP file
that has file names encoded in CP852 codepage, such archive could be
opened at Czech Windows without issue...

Another problem is that it is not possible to create ZIP file in older
format, like 2.0 (zip creates archives in format 3.0 (it seems it could
be a problem for Windows user because that file uses UTF-8 characters).
I am not sure what is problem here but there is a problem... I need a
computer with Windows to check details.

** Affects: unzip (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1947451

Title:
  unzip, manpage doesn't describe -I -O swicthes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unzip/+bug/1947451/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-05 Thread psl
** Description changed:

  Linux Mint 19.3 (Ubuntu 18.04)
  retext 7.0.1-1
  
  I tried to write a text in Czech language and I see that "czech
  characters" are rendered in really ugly way. I see this problem in
  preview mode and in PDF export. HTML export is good, HTML browser
  renders non-US characters as expected.
  
  I am not sure if this is Retext problem, it could be problem of fonts
  that are in Ubuntu. Anyway, the result is really bad :-(
  
  DEMO markdown:
  
  ```
  # Příliš žluťoučký kůň úpěl ďábelské ódy
  
  ## Příliš žluťoučký kůň úpěl ďábelské ódy
  
  ### Příliš žluťoučký kůň úpěl ďábelské ódy
  
  Příliš žluťoučký kůň úpěl ďábelské ódy
  
  **Příliš žluťoučký kůň úpěl ďábelské ódy**
  
  *Příliš žluťoučký kůň úpěl ďábelské ódy*
  
  ***Příliš žluťoučký kůň úpěl ďábelské ódy***
  
  `Příliš žluťoučký kůň úpěl ďábelské ódy`
  
+ *`Příliš žluťoučký kůň úpěl ďábelské ódy`*
+ 
+ **`Příliš žluťoučký kůň úpěl ďábelské ódy`**
+ 
+ ***`Příliš žluťoučký kůň úpěl ďábelské ódy`***
+ 
  ```

** Description changed:

  Linux Mint 19.3 (Ubuntu 18.04)
  retext 7.0.1-1
  
  I tried to write a text in Czech language and I see that "czech
  characters" are rendered in really ugly way. I see this problem in
  preview mode and in PDF export. HTML export is good, HTML browser
  renders non-US characters as expected.
  
  I am not sure if this is Retext problem, it could be problem of fonts
  that are in Ubuntu. Anyway, the result is really bad :-(
  
  DEMO markdown:
  
  ```
  # Příliš žluťoučký kůň úpěl ďábelské ódy
  
  ## Příliš žluťoučký kůň úpěl ďábelské ódy
  
  ### Příliš žluťoučký kůň úpěl ďábelské ódy
  
  Příliš žluťoučký kůň úpěl ďábelské ódy
  
+ *Příliš žluťoučký kůň úpěl ďábelské ódy*
+ 
  **Příliš žluťoučký kůň úpěl ďábelské ódy**
- 
- *Příliš žluťoučký kůň úpěl ďábelské ódy*
  
  ***Příliš žluťoučký kůň úpěl ďábelské ódy***
  
  `Příliš žluťoučký kůň úpěl ďábelské ódy`
  
  *`Příliš žluťoučký kůň úpěl ďábelské ódy`*
  
  **`Příliš žluťoučký kůň úpěl ďábelské ódy`**
  
  ***`Příliš žluťoučký kůň úpěl ďábelské ódy`***
  
  ```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-05 Thread psl
** Description changed:

  Linux Mint 19.3 (Ubuntu 18.04)
  retext 7.0.1-1
  
  I tried to write a text in Czech language and I see that "czech
  characters" are rendered in really ugly way. I see this problem in
  preview mode and in PDF export. HTML export is good, HTML browser
  renders non-US characters as expected.
  
  I am not sure if this is Retext problem, it could be problem of fonts
  that are in Ubuntu. Anyway, the result is really bad :-(
  
  DEMO markdown:
  
  ```
  # Příliš žluťoučký kůň úpěl ďábelské ódy
  
  ## Příliš žluťoučký kůň úpěl ďábelské ódy
  
  ### Příliš žluťoučký kůň úpěl ďábelské ódy
  
  Příliš žluťoučký kůň úpěl ďábelské ódy
  
  **Příliš žluťoučký kůň úpěl ďábelské ódy**
  
  *Příliš žluťoučký kůň úpěl ďábelské ódy*
  
  ***Příliš žluťoučký kůň úpěl ďábelské ódy***
  
+ `Příliš žluťoučký kůň úpěl ďábelské ódy`
+ 
  ```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-04 Thread psl
I see new issue. When I select preview font, I can set "font style",
like regular, italic, bold, normal, oblique, etc. This information is
not saved to ReText.conf file; only font name and size is stored. It
means that once Retext is started in the future, it can show different
style in preview mode (and in PDF export). It is also possible to select
font effects, like strike or underline but these are not saved to
ReText.conf.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-04 Thread psl
I am not typographer and I never took too much attention to fonts. I am
surprised how bad it can be...

I have found good font, it is "Serif". PDF export has good quality with
following settings:

$ cat ~/.config/ReText\ project/ReText.conf 
[General]
font=Serif
fontSize=12
recentFileList=/home/user/test-font-cz.mkd, /home/user/test-list.mkd

$ pdffonts font-test-cz3.pdf 
name type  encoding emb sub 
uni object ID
 -  --- --- 
--- -
DejaVuSerif-Bold CID TrueType  Identity-H   yes no  
yes  7  0
DejaVuSerif  CID TrueType  Identity-H   yes no  
yes  8  0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-04 Thread psl
When I define custom preview font in ReText, only 1 font is in PDF
export:

$ pdffonts font-test-cz.pdf 
name type  encoding emb sub 
uni object ID
 -  --- --- 
--- -
DejaVuSerif  CID TrueType  Identity-H   yes no  
yes  7  0

When no font was defined (default) many fonts are in PDF export:

$ pdffonts font-test-cz1.pdf 
name type  encoding emb sub 
uni object ID
 -  --- --- 
--- -
CharterBT-Bold   CID TrueType  Identity-H   yes no  
yes  7  0
DejaVuSans-Bold  CID TrueType  Identity-H   yes no  
yes  8  0
AbyssinicaSILCID TrueType  Identity-H   yes no  
yes  9  0
DejaVuSans   CID TrueType  Identity-H   yes no  
yes 10  0
CharterBT-Italic CID TrueType  Identity-H   yes no  
yes 11  0
CharterBT-BoldItalic CID TrueType  Identity-H   yes no  
yes 12  0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-04 Thread psl
I was wrong. PDF export uses font "DejaVu Serif (/FontName
/QM+DejaVuSerif) but result is not good, it could be problem with
font. I will try to experiment with fonts...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-04 Thread psl
I was too fast. Preview font is fixed but export to PDF uses different
font (CharterBT?), no change here :-(

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-04 Thread psl
First, I was not able to find the way to change the font, I was looking
to preferences and it is not there, so I assumed that my version of
ReText cannot change font in an easy way and I was looking to creation
of custom css file. Later I realized my mistake, I can change the editor
and preview font, it is at different place, directly in menu.

I changed font to "DejaVu Serif" (this font works good), and it is
written to config file:

```
$ cat ~/.config/ReText\ project/ReText.conf
```
```
[General]
font=DejaVu Serif
fontSize=12
recentFileList=/home/user/test-font-cz.mkd, /home/user/test-list.mkd
```

From my point of view, ReText should define some well known default
font. Any idea why "exotic" font is selected when user doesn't define
custom font?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-02 Thread psl
** Attachment added: "Markdown, demo text"
   
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+attachment/5522538/+files/Retext-font-test-cz.md

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] Re: Ugly non-US characters in Preview mode and PDF export

2021-09-02 Thread psl
** Attachment added: "Retext preview, screenshot"
   
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+attachment/5522537/+files/Retext-preview-font-test-cz.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942434] [NEW] Ugly non-US characters in Preview mode and PDF export

2021-09-02 Thread psl
Public bug reported:

Linux Mint 19.3 (Ubuntu 18.04)
retext 7.0.1-1

I tried to write a text in Czech language and I see that "czech
characters" are rendered in really ugly way. I see this problem in
preview mode and in PDF export. HTML export is good, HTML browser
renders non-US characters as expected.

I am not sure if this is Retext problem, it could be problem of fonts
that are in Ubuntu. Anyway, the result is really bad :-(

DEMO markdown:

```
# Příliš žluťoučký kůň úpěl ďábelské ódy

## Příliš žluťoučký kůň úpěl ďábelské ódy

### Příliš žluťoučký kůň úpěl ďábelské ódy

Příliš žluťoučký kůň úpěl ďábelské ódy

**Příliš žluťoučký kůň úpěl ďábelské ódy**

*Příliš žluťoučký kůň úpěl ďábelské ódy*

***Příliš žluťoučký kůň úpěl ďábelské ódy***

```

** Affects: retext (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "PDF export from Retext"
   
https://bugs.launchpad.net/bugs/1942434/+attachment/5522536/+files/Retext-export-font-test-cz.pdf

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942434

Title:
  Ugly non-US characters in Preview mode and PDF export

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1942434/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1939036] Re: Nested lists doesn't work in ReText

2021-08-05 Thread psl
I found the problem. There has to be 4 spaces in nested items. I did it
always wrong because many other editors have their own version of
Markdown standard. This is chaos.. :-(

This works in ReText:

```
# Nested lists

* topic1
* item1
* item2
* topic2
* item3
* item4

---

1. topic1
 * item1
 * item2
2. topic2
 * item3
 * item4

---

* topic1
 1. item1
 2. item2
* topic2
 1. item3
 2. item4
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1939036

Title:
  Nested lists doesn't work in ReText

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1939036/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1939036] [NEW] Nested lists doesn't work in ReText

2021-08-05 Thread psl
Public bug reported:

Ubuntu 18.04.5
ReText 7.0.1-1

Nested list are ignored by ReText. Nested lists are shown like "flat"
lists. I see this problem in **preview** mode.

DEMO:

```

# Nested lists

* topic1
  * item1
  * item2
* topic2
  * item3
  * item4

---

1. topic1
   * item1
   * item2
2. topic2
   * item3
   * item4

---

* topic1
   1. item1
   2. item2
* topic2
   1. item3
   2. item4

```

Compare what you see in ReText preview mode (flat lists) with any on-
line Markdown editor, like https://pandao.github.io/editor.md/en.html

** Affects: retext (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1939036

Title:
  Nested lists doesn't work in ReText

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1939036/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854092] Re: pbcopy & pbpaste for Linux

2021-07-29 Thread psl
Ubuntu 20.04 doesn't have pbcopy & pbcopy commands, issue is still
ignored...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1854092

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xsel/+bug/1854092/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 220654] Re: unzip will not open 256 AES zip files

2021-07-14 Thread psl
Ubuntu 18.04.4 (Linux Mint 19.3)
unzip 6.0-21ubuntu1.1

This issue was not fixed yet. :-(


This encrypted zip archive cannot be decompressed with unzip in Linux:

$ unzip -lv invoices.zip 
Archive:  invoices.zip
 Length   MethodSize  CmprDateTime   CRC-32   Name
  --  ---  -- -   
  364368  Unk:099  297349  18% 2021-07-14 11:43 a42572b4  04.pdf
  386845  Unk:099  323610  16% 2021-07-14 11:42 22c01737  01.pdf
  444152  Unk:099  366972  17% 2021-07-14 11:42 9af8d121  02.pdf
  349956  Unk:099  285237  19% 2021-07-14 11:43 a3a16517  03.pdf
  ---  ------
 1545321  1273168  18%4 files

$ unzip invoices.zip 
Archive:  invoices.zip
   skipping: 04.pdf  unsupported compression method 99
   skipping: 01.pdf  unsupported compression method 99
   skipping: 02.pdf  unsupported compression method 99
   skipping: 03.pdf  unsupported compression method 99

I used 7z (7z x invices.zip) and I was able to extract data from
archive.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/220654

Title:
  unzip will not open 256 AES zip files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unzip/+bug/220654/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1929856] [NEW] hddtemp doesn't work with NVMe drive

2021-05-27 Thread psl
Public bug reported:

Ubuntu 18.04.5 (Linux Mint 19.3)
hddtemp 0.3-beta15-53, amd64

I see that hddtemp tool cannot work with NVMe (SSD disk).
I test with WD "Blue" SN550 - 1TB, NVMe drive.

$ sudo hddtemp /dev/nvme0
ERROR: /dev/nvme0: can't determine bus type (or this bus type is unknown)

$ sudo hddtemp /dev/nvme0n1 
ERROR: /dev/nvme0n1: can't determine bus type (or this bus type is unknown)


hddtemp can report temperature of my SATA drives:

$ sudo hddtemp /dev/sda /dev/sdb
/dev/sda: CHN-25SATAC3-120: 40°C
/dev/sdb: WDC WD5000AAKX-75U6AA0: 41°C



Utility `smartctl` reports temperature of NVMe drive:

$ sudo smartctl -iA /dev/nvme0
smartctl 6.6 2016-05-31 r4324 [x86_64-linux-5.0.0-32-generic] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Model Number:   WDC WDS100T2B0C-00PXH0
Serial Number:  2052FQSECRET
Firmware Version:   211070WD
PCI Vendor/Subsystem ID:0x15b7
IEEE OUI Identifier:0x001b44
Total NVM Capacity: 1 000 204 886 016 [1,00 TB]
Unallocated NVM Capacity:   0
Controller ID:  1
Number of Namespaces:   1
Namespace 1 Size/Capacity:  1 000 204 886 016 [1,00 TB]
Namespace 1 Formatted LBA Size: 512
Local Time is:  Thu May 27 19:37:08 2021 CEST

=== START OF SMART DATA SECTION ===
SMART/Health Information (NVMe Log 0x02, NSID 0x)
Critical Warning:   0x00
Temperature:54 Celsius
Available Spare:100%
Available Spare Threshold:  10%
Percentage Used:0%
Data Units Read:104 158 [53,3 GB]
Data Units Written: 2 213 638 [1,13 TB]
Host Read Commands: 455 476
Host Write Commands:2 417 674
Controller Busy Time:   46
Power Cycles:   6
Power On Hours: 2
Unsafe Shutdowns:   2
Media and Data Integrity Errors:0
Error Information Log Entries:  1
Warning  Comp. Temperature Time:0
Critical Comp. Temperature Time:0

===

** Affects: hddtemp (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1929856

Title:
  hddtemp doesn't work with NVMe drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hddtemp/+bug/1929856/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1929851] [NEW] GSmartControl & NVME drive

2021-05-27 Thread psl
Public bug reported:

Ubuntu 18.04.5 (Linux Mint 19.3)
gsmartcontrol 1.1.3-1, amd64

I see that GSmartControl cannot work with NVME (SSD disk) correctly. I
test with WD SN550 - 1TB, blue NVME drive.

Problem:
gsmartcontrol list my drive as /dev/nvme0n1. That is OK, but there is parent 
drive (/dev/nvme0) and that is not listed. /dev/nvme0 has some important 
information related to SMART, including value of TBW.

Other issue is that gsmartcontrol cannot identify NVME disk, it list it
as "Unknown model".

I dump here output from GSmartControl and after that dump from tool
smartctl.


===
## gsmartcontrol (detail of /dev/nvme0n1 - 'Unknown model')

smartctl 6.6 2016-05-31 r4324 [x86_64-linux-5.0.0-32-generic] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Model Number:   WDC WDS100T2B0C-00PXH0
Serial Number:  2052FQSECRET
Firmware Version:   211070WD
PCI Vendor/Subsystem ID:0x15b7
IEEE OUI Identifier:0x001b44
Total NVM Capacity: 1 000 204 886 016 [1,00 TB]
Unallocated NVM Capacity:   0
Controller ID:  1
Number of Namespaces:   1
Namespace 1 Size/Capacity:  1 000 204 886 016 [1,00 TB]
Namespace 1 Formatted LBA Size: 512
Local Time is:  Thu May 27 18:31:08 2021 CEST
Firmware Updates (0x14):2 Slots, no Reset required
Optional Admin Commands (0x0017):   Security Format Frmw_DL *Other*
Optional NVM Commands (0x005f): Comp Wr_Unc DS_Mngmt Wr_Zero Sav/Sel_Feat 
*Other*
Maximum Data Transfer Size: 128 Pages
Warning  Comp. Temp. Threshold: 80 Celsius
Critical Comp. Temp. Threshold: 85 Celsius
Namespace 1 Features (0x02):NA_Fields

Supported Power States
St Op Max   Active Idle   RL RT WL WT  Ent_Lat  Ex_Lat
 0 + 3.50W2.90W   -0  0  0  00   0
 1 + 2.70W1.80W   -0  0  0  00   0
 2 + 1.90W1.50W   -0  0  0  00   0
 3 -   0.0200W   --3  3  3  3 3900   11000
 4 -   0.0050W   --4  4  4  4 5000   39000

Supported LBA Sizes (NSID 0x1)
Id Fmt  Data  Metadt  Rel_Perf
 0 + 512   0 2
 1 -4096   0 1

=== START OF SMART DATA SECTION ===
Read NVMe SMART/Health Information failed: NVMe Status 0x4002

===

$ sudo smartctl -a /dev/nvme0

smartctl 6.6 2016-05-31 r4324 [x86_64-linux-5.0.0-32-generic] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Model Number:   WDC WDS100T2B0C-00PXH0
Serial Number:  2052FQSECRET
Firmware Version:   211070WD
PCI Vendor/Subsystem ID:0x15b7
IEEE OUI Identifier:0x001b44
Total NVM Capacity: 1 000 204 886 016 [1,00 TB]
Unallocated NVM Capacity:   0
Controller ID:  1
Number of Namespaces:   1
Namespace 1 Size/Capacity:  1 000 204 886 016 [1,00 TB]
Namespace 1 Formatted LBA Size: 512
Local Time is:  Thu May 27 18:33:33 2021 CEST
Firmware Updates (0x14):2 Slots, no Reset required
Optional Admin Commands (0x0017):   Security Format Frmw_DL *Other*
Optional NVM Commands (0x005f): Comp Wr_Unc DS_Mngmt Wr_Zero Sav/Sel_Feat 
*Other*
Maximum Data Transfer Size: 128 Pages
Warning  Comp. Temp. Threshold: 80 Celsius
Critical Comp. Temp. Threshold: 85 Celsius
Namespace 1 Features (0x02):NA_Fields

Supported Power States
St Op Max   Active Idle   RL RT WL WT  Ent_Lat  Ex_Lat
 0 + 3.50W2.90W   -0  0  0  00   0
 1 + 2.70W1.80W   -0  0  0  00   0
 2 + 1.90W1.50W   -0  0  0  00   0
 3 -   0.0200W   --3  3  3  3 3900   11000
 4 -   0.0050W   --4  4  4  4 5000   39000

Supported LBA Sizes (NSID 0x1)
Id Fmt  Data  Metadt  Rel_Perf
 0 + 512   0 2
 1 -4096   0 1

=== START OF SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

SMART/Health Information (NVMe Log 0x02, NSID 0x)
Critical Warning:   0x00
Temperature:41 Celsius
Available Spare:100%
Available Spare Threshold:  10%
Percentage Used:0%
Data Units Read:19 655 [10,0 GB]
Data Units Written: 1 953 526 [1,00 TB]
Host Read Commands: 136 955
Host Write Commands:1 907 740
Controller Busy Time:   43
Power Cycles:   6
Power On Hours: 

[Bug 1925256] Re: dollar symbol is not translated

2021-04-20 Thread psl
** Description changed:

  ReText 7.0.1
  Ubuntu 18.04.5
  
  dolar symbol is in the menu of symbols, it inserts entity $ to
  the text. In preview mode, I still see $ in the result. It looks
  like a bug, like this symbol is unknown to markdown compiler.
  
  Compare with ¢ or € those are not in the menu for symbols...
  These work, I see CENT and EURO symbol in preview mode. Well, I tried
  all symbols in the menu but only $ is not translated.
+ 
+ # DEMO
+ 
+ * cent: ¢
+ * dollar: &dolar;
+ * euro: €
+ * divide: ÷

** Description changed:

  ReText 7.0.1
  Ubuntu 18.04.5
  
  dolar symbol is in the menu of symbols, it inserts entity $ to
  the text. In preview mode, I still see $ in the result. It looks
  like a bug, like this symbol is unknown to markdown compiler.
  
  Compare with ¢ or € those are not in the menu for symbols...
  These work, I see CENT and EURO symbol in preview mode. Well, I tried
  all symbols in the menu but only $ is not translated.
  
+ 
  # DEMO
  
  * cent: ¢
- * dollar: &dolar;
+ * dollar: $
  * euro: €
  * divide: ÷

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1925256

Title:
  dollar symbol is not translated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1925256/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1925256] [NEW] dollar symbol is not translated

2021-04-20 Thread psl
Public bug reported:

ReText 7.0.1
Ubuntu 18.04.5

dolar symbol is in the menu of symbols, it inserts entity $ to
the text. In preview mode, I still see $ in the result. It looks
like a bug, like this symbol is unknown to markdown compiler.

Compare with ¢ or € those are not in the menu for symbols...
These work, I see CENT and EURO symbol in preview mode. Well, I tried
all symbols in the menu but only $ is not translated.

** Affects: retext (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  ReText 7.0.1
  Ubuntu 18.04.5
  
  dolar symbol is in the menu of symbols, it inserts entity $ to
  the text. In preview mode, I still see $ in the result. It looks
  like a bug, like this symbol is unknown to markdown compiler.
  
  Compare with ¢ or € those are not in the menu for symbols...
- These works, I see CENT and EURO symbol in preview mode. Well, I tried
+ These work, I see CENT and EURO symbol in preview mode. Well, I tried
  all symbols in the menu but only $ is not translated.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1925256

Title:
  dollar symbol is not translated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/retext/+bug/1925256/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2021-01-30 Thread psl
CDROM cannot be empty in FreeNAS/TrueNAS (bhyve):
https://redmine.ixsystems.com/issues/65313

** Bug watch added: redmine.ixsystems.com/issues #65313
   https://redmine.ixsystems.com/issues/65313

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2021-01-30 Thread psl
I tried to create another virtual machine with Ubuntu running on TrueNAS
server and I carefully monitored devices during install process.

The source of this problem is at I have to use CD-ROM image during
install but I have to remove CD-ROM device to start Virtual machine with
Ubuntu. TrueNAS doesn't offer any option to use CDROM without disk image
(it reports an error when file with ISO image is not found) and I have
to remove CD-ROM device (SATA controller). When I remove CD-ROM device,
device indexes at PCI bus (lspci output) are changed. ETH device is
during install really enp0s5 but once CD-ROM device is removed from
virtual machine configuration, it becomes enp0s4. This was not a problem
in the past when the first ETH device was always "eth0 " but now it is a
problem because any change on PCI can result in different interface
name; enp0s5 in the install configuration becomes en0s4 in the run
configuration...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2021-01-28 Thread psl
I have a comment to issue reported by user "k76". I guess you updated
your netplan config file in a wrong way. It is unlikely that your
network interface is "eth0" in Ubuntu 20.04. Check what is your real
network interface name with cli command "ip a" or "ipconfig"...

"eth0" was in the past the first Ethernet interface. It was working good
for long time and it was really boring so developers (systemd??) decided
to generate new cool names that are different on each PC so users have
more fun when they troubleshoot their network issues.. ;-)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2021-01-28 Thread psl
I have an update. I tried yesterday TrueNAS Core 12.0U1.1 and I tried to
install Ubuntu server 20.04.1 to test Virtual machine configuration. I
cannot report any good news, bug was not fixed. Installation of Ubuntu
was easy, it got IPv4 address from local DHCP server and installed
several updates during installation process. Once installation was
finished and virtual machine was rebooted, new virtual server was not
able to get IP address from DHCP server. I have to manually fix file
/etc/netplan/00-installer-config.yaml, network interface was wrong (by
1).

This issue is really simple to reproduce. Ubuntu and TruNAS Core are
free software, anyone can download these and replicate the issue I
believe there is a bug in Ubuntu installer, it creates netplan config
file in a wrong way. I am not sure just now but I think I modified
enp0s5 to enp0s4. Virtual machine had the only one virtual network
interface and I use VirtIO network adapter.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869721] Re: Apt error message gives incorrect syntax

2021-01-25 Thread psl
This is from Mint 19.3 (based on Ubuntu 18.04), "apt --fix-broken
install" is just not correct, please, fix this cosmetic bug...

# apt version apt
1.6.12ubuntu0.2


# apt --fix-broken install
apt
Usage: apt command [options]
   apt help command [options]

Commands:
  add-repository   - Add entries to apt sources.list
  autoclean- Erase old downloaded archive files
  autoremove   - Remove automatically all unused packages

This works:

# apt install --fix-broken
Reading package lists... Done
Building dependency tree

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869721

Title:
  Apt error message gives incorrect syntax

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1869721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1911837] [NEW] inxi, error "Use of uninitialized value $val2"

2021-01-14 Thread psl
Public bug reported:

Ubuntu 18.04
inxi 3.0.32-00 (2019-02-07)

Desciption:

"inxi -F" reports an error, when it runs from pure text console. Can be
simulated with "ssh localhost", ssh localhost -C "inxi -F")

$ inxi -F
...
Sensors:   System Temperatures: cpu: 34.2 C mobo: N/A 
   Fan Speeds (RPM): N/A 
Use of uninitialized value $val2 in string eq at /usr/bin/inxi line 5759.
Use of uninitialized value $val2 in split at /usr/bin/inxi line 5764.
Use of uninitialized value $val2 in concatenation (.) or string at 
/usr/bin/inxi line 5766.
Use of uninitialized value $val2 in concatenation (.) or string at 
/usr/bin/inxi line 5767.
Use of uninitialized value $val2 in concatenation (.) or string at 
/usr/bin/inxi line 5768.
   GPU: device: temp: N/A device: radeon temp: 40 C 
Info:  Processes: 218 Uptime: 4m Memory: 15.64 GiB used: 986.2 MiB (6.2%) 
Init: systemd 
   runlevel: 5 Shell: bash inxi: 3.0.32 


When it runs from terminal in X-Windows, there is no error:

$ inxi -F
...
Sensors:   System Temperatures: cpu: 34.4 C mobo: N/A gpu: radeon temp: 42 C 
   Fan Speeds (RPM): N/A 
Info:  Processes: 201 Uptime: 9m Memory: 15.64 GiB used: 1004.6 MiB (6.3%) 
Shell: bash 
   inxi: 3.0.32

** Affects: inxi (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1911837

Title:
  inxi, error "Use of uninitialized value $val2"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/inxi/+bug/1911837/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854113] Re: pbcopy & pbpaste for Linux

2021-01-08 Thread psl
I just copy possible implementation of pbcopy and pbpaste for Linux from
#1854092. That issue has more examples of similar commands for
PowerShell, etc

```
#!/bin/sh
# print data from clipboard to stdout, again and again...

MODE="xclip"
#MODE="xsel" # doesn't work well, clipboard is not cleaned and the same text is 
printed again and again :-(

pbcopy ()
{
   if [ "$MODE" = "xclip" ]; then
 xclip -selection clip -i
   else
 xsel --clipboard --input
   fi
}

pbpaste ()
{
   if [ "$MODE" = "xclip" ]; then
 xclip -selection clip -o
   else
 xsel --clipboard --output
   fi
}

# MAIN
pbcopy https://bugs.launchpad.net/bugs/1854113

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xclip/+bug/1854113/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854092] Re: pbcopy & pbpaste for Linux

2020-11-26 Thread psl
A year ago I published in this bug report a script to copy data from
clipboard to standard output. This is updated version, only small
modifications to improve compatibility with dash shell.


```
#!/bin/sh
# print data from clipboard to stdout, again and again...

MODE="xclip"
#MODE="xsel" # doesn't work well, clipboard is not cleaned and the same text is 
printed again and again :-(

pbcopy ()
{
   if [ "$MODE" = "xclip" ]; then
 xclip -selection clip -i
   else
 xsel --clipboard --input
   fi
}

pbpaste ()
{
   if [ "$MODE" = "xclip" ]; then
 xclip -selection clip -o
   else
 xsel --clipboard --output
   fi
}

# MAIN
pbcopy https://bugs.launchpad.net/bugs/1854092

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xsel/+bug/1854092/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854113] Re: pbcopy & pbpaste for Linux

2020-11-26 Thread psl
It looks like this bug report is not attractive at all :-(

Anyway, some ideas how to implement commands pbcopy and pbpaste are in
bug report #1854092. It is not difficult...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1854113

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xclip/+bug/1854113/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Re: Intel display driver cannot read EDID from VGA monitor

2020-08-31 Thread psl
I have update. I have found that my VGA cable was "broken", one of EDID
wires was broken. It was not 100% broken, so sometimes EDID was working
but in most cases it was not working. Source of this problem was VGA
cable.

Anyway, this issue highlighted that when EDID information is not
available than Linux doesn't allow user to set higher resolution than
1024x800. That is not nice...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1888988] [NEW] man page for netdiscover doesn't describe option -N

2020-07-26 Thread psl
Public bug reported:

Ubuntu 18.04.4

man page for netdiscover doesn't describe switch -N, the switch to
suppress headers when output is sent to stdout. I have found this when I
was looking for a way how to store discovered devices to a file.
Recommended solution is to use -PN switch and redirect output to a file,
like this:

`$sudo neddiscover -i eth0 -PN | tee netdicover.log`

This is not perfect solution but it is usable. It would be nice to have
a switch that will create a detailed log file with timestamps. Such
logfile is necessary on bigger network where many devices are connected
and the discovered devices just cannot fit to a single screen...

Anyway, this bug report is about "-N" switch that is missing in manpage.
It is described at help output from netdiscover:


```
$ netdiscover -h
Netdiscover 0.3-pre-beta7 [Active/passive arp reconnaissance tool]
Written by: Jaime Penalba 

Usage: netdiscover [-i device] [-r range | -l file | -p] [-m file] [-s time] 
[-n node] [-c count] [-f] [-d] [-S] [-P] [-c]
  -i device: your network device
  -r range: scan a given range instead of auto scan. 192.168.6.0/24,/16,/8
  -l file: scan the list of ranges contained into the given file
  -p passive mode: do not send anything, only sniff
  -m file: scan the list of known MACs and host names
  -F filter: Customize pcap filter expression (default: "arp")
  -s time: time to sleep between each arp request (milliseconds)
  -n node: last ip octet used for scanning (from 2 to 253)
  -c count: number of times to send each arp reques (for nets with packet loss)
  -f enable fastmode scan, saves a lot of time, recommended for auto
  -d ignore home config files for autoscan and fast mode
  -S enable sleep time supression between each request (hardcore mode)
  -P print results in a format suitable for parsing by another program
  -N Do not print header. Only valid when -P is enabled.
  -L in parsable output mode (-P), continue listening after the active scan is 
completed

If -r, -l or -p are not enabled, netdiscover will scan for common lan
addresses.

```

** Affects: netdiscover (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1888988

Title:
  man page for netdiscover doesn't describe option -N

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netdiscover/+bug/1888988/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1885652] [NEW] unrar-free cannot extract files from archive with chinese characters in filenames

2020-06-29 Thread psl
Public bug reported:

Ubuntu 18.04.4

These unrar are installed:

ii  unrar 1:5.5.8-1 
  amd64Unarchiver for .rar files (non-free version)
ii  unrar-free1:0.0.1+cvs20140707-4 
  amd64Unarchiver for .rar files

Result of list is here but extract doesn't work as well:

$ unrar-free l 591f963f3c877.rar

unrar 0.0.1  Copyright (C) 2004  Ben Asselstine, Jeroen Dekkers


RAR archive /home/psl/Downloads/591f963f3c877.rar

Pathname/Comment
  Size   Packed Ratio  Date   Time Attr  CRC   Meth Ver
---
 ˵��.txt
   643  487  76% 31-10-19 14:12   .A   E14F258A m5? 2.9
 ��//xiaoguo.LST
 22941 2914  13% 15-03-16 14:23   .A   EBC7F1FD m5? 2.9
 ��//STC15F2K.h
  8948 1756  20% 13-05-12 01:58   .A   ADDE m5? 2.9
 ��//xiaoguo.c
  6978  949  14% 15-03-16 14:22   .A   653E1316 m5? 2.9
 ��//��_uvopt.bak
 55218 2931   5% 15-03-16 14:22   .A   91757EC1 m5? 2.9
 ��//��_uvproj.bak
 02   0% 07-03-16 09:55   .A    m5? 2.9
 ��//xiaoguo.OBJ
 24537 6462  26% 15-03-16 14:23   .A   1F2643F8 m5? 2.9
 ��//��
 22066 3852  17% 15-03-16 14:23   .A   3ADD1A8E m5? 2.9
 ��/Thumbs.db
 2662423447  88% 14-07-17 17:15   .A   2BC8ED4C m5? 2.9
 ��//��.hex
  4554 1814  40% 15-03-16 14:23   .A   3E6F2488 m5? 2.9
 ��//��.lnp
30   20  67% 15-03-16 14:23   .A   92AA2014 m5? 2.9
 ��//��.M51
 28030 3047  11% 15-03-16 14:23   .A   50D3B734 m5? 2.9
 ��/ԭ��ͼ.pdf
 3733136374  97% 11-04-16 14:16   .A   F9A10FD7 m5? 2.9
 ��//��.plg
   352  206  59% 15-03-16 14:23   .A   E4DF20AC m5? 2.9
 .url
   109   70  64% 31-10-19 14:12   .A   B5AEEAA2 m5? 2.9
 �Ա���.url
   112   11  10% 31-10-19 14:12   .A   29C850F3 m5? 2.9
 ��//��.uvopt
 55221  306   1% 15-03-16 14:24   .A   A76225A4 m5? 2.9
 ��//��.uvproj
 13235 2417  18% 07-03-16 09:57   .A   AF5753EE m5? 2.9
 ��/���嵥.xls
 17920 3678  21% 20-05-17 09:01   .A   C9845F4B m5? 2.9
 ��/1.jpg
766204   698414  91% 11-04-16 14:18   .A   4274C3C1 m5? 2.9
 ��/2.jpg
   1008110   950038  94% 11-04-16 14:18   .A   992B0D65 m5? 2.9
 ��/
 00   0% 15-03-16 14:24   .D    m0? 2.0
 ��
 00   0% 20-05-17 09:01   .D    m0? 2.0
---
   23  2099163  1739195  83%


$ unrar-nonfree l 591f963f3c877.rar 

UNRAR 5.50 freeware  Copyright (c) 1993-2017 Alexander Roshal

Archive: 591f963f3c877.rar
Details: RAR 4, solid

 Attributes  Size DateTime   Name
--- -  -- -  
..A   643  2019-10-31 14:12  说明.txt
..A 22941  2016-03-15 14:23  五角星资料/程序/xiaoguo.LST
..A  8948  2012-05-13 01:58  五角星资料/程序/STC15F2K.h
..A  6978  2016-03-15 14:22  五角星资料/程序/xiaoguo.c
..A 55218  2016-03-15 14:22  五角星资料/程序/五角星_uvopt.bak
..A 0  2016-03-07 09:55  五角星资料/程序/五角星_uvproj.bak
..A 24537  2016-03-15 14:23  五角星资料/程序/xiaoguo.OBJ
..A 22066  2016-03-15 14:23  五角星资料/程序/五角星
..A.SH. 26624  2017-07-14 17:15  五角星资料/Thumbs.db
..A  4554  2016-03-15 14:23  五角星资料/程序/五角星.hex
..A30  2016-03-15 14:23  五角星资料/程序/五角星.lnp
..A 28030  2016-03-15 14:23  五角星资料/程序/五角星.M51
..A 37331  2016-04-11 14:16  五角星资料/原理图.pdf
..A   352  2016-03-15 14:23  五角星资料/程序/五角星.plg
..A   109  2019-10-31 14:12  五六电子.url
..A   112  2019-10-31 14:12  五六电子淘宝店.url
..A 55221  2016-03-15 14:24  五角星资料/程序/五角星.uvopt
..A 13235  2016-03-07 09:57  五角星资料/程序/五角星.uvproj
..A 17920  2017-05-20 09:01  五角星资料/五角星清单.xls
..A766204  2016-04-11 14:18  五角星资料/1.jpg
..A   1008110  2016-04-11 14:18  五角星资料/2.jpg
...D... 0  2016-03-15 14:24  五角星资料/程序
...D... 0  2017-05-20 09:01  五角星资料
--- -  -- -  
  209916323

Source of attached RAR file is http://www.56dz.com/ptzl/show/3981.html
It is support pa

[Bug 1882162] Re: subiquity creates wrong network configuration (wrong NIC name)

2020-06-04 Thread psl
** Description changed:

  I already reported a bug against other tool but I think it should be
- filed agains subiquity.
+ filled against subiquity.
  
  https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832
  
  Ubuntu server 20.04 and 18.04.4. When I installed them on virtual
  machine (FreeNAS 11.3, VMware ESXi 6.7), installation was OK but after
  reboot, virtual machine had no network connectivity, IP address from
  DHCP server was not requested. NIC interface was enp0s4. I can ask for
  IP address manualy with "sudo dhclient enp0s4" and it works!
  
  I think that issue is that subiquity creates wrong network
  configuration, this is file after install. Nnote, that enp0s5 is
  configured with DHCP4, but real NIC is enp0s4...
  
  /etc/netplan/00-installer-config.yaml
  
  #
  # This is the network config written by 'subiquity'
  network:
-   ethernets:
- enp0s5:
-   dhcp4: true
-   version: 2
+   ethernets:
+ enp0s5:
+   dhcp4: true
+   version: 2
  
  I fixed this issue by replacing "enp0s5" with "enp0s4" in file
  /etc/netplan/00-installer-config.yaml. Rebooted machine asked for IP
  address from DHCP server and I like it...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1882162

Title:
  subiquity creates wrong network configuration (wrong NIC name)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/subiquity/+bug/1882162/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2020-06-04 Thread psl
I created bug against subiquity, #1882162

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1882162] [NEW] subiquity creates wrong network configuration (wrong NIC name)

2020-06-04 Thread psl
Public bug reported:

I already reported a bug against other tool but I think it should be
filed agains subiquity.

https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832

Ubuntu server 20.04 and 18.04.4. When I installed them on virtual
machine (FreeNAS 11.3, VMware ESXi 6.7), installation was OK but after
reboot, virtual machine had no network connectivity, IP address from
DHCP server was not requested. NIC interface was enp0s4. I can ask for
IP address manualy with "sudo dhclient enp0s4" and it works!

I think that issue is that subiquity creates wrong network
configuration, this is file after install. Nnote, that enp0s5 is
configured with DHCP4, but real NIC is enp0s4...

/etc/netplan/00-installer-config.yaml

#
# This is the network config written by 'subiquity'
network:
  ethernets:
enp0s5:
  dhcp4: true
  version: 2

I fixed this issue by replacing "enp0s5" with "enp0s4" in file
/etc/netplan/00-installer-config.yaml. Rebooted machine asked for IP
address from DHCP server and I like it...

** Affects: subiquity (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1882162

Title:
  subiquity creates wrong network configuration (wrong NIC name)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/subiquity/+bug/1882162/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2020-06-04 Thread psl
I fixed /etc/netplan/00-installer-config.yaml, I replaced "enp0s5" with
"enp0s4" and I rebooted virtual machine. Issue is fixed, it gets IP
address from DHCP server during server boot! So it looks like
"subiquity" just created wrong netplan configuration. So basic
configuration and it was not done right... :-(

I have found other similar bug report, #1824483, so it looks like this
problem is in Ubuntu for long time; that surprises me...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2020-06-04 Thread psl
This is in file  etc/netplan/00-installer-config.yaml (enp0s5 is
configured with DHCP4, but real NIC is enp0s4...)

#
# This is the network config written by 'subiquity'
network:
  ethernets:
enp0s5:
  dhcp4: true
  version: 2
#


This is visible in output from "sudo journalctl":

...
Jun 05 02:53:44 t2004 kernel: virtio_net virtio1 enp0s4: renamed from eth0
...
Jun 05 02:53:53 t2004 systemd-resolved[718]: Using system hostname 't2004'.
Jun 05 02:53:53 t2004 systemd[1]: Started Network Name Resolution.
Jun 05 02:53:53 t2004 systemd[1]: Reached target Network.
Jun 05 02:53:53 t2004 systemd[1]: Reached target Host and Network Name Lookups.
Jun 05 02:53:54 t2004 cloud-init[727]: Cloud-init v. 20.1-10-g71af48df-0ubuntu5 
running 'init' at Fri, 05 Jun 2020 02:53:53 +. Up 15.84 seconds.
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: +++Net 
device info
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: 
++---+---+---+---+---+
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: | Device |   Up  |  Address  |  
  Mask   | Scope | Hw-Address|
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: 
++---+---+---+---+---+
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: | enp0s4 | False | . |  
   . |   .   | 00:a0:98:4f:5d:d5 |
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: |   lo   |  True | 127.0.0.1 | 
255.0.0.0 |  host | . |
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: |   lo   |  True |  ::1/128  |  
   . |  host | . |
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: 
++---+---+---+---+---+
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: +++Route IPv6 
info+++
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: 
+---+-+-+---+---+
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: | Route | Destination | Gateway 
| Interface | Flags |
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: 
+---+-+-+---+---+
Jun 05 02:53:54 t2004 cloud-init[727]: ci-info: 
+---+-+-+---+---+
...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] Re: Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2020-06-02 Thread psl
** Description changed:

  Ubuntu 20.04 server amd64, running as virtual machine on FreeNAS-11.3-U3.2.
  Network interface was configured with driver VirtIO, and network interface is 
bridged at FreeNAS.
  
  The issue is that I have DHCP server in my LAN and Ubuntu installer gets
  IPv4 address and applies updates from internet. Install process is OK.
- Once installation is finished, reboot is required but Ubuntu will not
- start, EFI issue has to be fixed first; Ubuntu on FreeNAS has problem
- with EFI, it has to be manually fixed; it is known issue, solution is
- here: https://www.ixsystems.com/community/threads/howto-how-to-boot-
- linux-vms-using-uefi.54039/
- 
- Once EFI is fixed and Ubuntu boots, no IP address is assigned to enp0s4
- interface, so Ubuntu 20.04 server has no network connectivity. I can
- manually force IP address allocation with command "sudo dhclient enp0s4"
- and it works but that is just a workaround. IP address should be
- allocated automatically during server boot...
+ Once installation is finished, reboot is required but Ubuntu will start
+ but  no IP address is assigned to enp0s4 interface, so Ubuntu 20.04
+ server has no network connectivity. I can manually force IP address
+ allocation with command "sudo dhclient enp0s4" and it works but that is
+ just a workaround. IP address should be allocated automatically during
+ server boot...
  
  I have older Ubuntu machines on the same FreeNAS box and those work
  fine, so I assume there is a bug in Ubuntu 20.04 and DHCP client is
  broken or not reliable... :-( Some problem in netplan utility??
+ 
+ I tried to install fresh 18.04.4 to my FreeNAS box and I see the same
+ problem, no IP address is assigned during boot. That is strange because
+ old installation of 18.04 from the past works fine.
+ 
+ I tried to install 20.04 to VMware ESXi 6.7 and I see the same problem,
+ no IP address is assigned to the new instance (install is OK, but after
+ restart, no network connectivity, "dhclient ensp0s4" is working fine).
+ 
+ Summary is that I see similar problem on fresh installs of 20.04 and
+ 18.04, FreeNAS or ESXi. I can connect instances with "dhclient enp0s4",
+ so it looks like DHCP server works fine and there is no problem on
+ LAN...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1881832] [NEW] Ubuntu server 20.04 fails to get IP address from DHCP server (no network connectivity)

2020-06-02 Thread psl
Public bug reported:

Ubuntu 20.04 server amd64, running as virtual machine on FreeNAS-11.3-U3.2.
Network interface was configured with driver VirtIO, and network interface is 
bridged at FreeNAS.

The issue is that I have DHCP server in my LAN and Ubuntu installer gets
IPv4 address and applies updates from internet. Install process is OK.
Once installation is finished, reboot is required but Ubuntu will not
start, EFI issue has to be fixed first; Ubuntu on FreeNAS has problem
with EFI, it has to be manually fixed; it is known issue, solution is
here: https://www.ixsystems.com/community/threads/howto-how-to-boot-
linux-vms-using-uefi.54039/

Once EFI is fixed and Ubuntu boots, no IP address is assigned to enp0s4
interface, so Ubuntu 20.04 server has no network connectivity. I can
manually force IP address allocation with command "sudo dhclient enp0s4"
and it works but that is just a workaround. IP address should be
allocated automatically during server boot...

I have older Ubuntu machines on the same FreeNAS box and those work
fine, so I assume there is a bug in Ubuntu 20.04 and DHCP client is
broken or not reliable... :-( Some problem in netplan utility??

** Affects: netplan.io (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1881832

Title:
  Ubuntu server 20.04 fails to get IP address from DHCP server (no
  network connectivity)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netplan.io/+bug/1881832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1873691] Re: Printrun cannot communicate with Creality CR-100

2020-04-19 Thread psl
I add similar communication with "Creality Ender 3" board, just for reference.
So it looks like CR-100 sends answer for M114 command in two lines and that is 
problem for pronterface.

SENT: M105
RECV: ok T:-15.00 /0.00 B:-15.00 /0.00 @:0 B@:0
SENT: M105
RECV: ok T:-15.00 /0.00 B:-15.00 /0.00 @:0 B@:0
SENT: G91
SENT: G0 X10.0 F3000
SENT: G90
SENT: M114
RECV: ok
RECV: ok
RECV: ok
RECV: X:20.00 Y:0.00 Z:2.00 E:0.00 Count X:1600 Y:0 Z:1200
RECV: ok
SENT: M105
RECV: ok T:-15.00 /0.00 B:-15.00 /0.00 @:0 B@:0
SENT: M105
RECV: ok T:-15.00 /0.00 B:-15.00 /0.00 @:0 B@:0

>>> M115
SENDING:M115
FIRMWARE_NAME:Marlin bugfix-1.1.x (Github) 
SOURCE_CODE_URL:https://github.com/MarlinFirmware/Marlin PROTOCOL_VERSION:1.0 
MACHINE_TYPE:Ender-3 EXTRUDER_COUNT:1 UUID:cede2a2f-41a2-4748-9b12-c55c62f367ff
Cap:SERIAL_XON_XOFF:0
Cap:EEPROM:1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1873691

Title:
  Printrun cannot communicate with Creality CR-100

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/printrun/+bug/1873691/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1873691] [NEW] Printrun cannot communicate with Creality CR-100

2020-04-19 Thread psl
Public bug reported:

Ubuntu 18.04.4 amd64
printrun 1.6

Creality mini printer CR-100 has bad issues with USB communication, many
issues. It is not possible to print over USB, if print even starts, it
fails before the first layer is printed. I assume that source of these
issues is closed source firmware in the printer. Printer has control
board based on STM32F103 MPU. The board is not documented and it looks
like it was designed specially for this printer.

I see one problem in pronterface 1.6 (and this is a bug in printrun,
parsing of input is not well done), communication debug mode is active.
Move head in Z direction (or any other direction):

SENT: M105
RECV: Echo:Get Head(0) T:29.7/0.0
SENT: M105
RECV: Echo:Get Head(0) T:29.7/0.0
SENT: G91
SENT: G0 Z10 F100
SENT: G90
SENT: M114
RECV: ok
RECV: ok
RECV: ok
RECV: X:101.50 Y:-0.50 Z:33.00 E:0.00
[ERROR] Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/printrun/printcore.py", line 268, in 
_readline
try: self.recvcb(line)
  File "/usr/lib/python2.7/dist-packages/printrun/pronterface.py", line 1815, 
in recvcb
self.update_pos()
  File "/usr/lib/python2.7/dist-packages/printrun/pronterface.py", line 1771, 
in update_pos
x = float(bit[1])
ValueError: could not convert string to float: 

RECV: Count X: 101.42 Y:-0.50 Z:23.01
RECV: ok
SENT: M105

>>> M115
SENT: M115
RECV: Firmware_Name:BiSun
RECV: Firmware_Url:https://www.cxsw3d.com
RECV: Firmware_Ver:0.1.6
RECV: Machine_Name:CR-100
RECV: Head_Count:1
RECV: ok

** Affects: printrun (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1873691

Title:
  Printrun cannot communicate with Creality CR-100

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/printrun/+bug/1873691/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] Re: Kernel 5.3.0-40-generic cannot boot from PATA drive

2020-04-01 Thread psl
Package linux-modules-extra-5.3.0-28-generic was installed but package 
linux-modules-extra-5.3.0-40-generic was not installed.
I installed linux-modules-extra-5.3.0-40-generic and I can boot linux with that 
kernel, problem fixed. Thank you for the advice!

Do I need manually install linux-modules-extra-5.3.0-XX-generic each
time new kernel is installed with "apt dist-upgrade"?? If this is the
case, it is not good. I searched for package like "linux-modules-extra-
generic" or "linux-modules-extra" and I cannot see anything like that in
the repository.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] UdevDb.txt

2020-03-31 Thread psl
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1869919/+attachment/5343889/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] WifiSyslog.txt

2020-03-31 Thread psl
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1869919/+attachment/5343890/+files/WifiSyslog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] CurrentDmesg.txt

2020-03-31 Thread psl
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1869919/+attachment/5343882/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] ProcCpuinfoMinimal.txt

2020-03-31 Thread psl
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1869919/+attachment/5343885/+files/ProcCpuinfoMinimal.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] ProcEnviron.txt

2020-03-31 Thread psl
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1869919/+attachment/5343886/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] Lspci.txt

2020-03-31 Thread psl
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1869919/+attachment/5343883/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] ProcInterrupts.txt

2020-03-31 Thread psl
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1869919/+attachment/5343887/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] ProcModules.txt

2020-03-31 Thread psl
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1869919/+attachment/5343888/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] Lsusb.txt

2020-03-31 Thread psl
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1869919/+attachment/5343884/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] CRDA.txt

2020-03-31 Thread psl
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1869919/+attachment/5343881/+files/CRDA.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] Re: Kernel 5.3.0-40-generic cannot boot from PATA drive

2020-03-31 Thread psl
** Attachment added: "5.3.0-40-generic, modules (PATA is missing)"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+attachment/5343878/+files/20200331_191315_5.3.0-40-generic-modules.jpg

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] AlsaInfo.txt

2020-03-31 Thread psl
apport information

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1869919/+attachment/5343880/+files/AlsaInfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] Re: Kernel 5.3.0-40-generic cannot boot from PATA drive

2020-03-31 Thread psl
I attach three pictures, those show that newer kernel cannot find root
device and than newer kernel really miss several important modules
including "pata" driver (I emulated similar error in 5.3.0-28-generic by
changing disk ID

** Attachment added: "5.3.0-40-generic cannot find root device"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+attachment/5343877/+files/20200331_191146_5.3.0-40-generic-error.jpg

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1869919] Re: Kernel 5.3.0-40-generic cannot boot from PATA drive

2020-03-31 Thread psl
** Attachment added: "5.3.0-28-generic, modules (PATA is in the kernel, this 
kernel works OK) In this case I modified disk ID, so it cannot boot and ends at 
ramdisk prompt."
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+attachment/5343879/+files/20200331_191643_5.3.0-28-generic-modules.jpg

** Tags added: apport-collected bionic

** Description changed:

  Ubuntu-Budgie 18.04.4 amd64
  kernel linux-image-5.3.0-40-generic
  
  I build a Ubuntu PC and I used PATA notebook disk (44 PIN connector,
  SSD)
  
  PROBLEM DESCRIPTION
  
  PC works fine with kernel "linux-image-5.3.0-28-generic" but when I try
  to use updated kernel "linux-image-5.3.0-40-generic", it fails to boot
  and reports it cannot find disk. I have to manually select older kernel
  in GRUB during boot process. Kernel linux-image-5.3.0-40-generic starts
  but when it tries to mount root partition it fails and reports it cannot
  find it (to have exact message I have to reboot PC). Are PATA disk
  drivers included with updated kernel?
  
  INFO
  
  # uname -a
  Linux fah 5.3.0-28-generic #30~18.04.1-Ubuntu SMP Fri Jan 17 06:14:09 UTC 
2020 x86_64 x86_64 x86_64 GNU/Linux
  
  # inxi -F  # HW info
  System:Host: fah Kernel: 5.3.0-28-generic x86_64 bits: 64 Console: tty 2 
Distro: Ubuntu 18.04.4 LTS
  Machine:   Device: desktop Mobo: Gigabyte model: GA-MA78G-DS3H serial: N/A 
BIOS: Award v: F9 date: 11/16/2012
  CPU:   Dual core AMD Athlon 64 X2 3800+ (-MCP-) cache: 1024 KB
 clock speeds: max: 2000 MHz 1: 2000 MHz 2: 2000 MHz
  Graphics:  Card-1: Advanced Micro Devices [AMD/ATI] RS780 [Radeon HD 3200]
 Card-2: NVIDIA GP106 [GeForce GTX 1060 3GB]
 Display Server: X.org 1.20.5 drivers: ati,radeon (unloaded: 
modesetting,nvidia,fbdev,vesa,nouveau)
 tty size: 114x33 Advanced Data: N/A for root out of X
  Audio: Card-1 Advanced Micro Devices [AMD/ATI] RS780 HDMI Audio [Radeon 
3000/3100 / HD 3200/3300]
 driver: snd_hda_intel
 Card-2 NVIDIA GP106 High Definition Audio Controller driver: 
snd_hda_intel
 Card-3 Advanced Micro Devices [AMD/ATI] SBx00 Azalia (Intel HDA) 
driver: snd_hda_intel
 Sound: Advanced Linux Sound Architecture v: k5.3.0-28-generic
  Network:   Card: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet 
Controller driver: r8169
 IF: enp3s0 state: up speed: 1000 Mbps duplex: full mac: 
00:1f:d0:97:b9:42
  Drives:HDD Total Size: 64.0GB (32.6% used)
 ID-1: /dev/sda model: TS64GPSD320 size: 64.0GB
  Partition: ID-1: / size: 59G used: 16G (29%) fs: ext4 dev: /dev/sda1
 ID-2: swap-1 size: 1.95GB used: 0.00GB (0%) fs: swap dev: 
/dev/zram0
 ID-3: swap-2 size: 1.95GB used: 0.00GB (0%) fs: swap dev: 
/dev/zram1
  RAID:  No RAID devices: /proc/mdstat, md_mod kernel module present
  Sensors:   System Temperatures: cpu: 90.0C mobo: 43.0C
 Fan Speeds (in rpm): cpu: 1956 fan-2: 0 fan-3: 0
  Info:  Processes: 216 Uptime: 11 days Memory: 2416.1/7456.3MB Init: 
systemd runlevel: 5
 Client: Shell (bash) inxi: 2.3.56
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.9-0ubuntu7.13
+ Architecture: amd64
+ AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/controlC2', '/dev/snd/hwC2D0', '/dev/snd/pcmC2D8p', 
'/dev/snd/pcmC2D7p', '/dev/snd/pcmC2D3p', '/dev/snd/controlC0', 
'/dev/snd/hwC0D0', '/dev/snd/pcmC0D2c', '/dev/snd/pcmC0D1c', 
'/dev/snd/pcmC0D1p', '/dev/snd/pcmC0D0c', '/dev/snd/pcmC0D0p', 
'/dev/snd/controlC1', '/dev/snd/hwC1D0', '/dev/snd/pcmC1D3p', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
+ DistroRelease: Ubuntu 18.04
+ IwConfig:
+  enp3s0no wireless extensions.
+  
+  lono wireless extensions.
+ MachineType: Gigabyte Technology Co., Ltd. GA-MA78G-DS3H
+ NonfreeKernelModules: nvidia_modeset nvidia
+ Package: linux (not installed)
+ ProcFB: 0 radeondrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-28-generic 
root=UUID=f9f74101-cc1d-4d7e-9621-9a012e09c9c8 ro quiet splash
+ ProcVersionSignature: Ubuntu 5.3.0-28.30~18.04.1-generic 5.3.13
+ PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
+ RelatedPackageVersions:
+  linux-restricted-modules-5.3.0-28-generic N/A
+  linux-backports-modules-5.3.0-28-generic  N/A
+  linux-firmware1.173.16
+ RfKill:
+  
+ Tags:  bionic
+ Uname: Linux 5.3.0-28-generic x86_64
+ UnreportableReason: This report is about a package that is not installed.
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: False
+ dmi.bios.date: 11/16/2012
+ dmi.bios.vendor: Award Software International, Inc.
+ dmi.bios.version: F9
+ dmi.board.name: GA-MA78G-DS3H
+ dmi.board.vendor: Gigabyte Technology Co., Ltd.
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Gigabyte Te

[Bug 1869919] [NEW] Kernel 5.3.0-40-generic cannot boot from PATA drive

2020-03-31 Thread psl
Public bug reported:

Ubuntu-Budgie 18.04.4 amd64
kernel linux-image-5.3.0-40-generic

I build a Ubuntu PC and I used PATA notebook disk (44 PIN connector,
SSD)

PROBLEM DESCRIPTION

PC works fine with kernel "linux-image-5.3.0-28-generic" but when I try
to use updated kernel "linux-image-5.3.0-40-generic", it fails to boot
and reports it cannot find disk. I have to manually select older kernel
in GRUB during boot process. Kernel linux-image-5.3.0-40-generic starts
but when it tries to mount root partition it fails and reports it cannot
find it (to have exact message I have to reboot PC). Are PATA disk
drivers included with updated kernel?

INFO

# uname -a
Linux fah 5.3.0-28-generic #30~18.04.1-Ubuntu SMP Fri Jan 17 06:14:09 UTC 2020 
x86_64 x86_64 x86_64 GNU/Linux

# inxi -F  # HW info
System:Host: fah Kernel: 5.3.0-28-generic x86_64 bits: 64 Console: tty 2 
Distro: Ubuntu 18.04.4 LTS
Machine:   Device: desktop Mobo: Gigabyte model: GA-MA78G-DS3H serial: N/A 
BIOS: Award v: F9 date: 11/16/2012
CPU:   Dual core AMD Athlon 64 X2 3800+ (-MCP-) cache: 1024 KB
   clock speeds: max: 2000 MHz 1: 2000 MHz 2: 2000 MHz
Graphics:  Card-1: Advanced Micro Devices [AMD/ATI] RS780 [Radeon HD 3200]
   Card-2: NVIDIA GP106 [GeForce GTX 1060 3GB]
   Display Server: X.org 1.20.5 drivers: ati,radeon (unloaded: 
modesetting,nvidia,fbdev,vesa,nouveau)
   tty size: 114x33 Advanced Data: N/A for root out of X
Audio: Card-1 Advanced Micro Devices [AMD/ATI] RS780 HDMI Audio [Radeon 
3000/3100 / HD 3200/3300]
   driver: snd_hda_intel
   Card-2 NVIDIA GP106 High Definition Audio Controller driver: 
snd_hda_intel
   Card-3 Advanced Micro Devices [AMD/ATI] SBx00 Azalia (Intel HDA) 
driver: snd_hda_intel
   Sound: Advanced Linux Sound Architecture v: k5.3.0-28-generic
Network:   Card: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet 
Controller driver: r8169
   IF: enp3s0 state: up speed: 1000 Mbps duplex: full mac: 
00:1f:d0:97:b9:42
Drives:HDD Total Size: 64.0GB (32.6% used)
   ID-1: /dev/sda model: TS64GPSD320 size: 64.0GB
Partition: ID-1: / size: 59G used: 16G (29%) fs: ext4 dev: /dev/sda1
   ID-2: swap-1 size: 1.95GB used: 0.00GB (0%) fs: swap dev: /dev/zram0
   ID-3: swap-2 size: 1.95GB used: 0.00GB (0%) fs: swap dev: /dev/zram1
RAID:  No RAID devices: /proc/mdstat, md_mod kernel module present
Sensors:   System Temperatures: cpu: 90.0C mobo: 43.0C
   Fan Speeds (in rpm): cpu: 1956 fan-2: 0 fan-3: 0
Info:  Processes: 216 Uptime: 11 days Memory: 2416.1/7456.3MB Init: systemd 
runlevel: 5
   Client: Shell (bash) inxi: 2.3.56

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1869919

Title:
  Kernel 5.3.0-40-generic cannot boot from PATA drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1869919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863968] [NEW] libpulse-dev cannot be installed, dependencies are outdated

2020-02-19 Thread psl
Public bug reported:

Ubuntu 18.04.4
libpulse-dev-1:11.1-1ubuntu7.4

Package libpulse-dev was not updated to match dependencies

libpulse-dev : Depends: libpulse0 (= 1:11.1-1ubuntu7.4) but 1:11.1-1ubuntu7.5 
is to be installed
Depends: libpulse-mainloop-glib0 (= 1:11.1-1ubuntu7.4) but 
1:11.1-1ubuntu7.5 is 


$ apt show libpulse-dev | head -5

WARNING: apt does not have a stable CLI interface. Use with caution in
scripts.

Package: libpulse-dev
Version: 1:11.1-1ubuntu7.4
Priority: optional
Section: libdevel
Source: pulseaudio

$ sudo apt install libpulse-dev
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 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:
 libpulse-dev : Depends: libpulse0 (= 1:11.1-1ubuntu7.4) but 1:11.1-1ubuntu7.5 
is to be installed
Depends: libpulse-mainloop-glib0 (= 1:11.1-1ubuntu7.4) but 
1:11.1-1ubuntu7.5 is to be installed
E: Unable to correct problems, you have held broken packages.

** Affects: pulseaudio (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863968

Title:
  libpulse-dev cannot be installed, dependencies are outdated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1863968/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863956] [NEW] tilix, vte-WARINGS, runtime check failed

2020-02-19 Thread psl
Public bug reported:

Ubuntu 18.04.4, tilix 1.7.7-1ubuntu2

Tilix installed with "sudo apt install tilix"

When it is started from other terminal, it reports these warnings to the
terminal:

user@ubuntu:~$ tilix

(tilix:17207): Vte-WARNING **: 22:52:36.854:
(../../src/vtegtk.cc:1906):int
vte_terminal_match_add_gregex(VteTerminal*, GRegex*, GRegexMatchFlags):
runtime check failed: (g_regex_get_compile_flags(gregex) &
G_REGEX_MULTILINE)

(tilix:17207): Vte-WARNING **: 22:52:36.854:
(../../src/vtegtk.cc:1906):int
vte_terminal_match_add_gregex(VteTerminal*, GRegex*, GRegexMatchFlags):
runtime check failed: (g_regex_get_compile_flags(gregex) &
G_REGEX_MULTILINE)

(tilix:17207): Vte-WARNING **: 22:52:36.854:
(../../src/vtegtk.cc:1906):int
vte_terminal_match_add_gregex(VteTerminal*, GRegex*, GRegexMatchFlags):
runtime check failed: (g_regex_get_compile_flags(gregex) &
G_REGEX_MULTILINE)

** Affects: tilix (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863956

Title:
  tilix, vte-WARINGS, runtime check failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tilix/+bug/1863956/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863955] [NEW] Fresh Tilix install reports "Configuration issue detected"

2020-02-19 Thread psl
Public bug reported:

Ubuntu 18.04.4, tilix 1.7.7-1ubuntu2

I installed Tilix with "sudo apt install tilix".
On the first run, it reports "Configuration issue detected" and shows URL with 
instruction to fix it:

https://gnunn1.github.io/tilix-web/manual/vteconfig/

In the case of issue at Windows, I create screenshot and attach it to
issues but such task is still not easy in Ubuntu (I miss easy to use
program to work with bitmaps, something like MS Paint), so I am not
going to attach any screenshot. Issue is easy to reproduce from my point
of view...

** Affects: tilix (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863955

Title:
  Fresh Tilix install reports "Configuration issue detected"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tilix/+bug/1863955/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Re: Intel display driver cannot read EDID from VGA monitor

2020-02-14 Thread psl
I tried to switch resolution to 2048x1152@60Hz and it worked (Win10). I
found I can define custom resolution but when I tried to define
1920x1200@60Hz, it was not accepted with information that maximum
bandwidth was exceeded. After several tries, custom resolution
1920x1200@56Hz was accepted and I was able to switch to it. Screen is
finally crisp! DELL monitor reports that resolution is 1920x1200@60Hz,
Windows reports 1920x1200@56Hz. This was tricky... Monitor reported by
Windows is "Generic Non-PnP Monitor". I updated BIOS but I think there
was no real impact of that action to video hardware (microcode was
updated).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Re: Intel display driver cannot read EDID from VGA monitor

2020-02-14 Thread psl
Resolution is set to 1920x1080@60 in Win10 but monitor receives signal
2048x1152@60Hz (this is more than official monitor resolution that is
1020x1200@60Hz but it looks like monitor can handle it); this
information is visible at DELL monitor menu and even in Windows
configuration. Windows report that video RAM is 128MB dedicated RAM and
2048MB shared RAM. It is possible that PC just doesn't have enough video
memory to display 1920x1200. I am not sure why I am in this situation.
This is not first PC with Intel HD graphics and I believe I never had
similar problem before and I was able to run at resolution 1920x1200; I
will recheck...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Re: Intel display driver cannot read EDID from VGA monitor

2020-02-14 Thread psl
I was too optimistic about Win10. Windows cannot detect my monitor too.
Situation with Windows is better than situation with Linux. My monitor
is DELL U2412M and it has native resolution 1920x1200@60Hz.

Windows cannot detect my monitor so they report it as "Standart non PnP
Monitor". I can set resolution manually, I can select from many
resolutions. Unfortunately, 1920x1200 is not in the list! I can use
1600x1200 or 1920x1080, that is not perfect but much better than
1024x768 that is the maximum resolution offered in Ubuntu/Mint.

I downloaded "monitor driver" from DELL support page and install it and
forced Windows to replace "non PnP monitor" with "DELL U2412M" driver
but nothing changed, I still cannot switch to 1920x1200 resolution.

It looks like Intel is troublemaker here... Until this is fixed, it is
very unlikely that bug #1 will be fixed... ;-)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Re: Intel display driver cannot read EDID from VGA monitor

2020-02-14 Thread psl
** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Re: Intel display driver cannot read EDID from VGA monitor

2020-02-14 Thread psl
In the old good times of Windows 98 I was able to disable Plug&Play and
select my monitor from DB of known models or select generic
configuration to match my resolution. I miss such option in modern Linux
distributions, it could be useful fallback when Plug&Play for some
reason doesn't work. When it works, it is great but when Plug&Play is
broken, it is very difficult to configure Linux to use correct display
resolution.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] PulseList.txt

2020-02-14 Thread psl
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328169/+files/PulseList.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] ProcModules.txt

2020-02-14 Thread psl
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328168/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] ProcInterrupts.txt

2020-02-14 Thread psl
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328167/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] ProcCpuinfo.txt

2020-02-14 Thread psl
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328164/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] CurrentDmesg.txt

2020-02-14 Thread psl
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328161/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] ProcCpuinfoMinimal.txt

2020-02-14 Thread psl
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328165/+files/ProcCpuinfoMinimal.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] ProcEnviron.txt

2020-02-14 Thread psl
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328166/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Re: Intel display driver cannot read EDID from VGA monitor

2020-02-14 Thread psl
apport information

** Tags added: apport-collected tricia

** Description changed:

  Ubuntu 18.04
  
  Report if from Linux Mint 19.3 but the same situation is with Ubuntu
  18.04
  
  Linux cannot access EDID information from VGA port and it offers maximum
  resolution of 1024x768, that is not too much for 24" monitor. When I
  connect VGA monitor to other PC with Nvidia card (cuda driver, GPU for
  games), it works OK. When I run Windows in this PC, it is OK, monitor is
  properly detected and resolution set correctly. Problem is only with
  boards with Intel video chips, those are Linux unfriendly.
  
  This is report from nice mini PC, HP EliteDesk 800 G1 USDT.
  Until this bug is fixed you cannot expect that people will use these office 
PCs with Linux...
  
  $ sudo inxi -F
  System:
Host: elite Kernel: 5.3.0-28-generic x86_64 bits: 64 
Desktop: Cinnamon 4.4.8 Distro: Linux Mint 19.3 Tricia 
  Machine:
Type: Desktop System: Hewlett-Packard product: HP EliteDesk 800 G1 USDT 
v: N/A serial: CZC611B2GK 
Mobo: Hewlett-Packard model: 18E5 serial: CZCxxx UEFI: Hewlett-Packard 
v: L01 v02.75 date: 05/04/2018 
  CPU:
Topology: Quad Core model: Intel Core i5-4590S bits: 64 type: MCP 
L2 cache: 6144 KiB 
Speed: 799 MHz min/max: 800/3700 MHz Core speeds (MHz): 1: 798 2: 798 
3: 798 4: 798 
  Graphics:
Device-1: Intel Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics 
driver: i915 v: kernel 
Display: server: X.Org 1.19.6 driver: modesetting unloaded: fbdev,vesa 
resolution: 1024x768~60Hz 
OpenGL: renderer: Mesa DRI Intel Haswell Desktop v: 4.5 Mesa 19.2.8 
  Audio:
Device-1: Intel Xeon E3-1200 v3/4th Gen Core Processor HD Audio 
driver: snd_hda_intel 
Device-2: Intel 8 Series/C220 Series High Definition Audio 
driver: snd_hda_intel 
Sound Server: ALSA v: k5.3.0-28-generic 
  Network:
Device-1: Intel Ethernet I217-LM driver: e1000e 
IF: eno1 state: up speed: 100 Mbps duplex: full mac: ec:b1:d7:72:ea:cd 
  Drives:
Local Storage: total: 232.89 GiB used: 37.68 GiB (16.2%) 
ID-1: /dev/sda vendor: SanDisk model: SDSSDH3250G size: 232.89 GiB 
  Partition:
ID-1: / size: 227.74 GiB used: 37.68 GiB (16.5%) fs: ext4 dev: /dev/sda2 
  Sensors:
System Temperatures: cpu: 36.0 C mobo: N/A 
Fan Speeds (RPM): N/A 
  Info:
Processes: 217 Uptime: 19m Memory: 15.53 GiB used: 1.29 GiB (8.3%) 
Shell: bash inxi: 3.0.32
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.9-0ubuntu7.9
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  psl1661 F pulseaudio
+  /dev/snd/controlC0:  psl1661 F pulseaudio
+ CurrentDesktop: X-Cinnamon
+ DistroRelease: Linux Mint 19.3
+ InstallationDate: Installed on 2019-04-29 (290 days ago)
+ InstallationMedia: Linux Mint 19.1 "Tessa" - Release amd64 20181217
+ IwConfig:
+  lono wireless extensions.
+  
+  eno1  no wireless extensions.
+ MachineType: Hewlett-Packard HP EliteDesk 800 G1 USDT
+ Package: linux (not installed)
+ ProcFB: 0 i915drmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-28-generic 
root=UUID=ff586528-825b-4ee5-b08e-bc363013c7a5 ro quiet splash vt.handoff=1
+ ProcVersionSignature: Ubuntu 5.3.0-28.30~18.04.1-generic 5.3.13
+ RelatedPackageVersions:
+  linux-restricted-modules-5.3.0-28-generic N/A
+  linux-backports-modules-5.3.0-28-generic  N/A
+  linux-firmware1.173.14
+ RfKill:
+  
+ Tags:  tricia
+ Uname: Linux 5.3.0-28-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 05/04/2018
+ dmi.bios.vendor: Hewlett-Packard
+ dmi.bios.version: L01 v02.75
+ dmi.board.asset.tag: CZC611B2GK
+ dmi.board.name: 18E5
+ dmi.board.vendor: Hewlett-Packard
+ dmi.chassis.asset.tag: CZC611B2GK
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Hewlett-Packard
+ dmi.modalias: 
dmi:bvnHewlett-Packard:bvrL01v02.75:bd05/04/2018:svnHewlett-Packard:pnHPEliteDesk800G1USDT:pvr:rvnHewlett-Packard:rn18E5:rvr:cvnHewlett-Packard:ct3:cvr:
+ dmi.product.family: 103C_53307F G=D
+ dmi.product.name: HP EliteDesk 800 G1 USDT
+ dmi.product.sku: C8N28AV
+ dmi.sys.vendor: Hewlett-Packard

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328159/+files/AlsaInfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] UdevDb.txt

2020-02-14 Thread psl
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1863248/+attachment/5328170/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Lspci.txt

2020-02-14 Thread psl
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1863248/+attachment/5328162/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] Lsusb.txt

2020-02-14 Thread psl
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1863248/+attachment/5328163/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] CRDA.txt

2020-02-14 Thread psl
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1863248/+attachment/5328160/+files/CRDA.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] WifiSyslog.txt

2020-02-14 Thread psl
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1863248/+attachment/5328171/+files/WifiSyslog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1863248] [NEW] Intel display driver cannot read EDID from VGA monitor

2020-02-14 Thread psl
Public bug reported:

Ubuntu 18.04

Report if from Linux Mint 19.3 but the same situation is with Ubuntu
18.04

Linux cannot access EDID information from VGA port and it offers maximum
resolution of 1024x768, that is not too much for 24" monitor. When I
connect VGA monitor to other PC with Nvidia card (cuda driver, GPU for
games), it works OK. When I run Windows in this PC, it is OK, monitor is
properly detected and resolution set correctly. Problem is only with
boards with Intel video chips, those are Linux unfriendly.

This is report from nice mini PC, HP EliteDesk 800 G1 USDT.
Until this bug is fixed you cannot expect that people will use these office PCs 
with Linux...

$ sudo inxi -F
System:
  Host: elite Kernel: 5.3.0-28-generic x86_64 bits: 64 
  Desktop: Cinnamon 4.4.8 Distro: Linux Mint 19.3 Tricia 
Machine:
  Type: Desktop System: Hewlett-Packard product: HP EliteDesk 800 G1 USDT 
  v: N/A serial: CZC611B2GK 
  Mobo: Hewlett-Packard model: 18E5 serial: CZCxxx UEFI: Hewlett-Packard 
  v: L01 v02.75 date: 05/04/2018 
CPU:
  Topology: Quad Core model: Intel Core i5-4590S bits: 64 type: MCP 
  L2 cache: 6144 KiB 
  Speed: 799 MHz min/max: 800/3700 MHz Core speeds (MHz): 1: 798 2: 798 
  3: 798 4: 798 
Graphics:
  Device-1: Intel Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics 
  driver: i915 v: kernel 
  Display: server: X.Org 1.19.6 driver: modesetting unloaded: fbdev,vesa 
  resolution: 1024x768~60Hz 
  OpenGL: renderer: Mesa DRI Intel Haswell Desktop v: 4.5 Mesa 19.2.8 
Audio:
  Device-1: Intel Xeon E3-1200 v3/4th Gen Core Processor HD Audio 
  driver: snd_hda_intel 
  Device-2: Intel 8 Series/C220 Series High Definition Audio 
  driver: snd_hda_intel 
  Sound Server: ALSA v: k5.3.0-28-generic 
Network:
  Device-1: Intel Ethernet I217-LM driver: e1000e 
  IF: eno1 state: up speed: 100 Mbps duplex: full mac: ec:b1:d7:72:ea:cd 
Drives:
  Local Storage: total: 232.89 GiB used: 37.68 GiB (16.2%) 
  ID-1: /dev/sda vendor: SanDisk model: SDSSDH3250G size: 232.89 GiB 
Partition:
  ID-1: / size: 227.74 GiB used: 37.68 GiB (16.5%) fs: ext4 dev: /dev/sda2 
Sensors:
  System Temperatures: cpu: 36.0 C mobo: N/A 
  Fan Speeds (RPM): N/A 
Info:
  Processes: 217 Uptime: 19m Memory: 15.53 GiB used: 1.29 GiB (8.3%) 
  Shell: bash inxi: 3.0.32

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1863248

Title:
  Intel display driver cannot read EDID from VGA monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1863248/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854092] Re: pbcopy & pbpaste for Linux

2020-01-06 Thread psl
I am not strong in PowerShell. Previous script sends data from clipboard
ONLY to console, it doesn't send them to STDOUT and such script cannot
be used to pipe data to other commands. This is version of script that
really sends data from clipbaord to the stdout:

```
# scb is alias for Set-Clipboard
# gcb is alias for Get-Clipboard
# sleep is alias for Start-Sleep

# copy data from clipboard to stdout
Set-Clipboard # clear clipboard
while ($true) {
   $TXT = Get-Clipboard # read clipboard
   if ($TXT) {
  Write-Output "$TXT"
  Set-Clipboard # clear clipboard
   }
   else {
  Start-Sleep -Milliseconds 100 # sleep 100ms
   }
}
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1854092

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xsel/+bug/1854092/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854092] Re: pbcopy & pbpaste for Linux

2020-01-04 Thread psl
PowerShell version of the script that waits for data in clipboard and
send them to STDOUT


```
# scb is alias for Set-Clipboard
# gcb is alias for Get-Clipboard
# sleep is alias for Start-Sleep

# copy data from clipboard to stdout
# MAIN
Set-Clipboard # clear clipboard
while ($true) {
   $TXT = Get-Clipboard | Out-String  # read clipboard
   if ($TXT) {
  Write-Host "$TXT" -NoNewLine
  Set-Clipboard # clear clipboard
   }
   else {
  Start-Sleep -Milliseconds 100 # sleep 100ms
   }
}
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1854092

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xsel/+bug/1854092/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854092] Re: pbcopy & pbpaste for Linux

2020-01-04 Thread psl
** Description changed:

  This is not a bug report but request for enhancement. Ubuntu 18.04
  doesn't have pbcopy & pbpaste commands.
  
  Mac users can use two commands, pbcopy and pbpaste, to work with
  clipbopard in their scripts. No such "easy to use" solution is available
  at Linux! Could be pbcopy and pbpaste commands implemented at Linux?
  That will make migration of Mac user to Linux World easier... ;-)
  
  There are several articles how to implement pbcopy and pbpaste at Linux,
  most of them use "alias", something like this:
  
  ```
  # mimic osx pbcopy/pbpaste
  alias pbcopy="xclip -selection clipboard -i"
  alias pbpaste="xclip -selection clipboard -o"
  ```
  or
  ```
  alias pbcopy='xsel --clipboard --input'
  alias pbpaste='xsel --clipboard --output'
  ```
  
  I think that alias commands cannot be used in shell script, right? Is it
  possible to implement pbcopy and pbpaste in the way to be usable in
  scripts too? These commands could be included in "xclip" package.
  
  BTW, pbcopy and pbpaste are binary executable files at OS X.
  
  NOTE: Even archaic OS like Windows has CLI commands to work with
  clipboard data. DOS has command CLIP.EXE that writes data to clipboard
  and this command can be even used from scripts in WSL (Windows Subsystem
  for Linux). DOS has no command to read data from clipboard. PowerShell
  has full support for clipboard, it can read and write clipboard data
- with commands Get-Clipboard and Set-Clipboard.
+ with commands Get-Clipboard and Set-Clipboard (aliases can be used, gcb
+ and scb).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1854092

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xsel/+bug/1854092/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1854092] Re: pbcopy & pbpaste for Linux

2020-01-04 Thread psl
** Description changed:

  This is not a bug report but request for enhancement. Ubuntu 18.04
  doesn't have pbcopy & pbpaste commands.
  
  Mac users can use two commands, pbcopy and pbpaste, to work with
  clipbopard in their scripts. No such "easy to use" solution is available
  at Linux! Could be pbcopy and pbpaste commands implemented at Linux?
  That will make migration of Mac user to Linux World easier... ;-)
  
  There are several articles how to implement pbcopy and pbpaste at Linux,
  most of them use "alias", something like this:
  
  ```
  # mimic osx pbcopy/pbpaste
  alias pbcopy="xclip -selection clipboard -i"
  alias pbpaste="xclip -selection clipboard -o"
  ```
  or
  ```
  alias pbcopy='xsel --clipboard --input'
  alias pbpaste='xsel --clipboard --output'
  ```
  
  I think that alias commands cannot be used in shell script, right? Is it
  possible to implement pbcopy and pbpaste in the way to be usable in
  scripts too? These commands could be included in "xclip" package.
  
  BTW, pbcopy and pbpaste are binary executable files at OS X.
+ 
+ NOTE: Even archaic OS like Windows has CLI commands to work with
+ clipboard data. DOS has command CLIP.EXE that writes data to clipboard
+ and this command can be even used from scripts in WSL (Windows Subsystem
+ for Linux). DOS has no command to read data from clipboard. PowerShell
+ has full support for clipboard, it can read and write clipboard data
+ with commands Get-Clipboard and Set-Clipboard.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1854092

Title:
  pbcopy & pbpaste for Linux

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xsel/+bug/1854092/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

  1   2   3   4   5   6   7   8   >