Sublime Text Installation, Debian with Plank

This is a guide showing how to install Sublime Text from the Sublime debian repo and then what to do to ensure you can pin it to Plank dock (could well be required for other docks like Docky too). Install sublime from the repo (sublimes docs on install https://www.sublimetext.com/docs/3/linux_repositories.html) I’m running a minimal system to … Read more

List Plesk Cron Jobs

for user in $(getent passwd | cut -f1 -d: ); do echo $user; crontab -u $user -l; done To manipulate the crons from shell (using user from the list) crontab [-u user] [-l | -r | -e] [-i]  

Installing Plank Dock on Debian Jessie

Plank is the dock which features in the very nicely presented Ubuntu distro Elementary linux. I recently switched from Docky as I like Planks simplicity. This is what was required. Get the latest tar.xz from https://launchpad.net/plank Install dependencies sudo apt-get install automake gnome-common intltool pkg-config valac libbamf3-dev libdbusmenu-gtk3-dev libgdk-pixbuf2.0-dev libgee-dev libglib2.0-dev libgtk-3-dev libwnck-3-dev libx11-dev libgee-0.8-dev … Read more

Java (OpenJDK) in Chromium Debian & Ubuntu

I’ve found the below combination to work well for any browser Java needs. Here’s how I got it working: Install OpenJDK sudo apt-get install openjdk-8-jre Install the IcedTea java browser plugin sudo apt-get install icedtea-8-plugin Navigate to your Chromium plugins folder cd /usr/lib/chromium/plugins Create a symbolic link to the IcedTea Plugin sudo ln -s /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so … Read more