7/24/2012

Default printer troubles with Thunderbird

ตั้ง Printer ให้โปรแกรม Thunderbird แล้วไม่จำค่า Printer Default ที่เราตั้งไว้

If you can't print from Thunderbird, or if Thunderbird won't recognize the computer's default printer:

1. In Thunderbird, go to Tools - Options.
2. Under Advanced, on the General tab, click on the Config Editor button.
3. Scroll down to the line starting with print.print_printer. If you don't have that line, then everything should already be set correctly.
4. Right-click on the print.print_printer line & choose Reset.
5. Close the configuration window, then click OK to close the Options window.
6. Close Thunderbird.
7. Make sure that the correct default printer is selected. To do so, go to Start - Settings - Printers and Faxes. The one with the small checkmark is the default. To set a different printer as the default, right-click on it & choose Set as Default Printer.
8. Reopen Thunderbird.


ที่มา
http://arstechnica.com/civis/viewtopic.php?f=11&t=224248

7/10/2012

Linux Mint 13 Maya : sources.list

Although I posted linux mint ‘sources.list’ for my own reference, it is 
the most viewed content on this site. So I will continue to post the 
‘sources.list’. The upcoming Linux Mint 13 Maya ‘sources.list’ will 
probably look the following.
 
sudo nano /etc/apt/sources.list
 
deb http://packages.linuxmint.com/ maya main upstream import
deb http://archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse
deb http://archive.canonical.com/ubuntu/ precise partner
deb http://packages.medibuntu.org/ precise free non-free

# deb http://archive.getdeb.net/ubuntu precise-getdeb apps
# deb http://archive.getdeb.net/ubuntu precise-getdeb games

Linux :Mount partition on startup.

สามารถ Mount Partition ที่เป็น NTFS ตอน boot หรือ Partition ext3, ext4 อื่น ๆ ได้โดย
1.ใช้ ntfs-3g (ถ้ายังไม่มีก็ติดตั้งได้เลยด้วย apt-get)
2.แก้ไข /etc/fstab ป้อนข้อมูลลักษณะดังตัวอย่าง


  1. # <file system>   <dir>     <type>    <options>             <dump>  <pass>
  2. /dev/<NTFS-part>  /mnt/windows  ntfs-3g   defaults        0       0
2.1 (ต้องสร้าง Directory /home/name/DATA ได้ก่อน) หรือที่อื่น ๆก็ได้
2.2 ใช้ UUID เผื่อกรณีที่มีการสลับ Hard disk แล้วลำดับเปลี่ยน (ใช้คำสั่ง blkid เรียกดู)
2.3 ใช้คำสั่ง sudo nano /etc/fstab  เพื่อเพิ่ม Partition ที่จะให้ StartUp

เพิ่ม Partition ที่เรารู้ UUID แล้วเข้าไป เช่น

# Auto Mount Drive Data
UUID=3be91762-2823-4bf5-86ac-5f12ba53220c /home/suwit/DATA     ext4    defaults  0       0

 
หรือ Ntfs ก็เปลี่ยน Type เป็น
  ntfs-3g defaults        0       0    เป็นต้น

เท่านี้เวลาเปิดเครื่อง Partition ก็จะถูกเปิดขึ้นมา Auto แล้วครับ