跳至內容區

SZ Lin with Cybersecurity & Embedded Linux

"If you do what you love, you'll never work a day in your life."

  • About SZ Lin

作者: szlin

SZ Lin's research interests include embedded Linux, cybersecurity, and open source projects. As a Debian developer, he works on various open source projects and involves himself in open source communities. He holds a master's degree in computer networking from National Chiao Tung University, Taiwan. Some of the certifications/certificates he holds include GICSP, CISSP-ISSAP, CSSLP, CISM, and ISA/IEC 62443 Cybersecurity Expert.
Debian · Linux

usrmerge in Debian

2017 年 12 月 28 日 szlin1 則迴響

The Filesystem Hierarchy Standard (FHS)  [1] 定義了 Linux … 繼續閱讀 usrmerge in Debian

Linux · Linux kernel · Security

Stack buffer overflow protection 學習筆記 – Stack canaries mechanism in User space

2017 年 12 月 09 日 szlin發表留言

緩衝區溢位 (Stack buffer overflow) 是傳統且常見的資訊安全攻擊手法. 主要透過程式漏洞… 繼續閱讀 Stack buffer overflow protection 學習筆記 – Stack canaries mechanism in User space

Linux kernel

Porting Linux Kernel – 將新版 Linux Kernel 移植到全新平台上

2017 年 11 月 27 日 szlin發表留言

在之前的文章有提到,  移植 Linux kernel 的情況依困難程度從難到易列出為下列四種. 而前一篇已經… 繼續閱讀 Porting Linux Kernel – 將新版 Linux Kernel 移植到全新平台上

Linux kernel

Porting Linux Kernel – 將新版 Linux Kernel 移植到舊有平台上進行 Kernel 版本升級

2017 年 10 月 31 日 szlin發表留言

在之前的文章有提到,  移植 Linux kernel 的情況依困難程度從難到易列出為下列四種 1. 將 Li… 繼續閱讀 Porting Linux Kernel – 將新版 Linux Kernel 移植到舊有平台上進行 Kernel 版本升級

Linux kernel

printk, pr_* and dev_* 使用時機

2017 年 09 月 13 日 szlin發表留言

學習撰寫 linux driver 往往使用 printk 當作第一個範例 printk(KERN_INFO … 繼續閱讀 printk, pr_* and dev_* 使用時機

Linux kernel · Security

seccomp 學習筆記

2017 年 08 月 23 日 szlin1 則迴響

近年來由於 IoT 風潮帶來萬物皆連網, 但隨之而來的就是 “萬物皆可攻擊" 的安全議題 下圖 [… 繼續閱讀 seccomp 學習筆記

Debian

Debian 9 (stretch) 正式釋出

2017 年 07 月 19 日 szlin發表留言

Debian 9 (代號 stretch) 在 2017-06-17 正式釋出 [1], 跟 Debian 8… 繼續閱讀 Debian 9 (stretch) 正式釋出

Debian · Linux misc

Debian 9 更改網路介面預設命名方式

2017 年 07 月 19 日 szlin1 則迴響

Debian 9 開始, 網路介面命名方式開始有所差異. 以往有線網路介面使用 eth0, eth1 等等的命… 繼續閱讀 Debian 9 更改網路介面預設命名方式

Debian · Linux · Linux kernel

Open Source Summit Japan 2017 – Building, Deploying and Testing an Industrial Linux Platform

2017 年 06 月 01 日2017 年 06 月 01 日 szlin發表留言

今年很榮幸能在 Linux conference Japan 2017 分享. 也是會場中唯一上台的臺灣公司 … 繼續閱讀 Open Source Summit Japan 2017 – Building, Deploying and Testing an Industrial Linux Platform

Linux kernel · Linux utilities

以 Linux kernel 效能工具 – perf 來分析探討硬體加密之瓶頸

2017 年 05 月 28 日2017 年 05 月 28 日 szlin5 則迴響

在 前篇文章 有提到 Linux Kernel 密碼學演算法實作流程. 由此得知若由硬體輔助進行密碼學演算法運… 繼續閱讀 以 Linux kernel 效能工具 – perf 來分析探討硬體加密之瓶頸

Linux kernel

移植 Linux Kernel 造成無法開機之解決方案以及除錯工具

2017 年 05 月 17 日2017 年 05 月 17 日 szlin2 則迴響

一般在以下情況, 我們會進行移植 Linux Kernel 的動作. 1. 將新版 Linux Kernel … 繼續閱讀 移植 Linux Kernel 造成無法開機之解決方案以及除錯工具

Debian · Linux · Linux kernel · Linux utilities

Linux Kernel 密碼學演算法實作流程

2017 年 04 月 05 日2017 年 04 月 05 日 szlin1 則迴響

介紹Linux Kernel 密碼學演算法實作流程, 透過深入瞭解 Linux 密碼學演算法實作流程, 可以根據系統的規格, 週邊裝置以及應用程式需求來找到適合的方法.

週邊元件

NAND Flash technology – SLC, MLC, TLC and “pSLC"

2017 年 03 月 22 日2017 年 03 月 24 日 szlin發表留言

從事嵌入式相關的開發人員應該常會接觸到 NAND flash 相關的儲存裝置. 關於 NAND flash 有… 繼續閱讀 NAND Flash technology – SLC, MLC, TLC and “pSLC"

Debian

使用 git-dpm 來管理 Debian package中的 patch – 更新/升級 Debian 套件

2017 年 03 月 20 日2017 年 03 月 20 日 szlin發表留言

前一篇文章介紹了如何透過 git-dpm 來新增 Debian 套件. 這一篇文章則是介紹如何在已存在的 De… 繼續閱讀 使用 git-dpm 來管理 Debian package中的 patch – 更新/升級 Debian 套件

Linux kernel

Linux Kernel delay/ sleep 延遲函式學習筆記

2017 年 03 月 13 日2017 年 03 月 13 日 szlin發表留言

在寫 Linux driver 時, 有時候會需要延遲幾秒再往下執行. 由其是處理 device driver… 繼續閱讀 Linux Kernel delay/ sleep 延遲函式學習筆記

硬體開發板 · Debian · Linux

Embedded Linux/ Debian with ARM64 Platform

2017 年 02 月 22 日 szlin發表留言

前陣子應 CAT system 之邀, 前往分享 porting Linux/ Debian 到 ARM64 … 繼續閱讀 Embedded Linux/ Debian with ARM64 Platform

其他

使用 GMAIL 提供的 SMTP server 來發送信件

2017 年 02 月 22 日2017 年 02 月 22 日 szlin7 則迴響

個人一直以來都只想寫技術相關的文章, 但這個問題卡了我好幾天才解掉. 而這問題照理來說對其他人也會是很大的困擾… 繼續閱讀 使用 GMAIL 提供的 SMTP server 來發送信件

週邊元件

初探 NVDIMM, A Non-Volatile Dual In-line Memory Module

2017 年 01 月 27 日2017 年 01 月 27 日 szlin發表留言

每個技術或者標準之所以產生, 主要都是為了解決某些已知的問題. 首先先看下圖, 為儲存設備的分類表 [1] &… 繼續閱讀 初探 NVDIMM, A Non-Volatile Dual In-line Memory Module

週邊元件

初探 TPM 2.0

2017 年 01 月 07 日2017 年 01 月 07 日 szlin發表留言

TPM (Trusted Platform Module) [1] – 可信任安全平台模組, 主要… 繼續閱讀 初探 TPM 2.0

Debian · Linux

在 dash 上面同時 redirect stdout/ stderr 的三兩事

2017 年 01 月 05 日2017 年 01 月 06 日 szlin發表留言

shell script 是我們在解決一些工作不可或缺的利器. 而在 Debian/ Ubuntu 的環境下,… 繼續閱讀 在 dash 上面同時 redirect stdout/ stderr 的三兩事

文章分頁

較舊的文章
較新的文章

翻譯

部落格統計

  • 263,903 hits

近期分享

  • Certified Information Security Auditor(CISA) 國際資訊安全稽核員認證應試心得
  • Debian 11 (bullseye) 正式釋出
  • Global Industrial Cyber Security Professional (GICSP) 全球工業網路安全專家認證
Follow SZ Lin with Cybersecurity & Embedded Linux on WordPress.com

熱門分享文章︰

  • CISSP 自修考照心得分享 – Certified Information Systems Security Professional Self-Study 資訊系統安全專家認證
  • Linux Kernel delay/ sleep 延遲函式學習筆記
  • 使用 GMAIL 提供的 SMTP server 來發送信件

主題分類

  • 硬體開發板
  • Debian
  • 週邊元件
  • Linux
    • Linux misc
    • Linux utilities
  • Linux kernel
  • Open Source License
  • Security
  • SoC
  • 其他

文章存檔

其它

  • 註冊
  • 登入
  • 訂閱網站內容的資訊提供
  • 訂閱留言的資訊提供
  • WordPress.com
在WordPress.com寫網誌. 佈景主題:Button,發表者:Automattic。
  • 追蹤 已追蹤
    • SZ Lin with Cybersecurity & Embedded Linux
    • 已經有 WordPress.com 帳號了?立即登入。
    • SZ Lin with Cybersecurity & Embedded Linux
    • 自訂
    • 追蹤 已追蹤
    • 註冊
    • 登入
    • 回報此內容
    • 在讀取器中檢視網站
    • 管理訂閱
    • 收合此列
 

載入迴響中...