Thursday, March 31, 2016

Access efi partition on windows 10

Link.


open cmd as admindisk
diskpart
list disk
select disk 0 "target disk, normally is 0"
list partition
select partition 1 "EFI partition, default:1"
assign letter=b
exit
Task Manager - File - Run New Task - Browse...
Now you can access and change files in EFI partition.
Read more ...

Tuesday, March 22, 2016

Flash Plugin - Keep it up to date and troubleshoot problems

Link.

1. Download the  Flash Player (*.tar.gz)
2. Extract the libflashplayer.so and also the /usr files
3. Copy files to the corresponding location
$ sudo cp libflashplayer.so /usr/lib/mozilla/plugins
$ sudo cp -r usr/* /usr
Read more ...

Monday, March 21, 2016

Install Adobe Reader 9 in Debian (also chinese font)

Install Adobe Reader 9

1. Go to FTP download site on Adobe and download the version you wish to install.
2. Install architecture: i386
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libgtk2.0-0:i386 libxml2:i386 libstdc++6:i386
3. Install Adobe Reader which you downloaded
sudo dpkg -i AdbeRdr9*.deb
4. If the installation doesn’t fully complete, you might need to do
sudo apt-get -f install

Install Chinese Font

1. Download Font from here.
2. Unzip and install the font.
tar xvf FontPack910_chs_i486-linux.tar.bz2
cd CHTKIT
sudo ./INSTALL
Read more ...