#Tutorial en español sobre como #buscar paquetes deb en #Debian #Linux, #Ubuntu o #Mint en una consola o via web. Para ti que administras o quieres saber mas...


#dc comics#dc#batman#bruce wayne#dick grayson#tim drake#dc fanart#batfamily#batfam

seen from Malaysia

seen from France
seen from Hong Kong SAR China
seen from United States

seen from Austria
seen from Germany

seen from Egypt
seen from United States

seen from Germany

seen from Denmark
seen from Yemen
seen from United States
seen from Norway

seen from United States
seen from China
seen from China

seen from Austria
seen from United States

seen from United States
seen from United Kingdom
#Tutorial en español sobre como #buscar paquetes deb en #Debian #Linux, #Ubuntu o #Mint en una consola o via web. Para ti que administras o quieres saber mas...
super useful 'apt-file' search utility
Yo guys, suppose you are running a perl code from someone, and get a error while execution like :
Can’t locate Parallel/ForkManager.pm in @INC (@INC contains: blah blah)
It means you are missing ForkManager.pm (ofcourse), but how to install it, which library corresponds to it???
To find the right package, use ‘apt-file’ utility but install it first as:
sudo apt-get update sudo apt-get install apt-file sudo apt-file update
Now search the module
sudo apt-file search ForkManager.pm
which gives
libproc-processtable-perl: /usr/lib/perl5/Proc/ProcessTable.pm
so , just install the library then
sudo apt-get install libproc-processtable-perl
Thats it, go and have fun. Cheers