How to remove password protection from PDF in Ubuntu

Although this format offers password protection, there are times when you may want to make an unsecured copy of a .pdf file, such as for personal use, to avoid having to enter a password. every time you open a file.

Portable Document Format (PDF) is one of the most frequently used file formats today. Today's article will discuss some ways to achieve this.

Create an unsecured PDF file from the command line

This method requires the command line utilities pdftops and ps2pdf to be installed on the Linux system. If you are running Ubuntu, these utilities are already available, otherwise you can install them by running the following command:

sudo apt-get install xpdf-utils context

Once all the requirements are ready, first execute the pdftops command (syntax below) to convert the password-protected PDF file to a postscript (.ps) file:

pdftops -upw [password] [complete-path-to-pdf-file] [complete-path-to-ps-file]

In the command sample shown above, the -upw option is used to specify the user password for the PDF file. Replace [password], [complete-path-to-pdf-file] and [complete-path-to-ps-file] with the actual password used to open the .pdf file, the path of the pdf file and the location to save the .ps file. In this case, these two files are: '~/Downloads/PDF/secured.pdf' and '~/Downloads/PDF/unsecured.ps' respectively.

When running this command, the postscript file (.ps) will be created at the location specified in the command.

How to remove password protection from PDF in Ubuntu Picture 1How to remove password protection from PDF in Ubuntu Picture 1

The next step is to convert this postscript file into a .pdf file, which can be easily done using the ps2pdf command. This is the command used in the example case:

ps2pdf ~/Downloads/PDF/unsecured.ps ~/Downloads/PDF/unsecured.pdf

and it creates 'unsecured.pdf' in the same folder.

How to remove password protection from PDF in Ubuntu Picture 2How to remove password protection from PDF in Ubuntu Picture 2

Now, when you open this newly created PDF file, it will not ask for a password.

Create insecure PDF files with Document Viewer

This method focuses on achieving the same using Document Viewer, the default PDF viewer in Ubuntu. First, open the password-protected PDF file in Document Viewer by entering the password:

How to remove password protection from PDF in Ubuntu Picture 3How to remove password protection from PDF in Ubuntu Picture 3

Once the file is open, go to File -> Print and make sure the 'Print to File' option in the 'General' tab is selected.

How to remove password protection from PDF in Ubuntu Picture 4How to remove password protection from PDF in Ubuntu Picture 4

Then, make sure that the file option contains the output PDF name and location of your choice - this information can be changed by clicking the button where the information is displayed. The example changed the output file name from 'secured.pdf' to 'no-password.pdf'.

How to remove password protection from PDF in Ubuntu Picture 5How to remove password protection from PDF in Ubuntu Picture 5

Now, simply click on the 'Print' button and the unsecured PDF file will be saved at the location specified in the File option, in this case '~/Documents'.

Try opening a new file now and it will not ask you to enter any password.

Of course, these are not the only two ways to create an unsecured .pdf file from a password-protected file, but the methods discussed in this article will give you an idea of ​​how to achieve the same thing. yourself using the command line as well as the GUI.

Have you ever tried any of these (or any other) methods to create an unsecured .pdf file? How was your experience? Share your thoughts in the comments section below!

4.5 ★ | 2 Vote