0% found this document useful (0 votes)
671 views

Elastix Raspberry Pi Instructions

This document provides instructions for installing Micro Elastix on a Raspberry Pi, which involves: 1. Partitioning an SD card with at least 4GB of storage into a FAT partition for boot files and an EXT3 partition for system files. 2. Formatting the partitions as FAT and EXT3 and mounting them. 3. Extracting boot and system files from compressed tarballs into the mounted partitions. 4. Unmounting the partitions and inserting the SD card into the Raspberry Pi to complete the installation.

Uploaded by

ovidiutache
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
671 views

Elastix Raspberry Pi Instructions

This document provides instructions for installing Micro Elastix on a Raspberry Pi, which involves: 1. Partitioning an SD card with at least 4GB of storage into a FAT partition for boot files and an EXT3 partition for system files. 2. Formatting the partitions as FAT and EXT3 and mounting them. 3. Extracting boot and system files from compressed tarballs into the mounted partitions. 4. Unmounting the partitions and inserting the SD card into the Raspberry Pi to complete the installation.

Uploaded by

ovidiutache
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Micro Elastix HOW TO INSTALL ON RASPBERRY PI Get an SD memory card of at least 4GB. Uncompress uElastix (elastix_arm) tarball file.

The files "BOOT.tar.gz" and "roo tfs.tar.gz" will be obtained. Use any partitioning tool to create two partitions in the SD card. The first par tition must be FAT type and its size of at least 16 MB. The second partition mus t be EXT3 type and its size of at least 3 GB. Example (supposing 'sdd' was asign ed as the device for the SD card): [root@elx elastix-image]# fdisk -l /dev/sdd Disk /dev/sdd: 3965 MB, 3965190144 bytes 122 heads, 62 sectors/track, 1023 cylinders, total 7744512 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0xd048a4cb Device Boot /dev/sdd1 /dev/sdd2 Start 2048 67584 End 67583 Blocks 32768 83 e Linux Id System W95 FAT16 (LBA)

7744511 3838464

Note: When running fdisk in the partitioning process is recommended to set the t ype of the first partition with the option "t" and "e" for W95 FAT16 (LBA) (The option l will display a complete list). After this the process should be saved. Create the respective file systems on the partitions. For example the first part ition is /dev/sdd1 and the second partition /dev/sdd2. The "BOOT" and "rootfs" l abels are mandatory since they appear in /etc/fstab of the final image: mkfs.vfat -n BOOT /dev/sdd1 mkfs.ext3 -L rootfs /dev/sdd2 Mount both partitions and uncompress the files with the following commands: tar -C /media/BOOT/ -xzf BOOT.tar.gz tar -C /media/rootfs/ -xzf rootfs.tar.gz Unmount the partitions and place the SD card in your Raspberry Pi: umount /dev/sdd2 umount /dev/sdd1 The installation's IP is 192.168.1.251/24. The root password is "palosanto" and the initial web interface credentials are: user "admin" and password "palosanto" . Note: This process was generated on an Elastix 2.4 server.

You might also like