Tag Archives: Linux

Mount NTFS manually on Ubuntu Linux Server

First, list all the ntfs drives you have: “fdisk -l | grep NTFS”, example output: /dev/sda1 * 2048 206847 102400 7 HPFS/NTFS/exFAT /dev/sda2 206848 409599999 204696576 7 HPFS/NTFS/exFAT /dev/sda3 409600000 976957421 283678711 7 HPFS/NTFS/exFA Second, create a folder to mount … Continue reading

Posted in Linux | Tagged , , , , , , , , , | Leave a comment

Alternative way to find files with specific extension in a folder on Linux

If you don’t like the “find” command, you can use the following one instead (I prefer it myself): ls -R | grep “\.xml” where “-R” lists all recursively grep is used to filter filename “\.xml” you must put the “\” … Continue reading

Posted in Linux | Tagged , , , , | Leave a comment

How to mount CD on Linux

mount -t iso9660 -o ro /dev/cdrom /mount_point

Posted in Uncategorized | Tagged , , | Leave a comment

How to install #LibreOffice properly on #LinuxMint v12

You have to do “sudo apt-get install libreoffice libreoffice-gnome” The trick here is the libreoffice-gnome, which will integrate properly with Gnome (since LibreOffice windows weren’t showing up in the botton bar) and enhance the GUI significantly. Enjoy!

Posted in Mint | Tagged , , | Leave a comment

How to fix blank pages in PDF printer in Linux Mint 12

PDF printer comes by detault in linux mint, and when I tried it, it produced blank pages with no content whatsoever. What I did to fix this is that: I opened my printers list deleted the existing PDF printer then … Continue reading

Posted in Mint | Tagged , , , , | 3 Comments