How to make sure I'm not using any proprietary software after instalation?
Clash Royale CLAN TAG#URR8PPP
up vote
47
down vote
favorite
I know I can check the currently installed ones with the following command (assuming aptitude
is FOSS):
aptitude search '?installed (?section(restricted) | ?section(multiverse))'
And I can remove the "restricted" and "multiverse" sources (and not add any PPA's) to keep that list empty. I'm assuming from this point, whenever I apt install something
, that something is either in the allowed sources or it is not found.
Is this enough? Does this make sure all software I'm running (in Ubuntu) is open-source?
apt software-installation proprietary open-source
New contributor
add a comment |
up vote
47
down vote
favorite
I know I can check the currently installed ones with the following command (assuming aptitude
is FOSS):
aptitude search '?installed (?section(restricted) | ?section(multiverse))'
And I can remove the "restricted" and "multiverse" sources (and not add any PPA's) to keep that list empty. I'm assuming from this point, whenever I apt install something
, that something is either in the allowed sources or it is not found.
Is this enough? Does this make sure all software I'm running (in Ubuntu) is open-source?
apt software-installation proprietary open-source
New contributor
2
Related: How can I remove Proprietary Sources
– wjandrea
Nov 17 at 16:13
Possible duplicate of Why is there proprietary software in Ubuntu Software Center?
– N0rbert
Nov 17 at 16:37
3
Possible duplicate of What is the "Free software only" option when installing Ubuntu?
– popey
Nov 17 at 18:22
1
Possible duplicate of How to list all installed packages from a specific category (comptonent)
– muru
2 days ago
add a comment |
up vote
47
down vote
favorite
up vote
47
down vote
favorite
I know I can check the currently installed ones with the following command (assuming aptitude
is FOSS):
aptitude search '?installed (?section(restricted) | ?section(multiverse))'
And I can remove the "restricted" and "multiverse" sources (and not add any PPA's) to keep that list empty. I'm assuming from this point, whenever I apt install something
, that something is either in the allowed sources or it is not found.
Is this enough? Does this make sure all software I'm running (in Ubuntu) is open-source?
apt software-installation proprietary open-source
New contributor
I know I can check the currently installed ones with the following command (assuming aptitude
is FOSS):
aptitude search '?installed (?section(restricted) | ?section(multiverse))'
And I can remove the "restricted" and "multiverse" sources (and not add any PPA's) to keep that list empty. I'm assuming from this point, whenever I apt install something
, that something is either in the allowed sources or it is not found.
Is this enough? Does this make sure all software I'm running (in Ubuntu) is open-source?
apt software-installation proprietary open-source
apt software-installation proprietary open-source
New contributor
New contributor
edited 2 days ago
Tim
19.4k1483138
19.4k1483138
New contributor
asked Nov 17 at 15:50
Public Void
341125
341125
New contributor
New contributor
2
Related: How can I remove Proprietary Sources
– wjandrea
Nov 17 at 16:13
Possible duplicate of Why is there proprietary software in Ubuntu Software Center?
– N0rbert
Nov 17 at 16:37
3
Possible duplicate of What is the "Free software only" option when installing Ubuntu?
– popey
Nov 17 at 18:22
1
Possible duplicate of How to list all installed packages from a specific category (comptonent)
– muru
2 days ago
add a comment |
2
Related: How can I remove Proprietary Sources
– wjandrea
Nov 17 at 16:13
Possible duplicate of Why is there proprietary software in Ubuntu Software Center?
– N0rbert
Nov 17 at 16:37
3
Possible duplicate of What is the "Free software only" option when installing Ubuntu?
– popey
Nov 17 at 18:22
1
Possible duplicate of How to list all installed packages from a specific category (comptonent)
– muru
2 days ago
2
2
Related: How can I remove Proprietary Sources
– wjandrea
Nov 17 at 16:13
Related: How can I remove Proprietary Sources
– wjandrea
Nov 17 at 16:13
Possible duplicate of Why is there proprietary software in Ubuntu Software Center?
– N0rbert
Nov 17 at 16:37
Possible duplicate of Why is there proprietary software in Ubuntu Software Center?
– N0rbert
Nov 17 at 16:37
3
3
Possible duplicate of What is the "Free software only" option when installing Ubuntu?
– popey
Nov 17 at 18:22
Possible duplicate of What is the "Free software only" option when installing Ubuntu?
– popey
Nov 17 at 18:22
1
1
Possible duplicate of How to list all installed packages from a specific category (comptonent)
– muru
2 days ago
Possible duplicate of How to list all installed packages from a specific category (comptonent)
– muru
2 days ago
add a comment |
2 Answers
2
active
oldest
votes
up vote
85
down vote
accepted
vrms
(Virtual Richard M. Stallman) to the rescue:
sudo apt install vrms
vrms
and you'll get something like:
Non-free packages installed on computer-name
app-shortname1 Application long name 1
app-shortname2 Application long name 2
app-shortname3 Application long name 3
Contrib packages installed on computer-name
app-contrib1 Application Contrib Name 1
3 non-free packages, 0.4% of 2381 installed packages.
1 contrib packages, 0.1% of 2381 installed packages.
that will ensure you do / do not have any proprietary software installed.
Note: CPU firmware patches are non-free but absolutely needed to protect you from some processor flaws and their ilks, so don't go overboard! ;-)
12
Intel's Intellectual property: CPUs are still closed source except RISC-V. @PublicVoid and as you're a new user: If one of the answers solved your problem, don't forget to click the grey ☑ at the left of its text, which means Yes, this answer is the most useful of all! ;-)
– Fabby
Nov 17 at 19:01
5
No, you'd have to buy an entire new computer with another CPU and supporting chipsets: it would not be an Intel system any more. Give it a few more years until someone in Taiwan starts building Risc-V processors for a rock bottom price @PublicVoid
– Fabby
Nov 17 at 19:16
2
CPU firmware patches do not protect you from Spectre. They might protect you from Meltdown, but so can/does PTI which the kernel will enable if the CPU firmware is not patched.
– R..
2 days ago
2
@Fabby: Not just future. Skylake has had at least 1 correctness problem before Meltdown/Spectre that required a microcode update to fix. (Disabling the use of the IDQ as a 64-entry loop buffer (LSD = Loop Stream Detector) because of rare corner cases with inserting (or failing to insert) merging uops for partial registers. Erratum SKL150. See hothardware.com/news/…. See also some low-level microbenchmarks / perf-counter results before the fix
– Peter Cordes
2 days ago
3
I ranvrms
and it failed to report Chrome, among others. So, it's not entirely reliable.
– Paddy Landau
15 hours ago
|
show 12 more comments
up vote
40
down vote
If you're keen on having only Free Software (although you used the term Open Source) on your computer, you may want to consider installing Ubuntu with the "Free Software Only" option. You can find out more over at this question.
12
Good one for everyone that comes here before the fact ;-) +1
– Fabby
Nov 17 at 18:46
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
85
down vote
accepted
vrms
(Virtual Richard M. Stallman) to the rescue:
sudo apt install vrms
vrms
and you'll get something like:
Non-free packages installed on computer-name
app-shortname1 Application long name 1
app-shortname2 Application long name 2
app-shortname3 Application long name 3
Contrib packages installed on computer-name
app-contrib1 Application Contrib Name 1
3 non-free packages, 0.4% of 2381 installed packages.
1 contrib packages, 0.1% of 2381 installed packages.
that will ensure you do / do not have any proprietary software installed.
Note: CPU firmware patches are non-free but absolutely needed to protect you from some processor flaws and their ilks, so don't go overboard! ;-)
12
Intel's Intellectual property: CPUs are still closed source except RISC-V. @PublicVoid and as you're a new user: If one of the answers solved your problem, don't forget to click the grey ☑ at the left of its text, which means Yes, this answer is the most useful of all! ;-)
– Fabby
Nov 17 at 19:01
5
No, you'd have to buy an entire new computer with another CPU and supporting chipsets: it would not be an Intel system any more. Give it a few more years until someone in Taiwan starts building Risc-V processors for a rock bottom price @PublicVoid
– Fabby
Nov 17 at 19:16
2
CPU firmware patches do not protect you from Spectre. They might protect you from Meltdown, but so can/does PTI which the kernel will enable if the CPU firmware is not patched.
– R..
2 days ago
2
@Fabby: Not just future. Skylake has had at least 1 correctness problem before Meltdown/Spectre that required a microcode update to fix. (Disabling the use of the IDQ as a 64-entry loop buffer (LSD = Loop Stream Detector) because of rare corner cases with inserting (or failing to insert) merging uops for partial registers. Erratum SKL150. See hothardware.com/news/…. See also some low-level microbenchmarks / perf-counter results before the fix
– Peter Cordes
2 days ago
3
I ranvrms
and it failed to report Chrome, among others. So, it's not entirely reliable.
– Paddy Landau
15 hours ago
|
show 12 more comments
up vote
85
down vote
accepted
vrms
(Virtual Richard M. Stallman) to the rescue:
sudo apt install vrms
vrms
and you'll get something like:
Non-free packages installed on computer-name
app-shortname1 Application long name 1
app-shortname2 Application long name 2
app-shortname3 Application long name 3
Contrib packages installed on computer-name
app-contrib1 Application Contrib Name 1
3 non-free packages, 0.4% of 2381 installed packages.
1 contrib packages, 0.1% of 2381 installed packages.
that will ensure you do / do not have any proprietary software installed.
Note: CPU firmware patches are non-free but absolutely needed to protect you from some processor flaws and their ilks, so don't go overboard! ;-)
12
Intel's Intellectual property: CPUs are still closed source except RISC-V. @PublicVoid and as you're a new user: If one of the answers solved your problem, don't forget to click the grey ☑ at the left of its text, which means Yes, this answer is the most useful of all! ;-)
– Fabby
Nov 17 at 19:01
5
No, you'd have to buy an entire new computer with another CPU and supporting chipsets: it would not be an Intel system any more. Give it a few more years until someone in Taiwan starts building Risc-V processors for a rock bottom price @PublicVoid
– Fabby
Nov 17 at 19:16
2
CPU firmware patches do not protect you from Spectre. They might protect you from Meltdown, but so can/does PTI which the kernel will enable if the CPU firmware is not patched.
– R..
2 days ago
2
@Fabby: Not just future. Skylake has had at least 1 correctness problem before Meltdown/Spectre that required a microcode update to fix. (Disabling the use of the IDQ as a 64-entry loop buffer (LSD = Loop Stream Detector) because of rare corner cases with inserting (or failing to insert) merging uops for partial registers. Erratum SKL150. See hothardware.com/news/…. See also some low-level microbenchmarks / perf-counter results before the fix
– Peter Cordes
2 days ago
3
I ranvrms
and it failed to report Chrome, among others. So, it's not entirely reliable.
– Paddy Landau
15 hours ago
|
show 12 more comments
up vote
85
down vote
accepted
up vote
85
down vote
accepted
vrms
(Virtual Richard M. Stallman) to the rescue:
sudo apt install vrms
vrms
and you'll get something like:
Non-free packages installed on computer-name
app-shortname1 Application long name 1
app-shortname2 Application long name 2
app-shortname3 Application long name 3
Contrib packages installed on computer-name
app-contrib1 Application Contrib Name 1
3 non-free packages, 0.4% of 2381 installed packages.
1 contrib packages, 0.1% of 2381 installed packages.
that will ensure you do / do not have any proprietary software installed.
Note: CPU firmware patches are non-free but absolutely needed to protect you from some processor flaws and their ilks, so don't go overboard! ;-)
vrms
(Virtual Richard M. Stallman) to the rescue:
sudo apt install vrms
vrms
and you'll get something like:
Non-free packages installed on computer-name
app-shortname1 Application long name 1
app-shortname2 Application long name 2
app-shortname3 Application long name 3
Contrib packages installed on computer-name
app-contrib1 Application Contrib Name 1
3 non-free packages, 0.4% of 2381 installed packages.
1 contrib packages, 0.1% of 2381 installed packages.
that will ensure you do / do not have any proprietary software installed.
Note: CPU firmware patches are non-free but absolutely needed to protect you from some processor flaws and their ilks, so don't go overboard! ;-)
edited 2 days ago
answered Nov 17 at 17:59
Fabby
25.6k1359159
25.6k1359159
12
Intel's Intellectual property: CPUs are still closed source except RISC-V. @PublicVoid and as you're a new user: If one of the answers solved your problem, don't forget to click the grey ☑ at the left of its text, which means Yes, this answer is the most useful of all! ;-)
– Fabby
Nov 17 at 19:01
5
No, you'd have to buy an entire new computer with another CPU and supporting chipsets: it would not be an Intel system any more. Give it a few more years until someone in Taiwan starts building Risc-V processors for a rock bottom price @PublicVoid
– Fabby
Nov 17 at 19:16
2
CPU firmware patches do not protect you from Spectre. They might protect you from Meltdown, but so can/does PTI which the kernel will enable if the CPU firmware is not patched.
– R..
2 days ago
2
@Fabby: Not just future. Skylake has had at least 1 correctness problem before Meltdown/Spectre that required a microcode update to fix. (Disabling the use of the IDQ as a 64-entry loop buffer (LSD = Loop Stream Detector) because of rare corner cases with inserting (or failing to insert) merging uops for partial registers. Erratum SKL150. See hothardware.com/news/…. See also some low-level microbenchmarks / perf-counter results before the fix
– Peter Cordes
2 days ago
3
I ranvrms
and it failed to report Chrome, among others. So, it's not entirely reliable.
– Paddy Landau
15 hours ago
|
show 12 more comments
12
Intel's Intellectual property: CPUs are still closed source except RISC-V. @PublicVoid and as you're a new user: If one of the answers solved your problem, don't forget to click the grey ☑ at the left of its text, which means Yes, this answer is the most useful of all! ;-)
– Fabby
Nov 17 at 19:01
5
No, you'd have to buy an entire new computer with another CPU and supporting chipsets: it would not be an Intel system any more. Give it a few more years until someone in Taiwan starts building Risc-V processors for a rock bottom price @PublicVoid
– Fabby
Nov 17 at 19:16
2
CPU firmware patches do not protect you from Spectre. They might protect you from Meltdown, but so can/does PTI which the kernel will enable if the CPU firmware is not patched.
– R..
2 days ago
2
@Fabby: Not just future. Skylake has had at least 1 correctness problem before Meltdown/Spectre that required a microcode update to fix. (Disabling the use of the IDQ as a 64-entry loop buffer (LSD = Loop Stream Detector) because of rare corner cases with inserting (or failing to insert) merging uops for partial registers. Erratum SKL150. See hothardware.com/news/…. See also some low-level microbenchmarks / perf-counter results before the fix
– Peter Cordes
2 days ago
3
I ranvrms
and it failed to report Chrome, among others. So, it's not entirely reliable.
– Paddy Landau
15 hours ago
12
12
Intel's Intellectual property: CPUs are still closed source except RISC-V. @PublicVoid and as you're a new user: If one of the answers solved your problem, don't forget to click the grey ☑ at the left of its text, which means Yes, this answer is the most useful of all! ;-)
– Fabby
Nov 17 at 19:01
Intel's Intellectual property: CPUs are still closed source except RISC-V. @PublicVoid and as you're a new user: If one of the answers solved your problem, don't forget to click the grey ☑ at the left of its text, which means Yes, this answer is the most useful of all! ;-)
– Fabby
Nov 17 at 19:01
5
5
No, you'd have to buy an entire new computer with another CPU and supporting chipsets: it would not be an Intel system any more. Give it a few more years until someone in Taiwan starts building Risc-V processors for a rock bottom price @PublicVoid
– Fabby
Nov 17 at 19:16
No, you'd have to buy an entire new computer with another CPU and supporting chipsets: it would not be an Intel system any more. Give it a few more years until someone in Taiwan starts building Risc-V processors for a rock bottom price @PublicVoid
– Fabby
Nov 17 at 19:16
2
2
CPU firmware patches do not protect you from Spectre. They might protect you from Meltdown, but so can/does PTI which the kernel will enable if the CPU firmware is not patched.
– R..
2 days ago
CPU firmware patches do not protect you from Spectre. They might protect you from Meltdown, but so can/does PTI which the kernel will enable if the CPU firmware is not patched.
– R..
2 days ago
2
2
@Fabby: Not just future. Skylake has had at least 1 correctness problem before Meltdown/Spectre that required a microcode update to fix. (Disabling the use of the IDQ as a 64-entry loop buffer (LSD = Loop Stream Detector) because of rare corner cases with inserting (or failing to insert) merging uops for partial registers. Erratum SKL150. See hothardware.com/news/…. See also some low-level microbenchmarks / perf-counter results before the fix
– Peter Cordes
2 days ago
@Fabby: Not just future. Skylake has had at least 1 correctness problem before Meltdown/Spectre that required a microcode update to fix. (Disabling the use of the IDQ as a 64-entry loop buffer (LSD = Loop Stream Detector) because of rare corner cases with inserting (or failing to insert) merging uops for partial registers. Erratum SKL150. See hothardware.com/news/…. See also some low-level microbenchmarks / perf-counter results before the fix
– Peter Cordes
2 days ago
3
3
I ran
vrms
and it failed to report Chrome, among others. So, it's not entirely reliable.– Paddy Landau
15 hours ago
I ran
vrms
and it failed to report Chrome, among others. So, it's not entirely reliable.– Paddy Landau
15 hours ago
|
show 12 more comments
up vote
40
down vote
If you're keen on having only Free Software (although you used the term Open Source) on your computer, you may want to consider installing Ubuntu with the "Free Software Only" option. You can find out more over at this question.
12
Good one for everyone that comes here before the fact ;-) +1
– Fabby
Nov 17 at 18:46
add a comment |
up vote
40
down vote
If you're keen on having only Free Software (although you used the term Open Source) on your computer, you may want to consider installing Ubuntu with the "Free Software Only" option. You can find out more over at this question.
12
Good one for everyone that comes here before the fact ;-) +1
– Fabby
Nov 17 at 18:46
add a comment |
up vote
40
down vote
up vote
40
down vote
If you're keen on having only Free Software (although you used the term Open Source) on your computer, you may want to consider installing Ubuntu with the "Free Software Only" option. You can find out more over at this question.
If you're keen on having only Free Software (although you used the term Open Source) on your computer, you may want to consider installing Ubuntu with the "Free Software Only" option. You can find out more over at this question.
answered Nov 17 at 18:22
popey
12.6k74689
12.6k74689
12
Good one for everyone that comes here before the fact ;-) +1
– Fabby
Nov 17 at 18:46
add a comment |
12
Good one for everyone that comes here before the fact ;-) +1
– Fabby
Nov 17 at 18:46
12
12
Good one for everyone that comes here before the fact ;-) +1
– Fabby
Nov 17 at 18:46
Good one for everyone that comes here before the fact ;-) +1
– Fabby
Nov 17 at 18:46
add a comment |
Public Void is a new contributor. Be nice, and check out our Code of Conduct.
Public Void is a new contributor. Be nice, and check out our Code of Conduct.
Public Void is a new contributor. Be nice, and check out our Code of Conduct.
Public Void is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1093752%2fhow-to-make-sure-im-not-using-any-proprietary-software-after-instalation%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Related: How can I remove Proprietary Sources
– wjandrea
Nov 17 at 16:13
Possible duplicate of Why is there proprietary software in Ubuntu Software Center?
– N0rbert
Nov 17 at 16:37
3
Possible duplicate of What is the "Free software only" option when installing Ubuntu?
– popey
Nov 17 at 18:22
1
Possible duplicate of How to list all installed packages from a specific category (comptonent)
– muru
2 days ago