Also, below is a running wiki of things I have done to my cosmo on linux so far. This is a compilation of several sources. Please take a look an make any corrections or suggestions.
Setup Cosmo Communicator DebianFollow Planet Computer Linux Install Instructions.
https://support.planetcom.co.uk/index.php/Linux_for_Cosmo#Phone_and_Message_apps install gemian cosmo linux kernal 4.4https://github.com/gemian/gemian/wiki/KernelCompilationsudo apt update
sudo apt upgrade
sudo reboot
git clone
https://github.com/gemian/cosmo-linux-kernel-4.4.gitcd cosmo-linux-kernel-4.4
git checkout packaging
sudo apt install devscripts build-essential bc qemu-user-binfmt
debuild -b -uc -us
sudo dpkg -i ../cosmo-linux-kernel*deb
Prevent kernel upgrade over apthttps://hollysydney.com/article/prevent-ubuntu-upgrading-kernelhttps://askubuntu.com/questions/938494/how-to-i-prevent-ubuntu-from-kernel-version-upgrade-and-notificationsudo dpkg -l | grep cosmo-linux
sudo apt-mark hold cosmo-linux-kernel:arm64
sudo apt-mark hold cosmo-linux-kernel-headers
sudo apt update
sudo apt upgrade
Install power saving techhttps://www.oesf.org/forum/index.php?topic=36471.0https://wiki.debian.org/CpuFrequencyScalingapt get install cpufrequtils tlp
sudo cpufreq-set -g powersave
sudo cpufreq-set -c 0 -g powersave
Create Startup Script for CPU Power Settings mkdir ~/scripts
vim ~/scripts/cpupowersave
Type the following lines then save :wq
#/bin/sh -e
cpufreq-set -c 0 -g powersave
cpufreq-set -c 1 -g powersave
cpufreq-set -c 2 -g powersave
cpufreq-set -c 3 -g powersave
exit 0
go to Settings -> System Settings -> Startup and Shutdown -> Autostart -> Add Script
navigate to /home/cosmo/scripts/cpupowersave then press Ok.
Turn On Mobile DataFollow Plan Mobile Data Instructions
https://support.planetcom.co.uk/index.php/Cosmo_Linux_Mobile_DataFix cosmopda not found when running sudohttps://askubuntu.com/questions/59458/error-message-sudo-unable-to-resolve-host-noneTwo things to check (assuming your machine is called my-machine, you can change this as appropriate):
That the /etc/hostname file contains just the name of the machine.
That /etc/hosts has an entry for localhost. It should have something like:
127.0.0.1 localhost.localdomain localhost
127.0.1.1 my-machine