after install it i would like install software onto a SD card.
After read some old post but i dont understand what is swap?
how to format and swap?
window can use what software read/write ext2 format SD card? if not how can I copy software into card for install?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=116247\"][{POST_SNAPBACK}][/a][/div]
filesystems:
windows basically can only use FAT and NTFS filesystems, if you want to have a filesystem which is accessible from windows AND linux, take FAT (-> mkdosfs)
swap:
i suggest to buy a good book and start reading about swap files and swap partitions there, you can also start googling for mkswap etc.
since you've got a C1000 permanent swap is probably not a good idea since you don't have a hard drive and there is only a limited number of write cycles on flash memory - if you still want to have a swap file or partition - put it on the CARD!
installing software on sd:
typically software needs symbolic links which are not supported by all filesystems, many people choose ext2/3 file systems (-> mke2fs)
if you want to install ipkgs there you have to edit the ipkg-config file (i *THINK* it is "ipkg.conf" in /etc or something similar) - take a look at it and you know what to do. when installing use the -d option e.g. ipkg -d /mnt/card install blabla.ipk
if you want to have FAT and ext partitions on SD at the same time - first read about partitioning in general, then it's a bit tricky to get it auto-mounted