We install certutil
and pk12util
if necessary:
sudo apt install libnss3-tools
On Linux, Chromium uses the NSS Shared DB. Check if you have the ~/.pki/nssdb
directory:
ls $HOME/.pki/nssdb
We install certutil
and pk12util
if necessary:
sudo apt install libnss3-tools
On Linux, Chromium uses the NSS Shared DB. Check if you have the ~/.pki/nssdb
directory:
ls $HOME/.pki/nssdb
When using the custom installer one should use the following recommended sizes: | |
minmum - avg folder type / location | |
------------------------------------------------------ | |
100mb - 500mb /boot primary / beginning of disk | |
half ram /swap logical / end of disk | |
10gb - 50gb / primary / beginning of disk | |
rest of space /home primary / end of disk |
These are the steps I followed enable VirtualBox on my laptop without disabling UEFI Secure Boot. They're nearly identical to the process described on [Øyvind Stegard's blog][blog], save for a few key details. The images here are borrowed from the [Systemtap UEFI Secure Boot Wiki][systemtap].
src='https://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo'
{ | |
"editor.hover.enabled": false, | |
"php.executablePath": "/usr/bin/php", | |
"workbench.iconTheme": "material-icon-theme", | |
"files.insertFinalNewline": true, | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontSize": 32, | |
"editor.scrollBeyondLastLine": true, | |
// "window.title": "${activeEditorFull}${separator}${rootName}", | |
"files.trimTrailingWhitespace": true, |
# Create a file called PHPUnitTestMethodPlugin.py in Plugins/ within your Sublime Text Packages folder | |
# You can run this via Sublime's console with: view.run_command("php_unit_test_method") | |
# You can bind it to ctrl+e as a regular command | |
import sublime | |
import re | |
import sublime_plugin | |
class PhpUnitTestMethodCommand(sublime_plugin.TextCommand): | |
def run(self, edit, lines = 10): |