-
Notifications
You must be signed in to change notification settings - Fork 3
How to use the PPAs
artmg edited this page Dec 1, 2016
·
2 revisions
paste the following code into a Terminal in Ubuntu (or one of its derivatives)
# add the PPA
sudo add-apt-repository -y ppa:nixnote/nixnote2-daily
sudo apt-get update
# install nixnote2
sudo apt-get install nixnote2
sudo apt-get update
sudo apt-get install nixnote2
# check internal version number
dpkg -s nixnote2 | grep Version
then check Help / About to see the friendly version number.
You shouldn't need to do this, but just in case things don't work out with installing from the PPAs, you can try:
# check the PPA has been included
ls /var/lib/apt/lists/*nixnote*_Packages -l
# check what packages are available
grep Package /var/lib/apt/lists/*nixnote*_Packages
# simple list of packages
awk '$1 == "Package:" { if (a[$2]++ == 0) print $2; }' /var/lib/apt/lists/*nixnote*_Packages