Cannot find even one penguin in my system

what can i do?
cannot find even one penguin in my ubuntu system.
Is it issue of my searching skills or an epic developer's failure? please help

Hi @miselesy :slight_smile:
What do you mean by "cannot find even one penguin in my ubuntu system" ?
Do you search some kind of icons ?

Welcome to the Ubuntu MATE community!

The penguin on GNU/Linux is usually called Tux.

On Ubuntu MATE there is a hp-tux-printer.png image on the /usr/share/hplip/data/images/other path -

hp-tux-printer

Also there is a tux_small.png image on the /usr/share/help/C/ubuntu-mate-guide/apps path -

tux_small

It may be found using MATE Search Tool with *tux* search pattern.

The real penguin is located at /usr/share/pixmaps/faces/legacy with filename penguin.jpg.

penguin

More technically we can find all Penguins and Tux'es with

eom $(dpkg -S penguin | awk '{print $2}' | grep -E "\.png$|\.svg$|\.jpg$|\.xpm$|\.gif$")
eom $(dpkg -S tux | awk '{print $2}' | grep -E "\.png$|\.svg$|\.jpg$|\.xpm$|\.gif$")

There are plenty of them:

penguintvicon

freetuxtv supertuxkart hp-tux-printer tuxpaint tux_small tuxmath tuxpuck tuxtype tuxcmd supertux

So penguins are in place :slight_smile: :ubuntu_mate:

6 Likes

I made this one for you :slight_smile:

4 Likes

oh people u just saved my soul
thank you very much
this

eom $(dpkg -S tux | awk '{print $2}' | grep -E "\.png$|\.svg$|\.jpg$|\.xpm$|\.gif$")

is just terrific and all this amazing job Olek 's done too
and also this living penguin from

eom $(dpkg -S penguin | awk '{print $2}' | grep -E "\.png$|\.svg$|\.jpg$|\.xpm$|\.gif$")

well i found only two penguins using terminal but i's really enough.
Thank u a lot.
I m just penguined

3 Likes

You can also copy one of this cute penguins from this link to a text file (let's say that you will save inside /opt/penguin) :

http://www.ascii-art.de/ascii/jkl/linux.txt

and add :
cat /opt/penguin

at the bottom of your .bashrc file :
nano ~/.bashrc

It will draw you this penguin each time you are opening a shell prompt :
image

3 Likes

OMG it's magic
thank you

1 Like