Posts

DISKPART (Windows)

Credit :  http://raspberrypi.stackexchange.com/questions/1446/how-can-i-reformat-my-sd-card-to-use-it-normally-again  Start a command prompt, and start the DISKPART console. List all of your disks by typing  LIST DISK , then select the proper disk with   SELECT DISK #   (where # is obviously the SD card). You can then type   CLEAN   (MAKE SURE YOU SELECTED THE PROPER DISK!), and it will clear the partition table on the card. To create a primary partition to reuse the space on the card, type  CREATE PARTITION PRIMARY . This will then reallocate the previously "cleaned" space. To format, type  FORMAT FS=FAT32 QUICK , and finally, to reassign a drive letter, type  ASSIGN . If you're unable to determine the proper disk, remove the SD card, run  DISKPART  and  LIST DISK , and then re-run it with the SD card inserted. The SD card is just the disk that has been added.

Remove the Pi partitions from an SD card using the Windows 7

Credit: http://brucesbraindump.blogspot.com/2013/04/removing-raspberry-pi-partitions-from.html C:\temp>diskpart Microsoft DiskPart version 6.1.7601 Copyright (C) 1999-2008 Microsoft Corporation. On computer: PC014033 DISKPART> list disk   Disk ###  Status         Size     Free     Dyn  Gpt   --------  -------------  -------  -------  ---  ---   Disk 0    Online          167 GB      0 B   Disk 1    Online         7460 MB  5802 MB MAKE SURE YOU SELECT THE CORRECT DISK OR YOU WILL WIPE THE WRONG ONE !!! DISKPART> select disk 1 Disk 1 is now the selected disk. DISKPART> list part   Partition ###  Type              Size     Offset   -------------  ----------------  -------  -------   Partition 1   ...

กลับไปใช้ ROM เดิมๆ ของ Atrix 4G

Credit :  http://www.atrixforums.com/forum/orange-uk/3120-how-revert-atrix-back-stock-rom.html ROM Files :  http://sbf.droid-developers.org/phone.php?device=33 How to revert Atrix back to Stock ROM Hi Guys and girls, I have put together this guide to help anyone who decides to install a custom ROM (Like i did), but dislikes it or finds issues and wants to revert the phone back to stock again. I recently installed 'Gingerblur' and had issues with: GPS dropping signal frequently Security functions not working at all Dialpad not responding when used during a call Refused to set date to UK format (DD/MM/YY) Work and play dock not displaying screens as it should Tricked phone into thinking it was a AT&T handset (My handset is on Orange UK) And a few other niggles. Please note, I am not saying that everyone will experience all or any of these faults, but I had them and it ruined the enjoyment of the phone. Ok, so here is a list of what you will need: Up ...

Santafe steak อร่อย

Image
หิวๆๆ อยากกินของหรูๆ ฝรั่งๆ แต่อยู่ในงบพอดีๆ แวะร้านนี้อาจจะโดนใจนะครับ

มุมชีวิตที่ไม่เปลี่ยนแปลง

อยากกลับบ้าน  เป็นคำพูดทุกครั้งที่เรามักจะมีอารมณ์เข้ามาเกี่ยว ไม่ว่าจะดีใจ เสียใจ บ้าน ทุกชีวิตที่บ้านไม่เคยเปลี่ยน พวกท่านได้เหมือนถูกหยุดเวลาสังคมโลกไว้ ไม่ว่าเราจะออกไปเผชิญโลก โต้กับคลื่นสังคมขนาดไหน มีหัวโขน มีอัตตา กลับบ้าน เรายังเป็นลูก บ้านไม่เปลี่ยน หากมุมๆ หนึ่งของบ้าน เป็นมุมที่ถูกละเลย บ้านยังไงก็ยังอบอุ่น หากเป็นสังคมแม้อยู่รวมกัน ก็ยังอ้างว้าง....

installing VSFTPD (FTP) on the Raspberry Pi

sudo apt-get install vsftpd Press Enter Press Y when prompted Type nano /etc/vsftpd.conf Press Enter. Edit or uncomment the following lines to secure VSFTPD Anonymous_enable=NO Local_enable=YES Write_enable=YES Ascii_upload_enable=YES Ascii_download_enable=YES Press CTRL + O To save Press CTRL + X To exit Type: /etc/init.d/vsftpd restart You are done

ติดตั้งและใช้งาน Airplay [AirPi – AirPlay audio with Raspberry PI]

Upgrade Debian At this step, it’s a good idea to upgrade pre-installed packages : # aptitude update # aptitude upgrade Change audio output To force audio output to stereo jack, a single line is required : # amixer cset numid=3 1 0 -> HDMI 1-> Stereo Jack Install shairport Before download and compile shairport, we need to install prerequisites : # aptitude install git libao-dev libssl-dev libcrypt-openssl-rsa-perl libio-socket-inet6-perl libwww-perl avahi-utils Then download shairport sources and compile it : # git clone https://github.com/albertz/shairport.git shairport # cd shairport # make Finally, launch shairport foreground : # ./shairport.pl -a AirPi You can now use your iDevice to try AirPlay audio, don’t forget to plug an headphone or speakers into the 3.5mm stereo jack. If you want or need your Pi load automatically shairport, follow next procedure : root@raspberrypi:~/shairport# make install root@raspberrypi:~/shairport# cp shairport.init.sam...