advertisement

2016年4月8日

RPM 、DPKG 和 APT Package Manager 指令對照表

Ref:
https://help.ubuntu.com/community/SwitchingToUbuntu/FromLinux/RedHatEnterpriseLinuxAndFedora
http://packman.linux.is/

下載 package source code


Step 1. 確認sources.list檔案是否有deb-src
$ cat /etc/apt/sources.list|grep deb-src
deb-src http://opensource.nchc.org.tw/debian/ jessie main
deb-src http://security.debian.org/ jessie/updates main
deb-src http://opensource.nchc.org.tw/debian/ jessie-updates main

Step 2. 下載 package source code
$ apt-get source libc6
# ls -l
total 13136
drwxr-xr-x 73 root root 4096 Apr 8 05:50 glibc-2.19
-rw-r--r-- 1 root root 1043764 Feb 28 10:24 glibc_2.19-18+deb8u4.debian.tar.xz
-rw-r--r-- 1 root root 8238 Feb 28 10:24 glibc_2.19-18+deb8u4.dsc
-rw-r--r-- 1 root root 12387008 Jun 18 2014 glibc_2.19.orig.tar.xz

Ref:https://www.debian.org/doc/manuals/apt-howto/ch-sourcehandling.en.html

Qt-Android Project Adding external library

Ref:
http://stackoverflow.com/questions/32018316/adding-external-library-into-qt-android-project
http://forum.qt.io/topic/29027/qt-creator-android-and-external-libraries/3
http://doc.qt.io/qt-5/deployment-android.html
http://doc.qt.io/qtcreator/creator-deploying-android.html

2016年4月6日

Raspberry Pi 3 環境建置流程


why?因應公司要求
what?寫RPi3環境建置教學文件給公司
how?如下

Raspbian預設登入帳密
帳號:pi
密碼:raspberry
事前準備:
1.          Raspberry Pi 3
2.          USB充電器(Output 建議2A)
3.          USB2.0 to microUSB cable
4.          4GB micro SD card
5.          micro SD card讀卡機
6.          HDMIVGA(option)

2016年3月15日

Raspberry Pi 3 Wifi 測試

Pi 3 拿到就等不急要拿來玩拉~~

Plantform:Raspberry Pi 3
O.S.:RASPBIAN JESSIE LITE

# iwconfig
# iwlist wlan0 scan |grep ESSID
# wpa_passphrase ESSID PASSWORD >> /etc/wpa_supplicant/wpa_supplicant.conf
# /sbin/shutdown -r now


2016年2月19日

QEMU Installation

QEMU Installation

Step1.檢查是否支援硬體虛擬化

$ grep "vmx" /proc/cpuinfo
如果有輸出表示處理器型態為Intel VT
$ grep "SVM" /proc/cpuinfo
如果有輸出表示處理器型態為AMD-V


如果都沒有輸出表示不支援硬體虛擬化

Step2.檢查Linux kernel KSM是否有開啟

$ grep KSM /boot/config-`uname -r`
CONFIG_KSM=y


沒有請重編Linux kernel

Linux 無線網路設定 安裝

若沒有iwconfig和iwlist指令時,安裝wireless-tools套件
root@tina:~# apt-get install wireless-tools

觀看是否有偵測到無線網路介面
root@tina:~# iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

由上列結果發現沒有無線網路介面,可能沒有載入驅動模組或沒有安裝驅動程式,我們觀看電腦硬體資訊

linux suspend

# apt-get install pm-utils
正在讀取套件清單... 完成
正在重建相依關係         
正在讀取狀態資料... 完成
下列的額外套件將被安裝:
  ethtool hdparm libx86-1 powermgmt-base vbetool
建議套件:
  apmd cpufrequtils radeontool
下列【新】套件將會被安裝:
  ethtool hdparm libx86-1 pm-utils powermgmt-base vbetool
升級 0 個,新安裝 6 個,移除 0 個,有 0 個未被升級。
需要下載 432 kB 的套件檔。
此操作完成之後,會多佔用 1,157 kB 的磁碟空間。
Do you want to continue? [Y/n]

在Linux平台撰寫、除錯與燒入8051程式


IDE:MCU 8051 IDE 載點

平台:Linux Debian jessie

下載IDE

我電腦是Debian 8所以下載mcu8051ide-1.4.10-all.deb,很特別的是Linux是free的,而Windows要錢^_^

安裝IDE
# cd /下載目錄位置
# dpkg -i mcu8051ide-1.4.10-all.deb

2016年2月18日

DS-5 Streamline on Linux Debian Jessie

下載DS-5 Streamline
http://ds.arm.com/downloads/
# mkdir /usr/local/DS500-Strealine
# cd /home/clementyan/下載/
# mv DS500-BN-00019-r5p0-21rel1.tgz /usr/local/DS500-Strealine
# cd /usr/local/DS500-Strealine
# tar xfva DS500-BN-00019-r5p0-21rel1.tgz

2015年12月9日

Debian 簡易使用 ftp


Server 端:
Setp 1. 安裝 ssh server
# apt-get install openssh-server
Step 2. 確認ssh port 是否有打開
# netstat -tlnp | grep ssh
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      763/sshd      
tcp6       0      0 :::22                   :::*                    LISTEN      763/sshd


ref:https://wiki.debian.org/SSH

Client 端:
Step 1. 下載 Client FileZilla
Step 2. 開啟並輸入主機 帳號 密碼 連接阜


2015年11月15日

Windows powershell 安裝或更新



Windows PowerShell 4.0 is part of the Windows Management Framework 4.0, which includes the following:
  • Windows PowerShell
  • Windows PowerShell Integrated Scripting Environment (ISE)
  • Windows PowerShell Web Services (Management OData IIS Extension)
  • Windows Remote Management (WinRM)
  • Windows Management Infrastructure (WMI)
  • Server Manager WMI provider
  • Windows PowerShell Desired State Configuration (DSC)
windows 7 要安裝要求Windows PowerShell 4.0 需要windows 7SP1 up和 .NET 4.5

Reference:http://social.technet.microsoft.com/wiki/contents/articles/21016.how-to-install-windows-powershell-4-0.aspx


2015年10月6日

Visual Studio C# 安裝 OpenCV

Software & Library Vision
- Visual Studio:2013 C#
- OpenCV:2.4.10

目的:在 Visual Studio 2013 使用 OpenCV ,這邊我使用 EmguCV,他已經幫你把 OpenCV 函式庫包進去,讓你可以在 .NET framework下呼叫 OpenCV 函式。

Step 1. 確認已裝好你的 Visual Studio 2013

Step 2. 下載 EmguCV並安裝

請確認你所要使用的OpenCV版本,並下載正確版本。
載點

下載完後安裝,這邊就省略安裝過程。