Sunday, March 11, 2018

Equalizer di Amarok

1. Download package http://ftp.br.freesbie.org/mirror/biglinux/packages/karmic/main/phonon-backend-xine_4:4.3.4~svn1037991~karmic~ppa2_i386.deb

2. Instal Packege

3 Buat file preference

Package: phonon-backend-xine
Pin: version 4.3.1~svn1037991*
Pin-Priority: 1001

3. update

4. selesai

sumber
kubuntuforums

matlab MEX File

Tuesday, April 25, 2017

Joomla Installation Blank Page

php -m

list modules
No SimpleXML

sudo apt-get install php7.0-simplexml

php -m

Will show
SimpleXML

Restart apache2

Joomla should start

source

Tuesday, March 14, 2017

Ubuntu find Duplicated Files

Try this

find -name "*.pdf" -printf "%10s\t%p\n" | sort --numeric | uniq --repeated --check-chars=10

or
Search similar filesize:

find -name "*" -printf "%sc %p\n" | sort --numeric | uniq --repeated --check-chars=10 | cut -d' ' -f1 | grep -v '0c' >a; for i in `cat a`; do echo $i; find -size $i; echo; done

to ignore the file type

for i in `cat a| uniq| sort -nr`; do echo $i; find -size $i | xargs -I{} echo \"{}\"| xargs md5sum 2>/dev/null; done

below code is the wrap up

find -name "*" -printf "%sc %p\n" |sort --numeric | uniq --repeated --check-chars=10 | cut -d' ' -f1 | grep -v '0c'> a
rm b.txt
for i in `cat a| uniq| sort -nr`; do echo $i; find -size $i| xargs -I{} echo \"{}\"| xargs md5sum >>b.txt 2>/dev/null; done
cat b.txt |sort --numeric | uniq --repeated --check-chars=10 > c.txt
cat c.txt | cut -d'*' -f1 >d
rm e
for i in `cat d`; do grep $i b.txt >> e;done


Thursday, March 2, 2017

Ubuntu Install boot-repair

sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair && boot-repair


source

Ubuntu Cannot Enable WiFi

sudo modprobe -r acer_wmi

Source:
askubuntu.com 

Thursday, February 23, 2017

Update grub on a dual boot machine

sudo nano /etc/default/grub 
 
sudo update-grub
 
 
 
 
source