How to Sign a JAR (Java) File on Debian
Install JDK package:
apt-get install default-jdk |
Execute and enter all neccessary data Name, Country, etc:
keytool -genkey -validity 3650 -keystore pKeyStore -alias keyName |
Execute and enter all neccessary data password, etc:
keytool -selfcert -keystore pKeyStore -alias keyName- validity 3650 |
Execute and enter the password to the turning up question:
jarsigner -keystore pKeyStore Main.jar keyName |
Additional information:
Signing JAR Files (The Java™ Tutorials)
More Related Posts
- [2016/06/01] Extract and Count Unique IP Addresses ...
- [2016/06/21] Bash: lsb_release: command not found
- [2016/05/25] Debconf-get-selections: Command not fo...
- [2016/05/26] Cannot Access Attachments Upload Path ...
- [2016/05/24] Free Windows Templates For Kimsufi
- [2016/07/02] Run a Bash Script in Background with N...
- [2016/06/15] Bash: make: command not found
- [2016/07/02] Execute Commands After You Exit From a...