檔案相關指令

檔案名, 編碼

unionfs 與 aufs

更新日期: 2020-07-28

介紹

unionfs 與 aufs  為的都是要把多個目錄"虛擬"成一個目錄(overlays)

這有兩個好處

  1. 方便管理檔案(相關的檔案分佈於不同的地方, 如 sda1, sdb1)
  2. 想修改 readonly 的地方(如 squashfs)

而且我們可以指定某些目錄(Branch) 是 Readonly 的, 而把修改過的檔案放到另一個目錄

 

btrfs - 最強的 FileSystem

最後更新: 2023-03-10

 

目錄

  • 注意事項
  • 新式指令
  • Scrub
  • Kernel threads
  • Recovery
  • Build btrfs-progs
  • extref(extended inode refs)
  • More about btrfs
  • 建立多 Device 的 btrfs (mkfs.btrfs)
  • RAID1 Usage
  • Conversion (single -> raid1)
  • Replacing failed devices
  • Play btrfs with image file
  • btrfs-send / btrfs-receive
  • GlobalReserve
  • XOR module
  • 常遇到的應用
  • Data Integrity Test

 

介紹

btrfs 是一個多才多藝的 FileSystem 來, 它核心架構是 CoW, 支援以下功能:

  • Extent based file storage (2^64 max file size = 16EiB)
  • Dynamic inode allocation
  • Writable snapshots
  • Subvolumes (internal filesystem roots)
  • Subvolume-aware quota support
  • Object level mirroring and striping
  • Compression (ZLIB, LZO)
  • Online filesystem defragmentation
  • Integrated multiple device support (RAID0, RAID1, RAID10, RAID5 )
  • Checksums on metadata and data (crc32c, xxhash, sha256, blake2b)
  • Space-efficient packing of small files
  • Space-efficient indexed directories
  • Seed devices
    (Create a readonly filesystem that acts as a template to seed other Btrfs filesystems)
  • Background scrub process for finding and fixing errors on files with redundant copies
  • Efficient incremental backup(btrfs send)

所以說, 唔用就走寶 ~

不過, 使用前一定要少心, 因為在 Linux2.6 上它仍未有 fsck !! (Linux 3.2 上的 btrfsck 仍未用得..)

此外, 如果 CPU 支援 hardware 的 CRC32 那效能會更好
(grep -i SSE4.2 /proc/cpuinfo)

Version

每 version 的改善: btrfs_version

 

RecuseCD 功能一覽

RecuseCD 是我最心愛的工具碟來, 它集所有必殺 Linux 工具於一碟, 能力驚人 !!

 


 

memtester

memtester <MEMORY> [ITERATIONS]

MEMORY: megabytes
ITERATIONS: infinite

root  privileges  to  mlock
It will then attempt to mlock this memory
decrease the amount of memory requested until it succeeds.

檔案名從 big5 到 utf8 convmv

最後更新: 2017-03-06

緣起

UTF-8 相信必然是大世所趨, 一向用開 big5 的我都要升級上去了.

不過, 我系統有許多中文名稱的檔案, 所以我遲遲都不轉用 UTF-8 = , ="

因為當系統轉到用 UTF-8 後, 所有原本正常顯示的檔名全都亂碼了 ....

這是因為以前的系統是以 big5 碼來 encode 檔案名, 之後存放在 Harddisk 裡

當讀取出來時, 系統會以 big5 碼解讀出來. 所以當然正常啦.

不過現在情況不同了 !!

|檔案名(big5)|------->|UTF-8 解讀 |-------->|亂碼|

相信很容易理解, 顯示亂碼係必然的 ....

所以, 現在唯有把全部檔名都轉成 UTF-8, 這樣才可解決此問題.

 

 

RSS feed