搜尋此網誌

2014年10月9日 星期四

設定 CentOS 的 TimeZone 與 Date 時間

設定 CentOS 的 TimeZone 與 Date 時間 

調整 CentOS 的 Time Zone
$ cp /usr/share/zoneinfo/Asia/Taipei /etc/localtime

修改以下檔案變更Timezone
$ vim /etc/sysconfig/clock
ZONE="Asia/Taipei"

# MMDDhhmmYYYY 月日時分年
$ date 101322202010

# 查看 BIOS 時間
$ hwclock -r

# 將系統時間寫入到 BIOS 時間
$ hwclock -w

2014年10月5日 星期日

Debian 網路IP參數設定

修改 /etc/network/interfaces 參數設定

如果是要 Static IP (動態 IP)寫以下:
auto eth0
iface eth0 inet dhcp



如果是要 Static IP (固定/靜態 IP)寫以下:
auto eth0
iface eth0 inet static
    address 192.168.0.7
    netmask 255.255.255.0
    gateway 192.168.0.254



如果是要 PPPoE 寫以下:
auto dsl-provider
iface dsl-provider inet ppp
pre-up /sbin/ifconfig eth0 up # line maintained by pppoeconf
provider dsl-provider

auto eth0
iface eth0 inet manual


Banana Pi - Lubuntu OS - 擴展 root 分割磁區大小

先確認看看目前的硬碟分割狀態
$ df -h

使用 fdisk 指令列出硬碟的分割狀態等資訊
$ sudo fdisk -l

開始分割硬碟
$ sudo fdisk /dev/mmcblk0

然後依序畫面提示,陸續輸入
d  2  n  p  2  enter  enter

輸入 p 觀看硬碟分割磁區的狀態
輸入 wq 儲存磁碟分割並離開

重新開機
$ sudo reboot

使用 resize2fs 來調整分割磁區大小
$ sudo resize2fs /dev/mmcblk0p2

重新輸入 df -h 來查驗
$ df -h

最後也可以在 GUI 底下
執行 偏好設定 / Disks 程式 檢查結果

完成。

2014年9月26日 星期五

Google Gmail 的 IMAP, SMTP, POP3 設定值

Google Gmail 的 IMAP, SMTP, POP3 設定值:


IMAP
imap.gmail.com
Port: 993
Use SSL: Yes


SMTP
smtp.gmail.com
Port for TLS/STARTTLS: 587
Port for SSL: 465
Use SSL: Yes


POP3
pop.gmail.com
Port: 995
Use SSL: Yes

2014年9月1日 星期一

about Banana PI website

There are a team of Linux enthusiasts with decades of experience in embedded software and passion for open source software. 
http://www.bananapi.org/


2013年8月7日 星期三

遇到 [Accessibility] Missing contentDescription attribute on image 警告的處理方式

記得加入 
android:contentDescription="@string/desc"



2013年8月6日 星期二

搜尋此網誌