ubuntu:pdf:remove_password_from_pdf
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:pdf:remove_password_from_pdf [2020/10/14 08:49] – 192.168.1.1 | ubuntu:pdf:remove_password_from_pdf [2020/10/14 08:53] (current) – 192.168.1.1 | ||
---|---|---|---|
Line 10: | Line 10: | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
</ | </ | ||
Line 16: | Line 16: | ||
---- | ---- | ||
- | ===== Install | + | ===== Using the PDF Toolkit (pdftk) ===== |
+ | |||
+ | ==== Install the PDF Toolkit (pdftk) | ||
<code bash> | <code bash> | ||
Line 24: | Line 26: | ||
---- | ---- | ||
- | ===== Remove the password from the PDF ===== | + | ==== Remove the password from the PDF ==== |
<code bash> | <code bash> | ||
Line 31: | Line 33: | ||
---- | ---- | ||
+ | |||
+ | ===== Using QPDF ===== | ||
+ | |||
+ | ==== Install QPDF ==== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install qpdf | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Remove the password from the PDF ==== | ||
+ | |||
+ | <code bash> | ||
+ | qpdf –password=password –decrypt secured.pdf unsecured.pdf | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Using xpdf-utils ===== | ||
+ | |||
+ | ==== Install xpdf-utils ==== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install xpdf-utils | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Remove the password from the PDF ==== | ||
+ | |||
+ | <code bash> | ||
+ | pdftops -upw password secured.pdf unsecured.pdf | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
===== References ===== | ===== References ===== |
ubuntu/pdf/remove_password_from_pdf.1602665398.txt.gz · Last modified: 2020/10/14 08:49 by 192.168.1.1