I recently installed Debian Jessie from scratch in my laptop. Take in mind that I already had a Sid installation and I wanted its same functionality. I am going to describe here some of the post-installation tasks that I did. Some of them are much needed for me. Other ones won’t be interesting for the most of people.
Activivities
Somehow activities in Debian Jessie’s KDE 4.14.2 did not work out of the box. I cannot live without activities ! I finally found that activities are disabled by default and that you need to install an specific package for them to be installed.
apt-get install libkactivities-bin
Multiarch support
I have an amd64 system and I need i386 support for some applications like Skype.
dpkg --add-architecture i386
apt-get update
Skype with two accounts
I happen to use Skype with two accounts at once. So I needed to recover my /usr/local/bin/skype script which has:
#!/bin/bash
/usr/bin/skype &
/usr/bin/skype --dbpath=~/.SecondInstallation/ &
from my old Sid installation.
FX keys not working as a regular PC
I don’t like FX keys to work as a Mac. In my case, contrary to my old howto (Use Xorg in mac book pro (ES)), I just had to edit:
/etc/modprobe.d/function.conf
add to it:
options hid_apple fnmode=2
and run:
sudo update-initramfs -u
After that you just need to reboot your machine and FX keys worked as I expected for me.
Flash
I tried the recommended Ubuntu partner repository instructions but it used an old flash version. I just used the PepperFlashPlayer Installing Debian wiki page instructions.
Gnome Network Manager
I use gnome network manager instead of the kde one (Maybe I’m wrong on that but I think I found out that kde’s network manager package is no longer there in Jessie). I installed:
apt-get install network-manager-openvpn-gnome
and I recovered files from my old system so that old connections were alive again. I reused files from these two directories:
/etc/NetworkManager/system-connections
and
/etc/NetworkManager/VPN
.
Recover my sound settings
So I want to be able to control my actual device controls from kmix. Not the fake global volumes from pulseaudio which might hide some specific settings.
- I install:
plasma-widget-veromix
package to be able to control pulseaudio if needed. - Add veromix plasmoid to my kde panels (In order to control pulseaudio from it easily)
- Thanks to : kmix does not show all channels (part 2) I just edit: /etc/environment and I add to it:
KMIX_PULSEAUDIO_DISABLE=1
Oracle Java
Yes, I need sometimes to use official Java. I just used instructions found on: HOW TO INSTALL ORACLE JAVA 8 IN DEBIAN VIA REPOSITORY [JDK8] in order to do it.