epiccurious / jade-diy

Securely custody your bitcoin with Open Source software and generic hardware.
MIT No Attribution
13 stars 1 forks source link

Apt should install quietly #13

Closed epiccurious closed 1 year ago

epiccurious commented 1 year ago

Even with apt set to quiet (-qq), there's still stdout being written by dpkg.

Try this command:

apt-get install -qq -o=Dpkg::Use-Pty=0 <packages>

Or maybe this variant:

apt-get -qq install -o=Dpkg::Use-Pty=0 <packages>
epiccurious commented 1 year ago

Use -o and redirect the output:

sudo apt-get -qq install -y -o=Dpkg::Use-Pty=0 git &> /dev/null
epiccurious commented 1 year ago

Closed