This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
# For a complete reference, please see the online documentation at | |
# https://docs.vagrantup.com. | |
config.vm.box = "debian/bookworm64" | |
# Create a private network, which allows host-only access to the machine | |
# using a specific IP. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I encountered two major difficulties when trying to import an SSL certificate into an old Brother DCP-9020CDW | |
# multifunction printer: | |
# First, I was unable to export the openssl `.pem` and `.key` files to pkcs in a way that allowed the printer to | |
# import the certificate. I kept getting the error message "The password is not correct.", even though the password | |
# was definitely correct. | |
# I was exporting the certificate using: | |
openssl pkcs12 -export -out brother.p12 -in brother.pem -inkey brother.key |