Solved [Solved] Can I deinstall linux-f10-openssl-0.9.8g?

Can I deinstall linux-f10-openssl-0.9.8g?
I need Adobe® Flash® Plugin to watch YouTube.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/desktop-browsers.html

Code:
root@freebsd:~ # pkg audit

linux-f10-openssl-0.9.8g is vulnerable:
OpenSSL -- multiple vulnerabilities
CVE: CVE-2011-3210
CVE: CVE-2011-3207
WWW: http://portaudit.FreeBSD.org/2ecb7b20-d97e-11e0-b2e2-00215c6a37bb.html

root@freebsd:~ # pkg delete linux-f10-openssl-0.9.8g
pkg: Warning: expecting a boolean for the 'enabled' key of the 'FreeBSD' repo,  the value has been correctly converted, please consider fixing
pkg: Error while trying to delete packages, dependencies that are still required:
security/linux-f10-openssl: security/linux-f10-libssh2, www/linux-f10-flashplugin11
 
Re: Can I deinstall linux-f10-openssl-0.9.8g?

masayoshi said:
Can I deinstall linux-f10-openssl-0.9.8g?
You can force delete it in spite of the reported dependencies, but not if you want to use www/linux-f10-flashplugin. As pkg(8) reports, www/linux-f10-flashplugin requires security/linux-f10-openssl.

As an aside, if you want to get rid of:
Code:
pkg: Warning: expecting a boolean for the 'enabled' key of the 'FreeBSD' repo,  the value has been correctly converted, please consider fixing
edit your /etc/pkg/FreeBSD.conf file and change:
Code:
    enabled: "yes"
    --to--
    enabled: yes
 
Back
Top