2011年10月19日 星期三

transfer files to iphone 4 in Linux system

由於目前的桌機是安裝 Linux,但又想要傳檔案到 iphone上,
windows上是有 ifunbox可以用,很方便,但 Linux的使用者就是該死…

所以透過 ssh來達到此功能!

前提是已 JB情況下且電腦跟 iphone是同時連上 wifi:
1. 在 iphone上透過 cydia下載 openssh

2. 裝完 iphone重開機

3. Linux上要有 scp跟 ssh的功能,沒有的話安裝一下吧

4. scp XXX.ipa root@ip_address:/private/var/mobile/Documents/Installous/Downloads/
    (上述步驟是想把我下載的 .ipa檔傳到 installous的資料夾)
    iphone上的預設帳號/密碼為  root/alpine

5. 傳完後,到 iphone的 installous裡的 download就會發現剛剛傳的檔案,安裝吧!!!!!

2011年10月15日 星期六

boot and run Linux from a USB flash memory stick

先插上 USB, 假設裝置節點為 /dev/sda

方法一:
how to install ubuntu to a USB stick

  1. Download the Ubuntu 6.10 ISO and burn it to CD
  2. Restart your computer (booting from the Ubuntu Live CD)
  3. Insert a 1GB or larger USB flash drive
  4. Open a terminal window and type sudo su
  5. Now type fdisk -l to list available drives/partitions (note which device is your flash drive Example: /dev/sdb). Throughout this tutorial, replace all instances of x with your flash drive letter. For example, if your flash drive is sdb, replace x with b.
  6. Type umount /dev/sdx1
  7. Type fdisk /dev/sdx
    • type p to show the existing partition and d to delete it
    • type p again to show any remaining partitions (if partitions exist, repeat the previous step)
    • type n to make a new partition
    • type p for primary partition
      • type 1 to make this the first partition
      • hit enter to use the default 1st cylinder
      • type +750M to set the partition size
      • type a to make this partition active
      • type 1 to select partition 1
      • type t to change the partition filesystem
      • type 6 to select the fat16 file system
    • type n to make another new partition
    • type p for primary partition
      • type 2 to make this the second partition
      • hit enter to use the default cylinder
      • hit enter again to use the default last cylinder
      • type w to write the new partition table
  8. Type umount /dev/sdx1 to unmount the partition
  9. Type mkfs.vfat -F 16 -n usb /dev/sdx1 to format the first partition
    "Alternately you can try mkfs.vfat -F 32 -n usb /dev/sdx1 (doesn't always work)"
  10. Type umount /dev/sdx2 to ensure the partition is unmounted
  11. Type mkfs.ext2 -b 4096 -L casper-rw /dev/sdx2 to format the second partition
  12. Remove and Re-insert your flash drive
  13. Back at the terminal, type sudo apt-get install syslinux mtools
  14. Type syslinux -sf /dev/sdx1
  15. Restart your computer, remove the CD and boot back into Windows

方法二:
boot debian from an USB device
中文版


$ sudo umount /dev/sda
$ wget ftp://ftp.debian.org/debian/dists/stable/main/installer-i386/current/images/hd-media/boot.img.gz
$ sudo zcat boot.img.gz > /dev/sda
$ sudo mount /dev/sda /mnt

只要留下
vmlinuz (核心二進位檔案),
initrd.gz (初始化記憶體映像檔) ,
syslinux.cfg (SYSLINUX 設定檔案),

這三個就好,其它可以刪掉,
當然也可以換成自己的核心、檔案系統,
也可以修改一下 syslinux.cfg,加些開機所需參數等。

use buildroot to create your own root file system

這陣子,一直想做一個自己的 Linux distro,
最主要是想要練功,目前想到要有的功能有

1. Live USB
2. 小且快速
3. 硬體支援盡量好
4. 資料可以存下來

關於第一點,是想要帶著跑,身上只要有支 USB隨身碟,
插上電腦,馬上就可以使用。

第二點,目標想把整體大小壓在 100MB以內,且應用程式不用多,
現在想到要有的 AP有,file browser,web browser,x window,
及window mamager。

第三點,說穿了就是 kernel的選項看要怎麼選。

第四點,由於目前是做 Live USB,所有資料都是跑在記憶體中,
關機資料當然不見,因此這個功能想達成。



一個 Linux distro最基本架構對我來說有三層,

root file system
---------------------
       kernel
---------------------
    boot loader
---------------------
     hardware

最底下 hardware不說,就是 boot loader、kernel及 rootfs這三層,
應用程式或是一堆文件雜要雜八的都屬 rootfs這層。
所以我第一步要先來建立我的 rootfs!


以前用 LFS去從頭到尾建立一個完整的 distro,
雖然花了很多時間,但卻很值得,
因為可以學到很深,很廣,
但它實際做出來的大小其實不小…
幾百 MB吧,
不可否認,toolchain一定會有影響,
gllibc跟 uclibc編一樣的包,大小當然就不同,

自己曾經也有過瘋狂的 porting過,但太花時間跟精力了…
所以就用 buildroot來取代 LFS,
來做我一版 distro的 rootfs吧!!


buildroot可以想像它就是 LFS的自動化腳本,
當選了想要的東西後,打個 make,
就會產生出來,這裡記錄一下我怎麼選的,

$ git  clone git://git.buildroot.net/buildroot
$ cd  buildroot && make menuconfig

Toolchain  --->
  Toolchain type (Crosstool-NG toolchain)  --->
    (X) Crosstool-NG toolchain
  Crosstool-NG C library (glibc)  --->
    (X) glibc
  [*] Enable C++ support

System configuration  --->
  /dev management (Static using device table)  --->
    (X) Dynamic using udev

Package Selection for the target  --->
  Graphic libraries and applications (graphic/text)  --->
    [*] X.org X Window System, X11R7, release 7.5  --->
      X Window System server type (TinyX)  --->
        (X) Modular X.org
      X11R7 Applications  --->
        [*] setxkbmap
        [*] twm
        [*] xclock
        [*] xinit
        [*] xinput
        [*] xkbcomp
      X11R7 Drivers  --->
        [*] xf86-input-evdev
        [*] xf86-input-keyboard
        [*] xf86-input-mouse
        [*] xf86-video-cirrus
        [*] xf86-video-fbdev
        [*] xf86-video-vesa
    [*] Liberation (Free fonts)
    [*] xterm
  Hardware handling  --->
    [*] dbus
    [*]   enable all extras
    [*] usb_modeswitch
    [*] usbmount
  Libraries  --->
    Graphics  --->
      [*] libgtk2
      [*] gtk engines
      GTK Themes  --->
        [*] hicolor (default theme)
    Text and terminal handling  --->
      [*]   ncurses libpanel in target
      [*]   ncurses libform in target
      [*]   ncurses libmenu in target
  Networking applications  --->
    [*] wireless tools
    [*]   Install shared library
    [*] wpa_supplicant

Filesystem images  --->
  [*] cpio the root filesystem


$ make

這時就會開始 compile,需要一段時間…
這裡附上 config file

結束後,在 $ur_buildroot_location/output/images
會有已壓縮後 rootfs的 tar檔及 cpio檔,

而在 $ur_buildroot_location/output/target
是還沒壓縮後的。