Installing Adobe Acrobat Reader on Debian (10) Buster

Adobe Acrobat Reader is used to read/open PDF files, but wait debian buster already have Document Viewer to open PDF files then why do we need Acrobat Reader. None of the PDF viewer except Acrobat Reader in Linux is providing feature to validate signature, which we need sometimes to validate PDF documents. Just downloading AdbeRdr9.5.5-1_i386linux_enu.deb does not let you install Acrobat Reader directly on Debian Buster then how to do this?

Step : 1
First we require to add the i386 architecture using terminal command :

sudo dpkg --add-architecture i386
sudo apt-get update

Step : 2
Add library libxml2:i386 :

sudo apt-get install libxml2:i386

Step : 3
Download the Adobe Acrobat Reader (acroread) deb package here:

step : 4
Go to Downloads Folder and Install the deb package using terminal as follows :

cd ~/Downloads
sudo dpkg -i AdbeRdr9.5.5-1_i386linux_enu.deb

Terminal will through some error(s) but just avoid them and follow next step.

step : 5
Install the various dependencies require by the package (acroread) using following command.

sudo apt-get -f install

You are all set! Launch the Adobe Acrobat Reader from the terminal by :

acroread

How to automount usb drives in Debian (10) Buster?

Recently on a fresh installation of Debian Buster encountered the problem of automounting the external USB drives on my Dell N5010 Laptop. Didn’t faced such problem on Debian Stretch or older versions. After researching found that responsible package for automounting are udisks2 and libglib2.0-bin. udiskie is also responsible to automount USB drive. These all are properly installed, but didn’t working. Even due to this GParted was not opening. Even tried on the Terminal with sudo but it was showing message ‘Too few arguments’.

FIX :

Added a user systemd service to start udiskie:
/etc/systemd/user/udiskie.service with following code.

[Unit]
Description=Udiskie automount daemon

[Install]
WantedBy=graphical-session.target

[Service]
ExecStart=/usr/bin/udiskie --verbose --use-udisks2 --automount --no-config --notify --tray --appindicator

After rebooting this fixed the automounting the external USB drives and GParted too.