How to push files from your PC to Amazon Fire TV

The easiest way to do it:

  1. settings –> system –> Developer Option
  2. ADB-Debuggin ON
  3. Apps from unknown sources ON

After that, download the actual adb Link

You can now push with one klick: Kodi, FireLauncher and the addons you need for Kodi

Barcelona-tips

Because I was living in 2011 for 3 month in my favourite city Barcelona, I am asked so many times for Barcelona Tips…
So here we go:

Concerts

  • Always have a look at THIS FORUM, it’s in catalan, but you can get the informations out of the postings and use your favorite translate website, it will help you too! Best online information for squat shows (but let me tell you: they start really really late… )
  • Estraperlo Club del Ritme, Club in Badalona (so it’s little bit outside of BCN) where you can watch many cool Bands (I saw Dickies, Dwarves and many more there), Isidre Nonell 9, Badalona, (Metro: L2 Badalona Pompeu Fabra, and walking, there is also some Bus stops, have a look online for more information) P.S. Badalona has a perfect beach - so go there during the day, swim drink some beer and get than to the concert
  • Sala Razzmatazz, Big concert location, Pamplona 88, 1er piso, 08018, Barcelona, (Metro: L1 Marina or L4 Bogatell)

Bars

Which Linux Version is running

Sometimes you need to know, which Linux distro you are running, and especially, which version:

lsb_release -a

The answer will look like:

No LSB modules are available
Distributor ID: Ubuntu
Description: Ubuntu 14.04.3 LTS
Release: 14.04
Codename: trusty

No HDD space left for ubuntu update, make some space at /boot

Alt text
your hd is full, make space in /boot aaaa make a

cd /boot ls -la
so you see the `/boot` folder

Alt text

now delete the stuff you don’t need anymore:

sudo aptitude remove linux-image-3.13.0-49-generic
sudo apt-get remove ...

Alt text
(ls -la after deleting the linux kernel image)

Finding the biggest folders

If you have on a server a folder which is to big, and you want to know, which file is the reason for a problem, use du

du -m | sort -n | tail -n 10

for finding the 10 biggest folders.
(repeat this step in the biggest folder again to find the “problem folders”)