You are not logged in.
To connect to Wifi network, I need the GlobalSign Root CA. I have found the documentation to connect exactly to this network (these are hotspots provided by an ISP) here (for Ubuntu): http://proxy4fun.appspot.com/u?purl=bW9 … nNwdHRo%0A
The problem is a dot not find such files. The file I need (presumably /usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt) is listed in the archlinux page as belonging to the package ca-certificates: https://www.archlinux.org/packages/core … tificates/
But this package is empty ?! Where can I get the list of certificates that should belong to the package ca-certificates? pkgfile doesn't find any.
Last edited by olive (2015-07-23 10:26:43)
Offline
$ pacman -Qi ca-certificates
Name : ca-certificates
...
Depends On : ca-certificates-mozilla ca-certificates-cacert
Check those two packages.
Offline
ca-certificates doesn't ship the actual certificates, those are downloaded by the .install scriptlet the package contains.
See https://projects.archlinux.org/svntogit … rtificates
Edit, maybe not.
Last edited by WorMzy (2015-07-23 10:43:02)
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
$ pacman -Qi ca-certificates Name : ca-certificates ... Depends On : ca-certificates-mozilla ca-certificates-cacert
Check those two packages.
I had already done that. There are a few files but far fewer than the original list of ca-certificates and not the file I need.
Offline
The certificates are not individual files anymore, but one big list per provider (mozilla, ca-cert). You can simply extract one certificate you need for your wifi-setup from the list:
$ less /usr/share/ca-certificates/trust-source/mozilla.trust.crt |grep --text -e "Alias: GlobalSign Root"
Alias: GlobalSign Root CA
Alias: GlobalSign Root CA - R2
Alias: GlobalSign Root CA - R3
Offline
Individual files are also produced by update-ca-trust (run by the install script) and symlinked in /etc/ssl/certs:
$ ls -1 /etc/ssl/certs/GlobalSign*
/etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R4.pem
/etc/ssl/certs/GlobalSign_ECC_Root_CA_-_R5.pem
/etc/ssl/certs/GlobalSign_Root_CA.pem
/etc/ssl/certs/GlobalSign_Root_CA_-_R2.pem
/etc/ssl/certs/GlobalSign_Root_CA_-_R3.pem
Offline