Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
il me semble que ouiSalut,
Je voudrais savoir, si je pouvais installer LMDE 2 en dual boot sur mon MacBook Pro édition 2017 avec TouchBar et si oui, comment ?
Merci
?T'as cru j'étais Einstein ?
(source :Please, follow firstly [this guide](Vous devez être inscrit pour voir les liens ! Inscrivez-vous ou connectez-vous ici.) and then [this one](Vous devez être inscrit pour voir les liens ! Inscrivez-vous ou connectez-vous ici.) carefully or follow the following steps:
Install the *MacBook12 SPI drivers*:
apt install dkms
git cloneVous devez être inscrit pour voir les liens ! Inscrivez-vous ou connectez-vous ici./usr/src/applespi-0.1
dkms install -m applespi -v 0.1
printf "%s\n" "# applespi" "applespi" "intel_lpss_pci" "spi_pxa2xx_platform" >> /etc/initramfs-tools/modules
update-initramfs -u
and `reboot`, then follow this second part (you can interchange `apt` with `dnf`):
sudo apt install git kernel-devel
git cloneVous devez être inscrit pour voir les liens ! Inscrivez-vous ou connectez-vous ici.
pushd macbook12-spi-driver
git checkout touchbar-driver-hid-driver
make
sudo mkdir /lib/modules/`uname -r`/custom/
sudo cp applespi.ko appletb.ko /lib/modules/`uname -r`/custom/
sudo depmod
popd
now look for ** the attached 61-evdev-local.hwdb** (located in the directory of the cloned repo):
sudo cp ...the-attached-61-evdev-local.hwdb... /etc/udev/hwdb.d/61-evdev-local.hwdb
sudo modprobe intel_lpss_pci spi_pxa2xx_platform applespi appletb
now, if you using `dracut` follow this:
sudo mv /boot/initramfs-`uname -r`.img{,.orig}
sudo mv ...the-attached-keyboard.conf... /etc/dracut.conf.d/keyboard.conf
sudo dracut
else this:
1. open following file `/etc/initramfs-tools/modules`
2. append to the file only the missing words picked from: `{applespi, intel_lpss_pci, spi_pxa2xx_platform, appletb}` (for example if the file the words `pplespi` and `appletb` are already listed, append only `intel_lpss_pci ` and `spi_pxa2xx_platform `)
3. save and close
finally `reboot`.