<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Deyan's Blog</title><link href="https://dastoev.com/" rel="alternate"/><link href="https://dastoev.com/feeds/all.atom.xml" rel="self"/><id>https://dastoev.com/</id><updated>2026-04-16T23:20:00+03:00</updated><subtitle>... home of my notes</subtitle><entry><title>Easy Config Reloads</title><link href="https://dastoev.com/shorts/2026/04/tmux-easy-config-reloads/" rel="alternate"/><published>2026-04-16T23:20:00+03:00</published><updated>2026-04-16T23:20:00+03:00</updated><author><name>Deyan Stoev</name></author><id>tag:dastoev.com,2026-04-16:/shorts/2026/04/tmux-easy-config-reloads/</id><content type="html">&lt;p&gt;Since I’m experimenting quite often with my &lt;code&gt;tmux.conf&lt;/code&gt; I want to reload the config easily. This is why I have a command to reload my config on &lt;code&gt;r&lt;/code&gt;:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="c1"&gt;# reload config file (change file location to your the tmux.conf you want to use)&lt;/span&gt;
&lt;span class="n"&gt;bind&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;r&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="n"&gt;source&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;file&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;~/.&lt;/span&gt;&lt;span class="n"&gt;tmux&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;conf&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content><category term="Shorts"/><category term="tmux"/><category term="knowledge"/></entry><entry><title>Intuitive Split Commands</title><link href="https://dastoev.com/shorts/2026/04/intuitive-tmux-settings/" rel="alternate"/><published>2026-04-16T22:55:00+03:00</published><updated>2026-04-16T22:55:00+03:00</updated><author><name>Deyan Stoev</name></author><id>tag:dastoev.com,2026-04-16:/shorts/2026/04/intuitive-tmux-settings/</id><content type="html">&lt;p&gt;Another thing I personally find quite difficult to remember is the pane splitting commands.&lt;code&gt;"&lt;/code&gt; to split vertically and &lt;code&gt;%&lt;/code&gt; to split horizontally just doesn’t work for my brain. I find it helpful to have use characters that resemble a visual representation of the split, so I chose &lt;code&gt;|&lt;/code&gt; and &lt;code&gt;-&lt;/code&gt; for splitting panes horizontally and vertically:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind &amp;#39;&amp;quot;&amp;#39;
unbind %
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content><category term="Shorts"/><category term="tmux"/><category term="knowledge"/></entry><entry><title>Upgrade Raspbian Jessie to Stretch</title><link href="https://dastoev.com/posts/2019/06/upgrade-raspberry-pi-raspbian-from-jessie-to-stretch/" rel="alternate"/><published>2019-06-06T22:50:00+03:00</published><updated>2019-06-06T22:50:00+03:00</updated><author><name>Deyan Stoev</name></author><id>tag:dastoev.com,2019-06-06:/posts/2019/06/upgrade-raspberry-pi-raspbian-from-jessie-to-stretch/</id><summary type="html">&lt;p&gt;How to upgrade Raspbian Jessie to Stretch for the patient.&lt;/p&gt;</summary><content type="html">&lt;p&gt;How to upgrade Raspbian Jessie to Stretch in a few simple steps.&lt;/p&gt;
&lt;p&gt;The upgrade from Jessie to Stretch is an easy and simple task, but is not guaranteed to work in every circumstance. The upgrade process takes some time and therefore requires some patience especially on older Raspberry Pi models. The owners of Raspberry Pi B 1 (like me) may consider rebuilding their system from scratch instead of goint through the time consuming upgrade process.&lt;/p&gt;
&lt;h2&gt;Important&lt;/h2&gt;
&lt;h3&gt;MariaDB replaces MySQL&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;Note: that the database binary data file formats are not backwards compatible, so once you have upgraded to MariaDB 10.1 you will not 
be able to switch back to any previous version of MariaDB or MySQL unless you have a proper database dump. Therefore, before 
upgrading, please make backups of all important databases with an appropriate tool such as mysqldump.`
&lt;a href="https://www.debian.org/releases/stretch/i386/release-notes/ch-whats-new.en.html#mariadb-replaces-mysql"&gt;debian.org&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Recommendations&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Backup data and configurations&lt;/li&gt;
&lt;li&gt;Remove unnecessary or obsolete packages&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Check available disk space&lt;/h2&gt;
&lt;p&gt;Check the available and used disk space on the SD card.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;df&lt;span class="w"&gt; &lt;/span&gt;-h
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h2&gt;Fully upgrade the current systen&lt;/h2&gt;
&lt;p&gt;Update your system's package list:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt-get&lt;span class="w"&gt; &lt;/span&gt;update
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;After that upgrade all your installed packages to their latest version:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt-get&lt;span class="w"&gt; &lt;/span&gt;dist-upgrade
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Upgrade any held back packages:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt-get&lt;span class="w"&gt; &lt;/span&gt;dist-upgrade
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h2&gt;System check&lt;/h2&gt;
&lt;p&gt;Check that all packages are in a state that is suitable for upgrade. Perform database sanity and consistency checks for partially installed, missing and obsolete packages.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;dpkg&lt;span class="w"&gt; &lt;/span&gt;-C
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Check for held back packages:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt-mark&lt;span class="w"&gt; &lt;/span&gt;showhold
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Fix all issues before moving to the next step.&lt;/p&gt;
&lt;h2&gt;Upgrading from Jessie to Stretch&lt;/h2&gt;
&lt;p&gt;Modify the files &lt;code&gt;/etc/apt/sources.list&lt;/code&gt; and &lt;code&gt;/etc/apt/sources.list.d/raspi.list&lt;/code&gt;. In both files, change every occurrence of the word &lt;code&gt;jessie&lt;/code&gt; with &lt;code&gt;stretch&lt;/code&gt;.
Use the following commands to performe the task:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;sed&lt;span class="w"&gt; &lt;/span&gt;-i&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;s/jessie/stretch/g&amp;#39;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;/etc/apt/sources.list
sudo&lt;span class="w"&gt; &lt;/span&gt;sed&lt;span class="w"&gt; &lt;/span&gt;-i&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;s/jessie/stretch/g&amp;#39;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;/etc/apt/sources.list.d/raspi.list
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Update local pakage index:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt-get&lt;span class="w"&gt; &lt;/span&gt;update
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Upgrade the system:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt-get&lt;span class="w"&gt; &lt;/span&gt;upgrade&lt;span class="w"&gt; &lt;/span&gt;-y
sudo&lt;span class="w"&gt; &lt;/span&gt;apt-get&lt;span class="w"&gt; &lt;/span&gt;dist-upgrade&lt;span class="w"&gt; &lt;/span&gt;-y
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h2&gt;Cleaning&lt;/h2&gt;
&lt;p&gt;Remove unused packages:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt-get&lt;span class="w"&gt; &lt;/span&gt;autoremove&lt;span class="w"&gt; &lt;/span&gt;-y
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt-get&lt;span class="w"&gt; &lt;/span&gt;autoclean
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Reboot the system as finall step.&lt;/p&gt;
&lt;h3&gt;Notes&lt;/h3&gt;
&lt;p&gt;Downloaded package files (.deb files) are kept in /var/cache/apt/archives, you can remove these in order to free up space with sudo apt-get clean.&lt;/p&gt;
&lt;p&gt;The End&lt;/p&gt;</content><category term="RaspberryPi"/><category term="raspberry pi"/><category term="rpi"/><category term="raspbian"/><category term="knowledge"/><category term="linux"/><category term="how-to"/></entry><entry><title>Changing preferences in Pantheon Files (Elementary OS)</title><link href="https://dastoev.com/posts/2019/04/changing-preferences-in-pantheon-files-elementary-os/" rel="alternate"/><published>2019-04-20T21:11:00+03:00</published><updated>2019-04-20T21:11:00+03:00</updated><author><name>Deyan Stoev</name></author><id>tag:dastoev.com,2019-04-20:/posts/2019/04/changing-preferences-in-pantheon-files-elementary-os/</id><summary type="html">&lt;p&gt;Haw to change the preferences in Elementary OS file manager "Files" and specificaly how to enable or disable the single-click feature.&lt;/p&gt;</summary><content type="html">&lt;p&gt;This note is about how to enable or disable the &lt;strong&gt;&lt;em&gt;single-click&lt;/em&gt;&lt;/strong&gt; feature in Elementary OS file manager "Files". &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;single-click&lt;/strong&gt; description: &lt;em&gt;Wheather items are activated by single clicks instead of dubble clicks.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;There are a few ways to accoplishe the task. Here are two of them.&lt;/p&gt;
&lt;h2&gt;Method 1&lt;/h2&gt;
&lt;p&gt;Method one is using &lt;strong&gt;GSettings&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;To enable &lt;strong&gt;single-click&lt;/strong&gt; use the following command.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;gsettings&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nb"&gt;set&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;io.elementary.files.preferences&lt;span class="w"&gt; &lt;/span&gt;single-click&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nb"&gt;true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;and to disable it:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;gsettings&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nb"&gt;set&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;io.elementary.files.preferences&lt;span class="w"&gt; &lt;/span&gt;single-click&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nb"&gt;false&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h2&gt;Method 2&lt;/h2&gt;
&lt;p&gt;Other way to do it is by using &lt;strong&gt;dconf Editor&lt;/strong&gt;. &lt;/p&gt;
&lt;p&gt;Note: &lt;em&gt;if &lt;/em&gt;&lt;em&gt;dconf Editor&lt;/em&gt;&lt;em&gt; is not installed, use the following command to install it.&lt;/em&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo&lt;span class="w"&gt; &lt;/span&gt;apt&lt;span class="w"&gt; &lt;/span&gt;install&lt;span class="w"&gt; &lt;/span&gt;dconf-editor
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Open &lt;strong&gt;dconf Editor&lt;/strong&gt; and navigate to preferences &lt;strong&gt;io-&amp;gt;elementary-&amp;gt;files-&amp;gt;preferences&lt;/strong&gt;, here are all the preferences for "Files" file manager. Now you can turn on and off &lt;strong&gt;single-click&lt;/strong&gt; feature.&lt;/p&gt;
&lt;p&gt;&lt;img alt="dconf editor navigation" src="/images/dconf-editor-nav.gif" title="dconf editor navigation"&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: &lt;em&gt;Be carefull with changing other settings. Might brake the app&lt;/em&gt;&lt;/p&gt;</content><category term="Linux"/><category term="linux"/><category term="knowledge"/><category term="notes"/></entry><entry><title>Install Python 3.7 on Raspberry Pi (Raspbian)</title><link href="https://dastoev.com/posts/2019/03/install-python-3-7-on-raspberry-pi/" rel="alternate"/><published>2019-03-30T21:30:00+02:00</published><updated>2019-03-30T21:30:00+02:00</updated><author><name>Deyan Stoev</name></author><id>tag:dastoev.com,2019-03-30:/posts/2019/03/install-python-3-7-on-raspberry-pi/</id><summary type="html">&lt;p&gt;How to install Python 3.7 on Rasberry Pi running Rasbpian&lt;/p&gt;</summary><content type="html">&lt;p&gt;Currently the newest version that Raspbian incudes is 3.4 
That means building from source.&lt;/p&gt;
&lt;h2&gt;Installing the dependencies needed to build&lt;/h2&gt;
&lt;p&gt;Some of the packages might be already installed on the system.&lt;/p&gt;
&lt;p&gt;List of dependencies:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;build-essential &lt;/li&gt;
&lt;li&gt;tk-dev &lt;/li&gt;
&lt;li&gt;libncurses5-dev &lt;/li&gt;
&lt;li&gt;libncursesw5-dev &lt;/li&gt;
&lt;li&gt;libreadline6-dev &lt;/li&gt;
&lt;li&gt;libdb5.3-dev &lt;/li&gt;
&lt;li&gt;libgdbm-dev &lt;/li&gt;
&lt;li&gt;libsqlite3-dev &lt;/li&gt;
&lt;li&gt;libssl-dev &lt;/li&gt;
&lt;li&gt;libbz2-dev &lt;/li&gt;
&lt;li&gt;libexpat1-dev &lt;/li&gt;
&lt;li&gt;liblzma-dev &lt;/li&gt;
&lt;li&gt;zlib1g-dev &lt;/li&gt;
&lt;li&gt;libffi-dev&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo apt-get update -y
sudo apt-get install build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev -y
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Note: If one of the packages cannot be found, try newer version like &lt;code&gt;libdb5.4-dev&lt;/code&gt; instead of &lt;code&gt;libdb5.3-dev&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;Download source&lt;/h2&gt;
&lt;p&gt;When downloading the source code, select the most recent release available on the &lt;a href="https://www.python.org/downloads/source/"&gt;official site&lt;/a&gt;. You will have to adjust the file names accordingly.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz"&gt;Python-3.7.3&lt;/a&gt;&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;&lt;span class="nt"&gt;wget&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;https&lt;/span&gt;&lt;span class="o"&gt;://&lt;/span&gt;&lt;span class="nt"&gt;www&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;python&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;org&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="nt"&gt;ftp&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="nt"&gt;python&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="nt"&gt;3&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;7&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;3&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="nt"&gt;Python-3&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;7&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;3&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;tgz&lt;/span&gt;
&lt;span class="nt"&gt;tar&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;xf&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;Python-3&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;7&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;3&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;tar&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;xz&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;cd&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;Python-3&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;7&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;3&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h2&gt;Compile and install&lt;/h2&gt;
&lt;p&gt;Compiling takes some time especialy on older raspberry pi models, be patient :)&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;./configure
make
sudo make altinstall
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h2&gt;Cleaning&lt;/h2&gt;
&lt;p&gt;Delete source&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;cd ..
sudo rm -r Python-3.7.3
rm Python-3.7.3.tar.xz
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Optional. Uninstall the previously installed packages. When uninstalling the packages, make sure to only remove these that were not previously installed on your system.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;sudo apt-get --purge remove build-essential tk-dev -y
sudo apt-get --purge remove libncurses5-dev libncursesw5-dev libreadline6-dev -y
sudo apt-get --purge remove libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev -y
sudo apt-get --purge remove libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev -y
sudo apt-get autoremove -y
sudo apt-get clean
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</content><category term="Python"/><category term="python"/><category term="raspberry pi"/><category term="rpi"/><category term="raspbian"/><category term="knowledge"/></entry></feed>