3
rated 0 times
[
3]
[
0]
/ answers: 1 / hits: 1299
/ 2 Years ago, sat, september 11, 2021, 12:35:58
Whenever we need to install any packages in Ubuntu we install it using the command:
sudo apt-get install <package-name>
Using redirection as below will save all the logs in a file:
sudo apt-get install <package-name> > Log.txt
But the above command doesn't show any output in the terminal. Is there any way we can save all the logs in a file and can also see it on terminal?
More From » apt