Here is how to get DS1621 I 2 C Temperature sensor working with Raspberry Pi running ArchLinuxARM Make sure you have a working setup of RPi and Arch Linux, if not refer here: HelloWorld in Lua on Raspberry Pi running Mihini on ArchLinux with Koneki as IDE After you have the setup ready, attach the DS1621 sensor to your RPi as shown in the schematic below. I have Model B Revision 1.0 Raspberry Pi ( cat /proc/cpuinfo shows Revision : 0002 ) DS1621 connected to Raspberry Pi (.fzz file here ) The following commands issues to RPi over a terminal (SSH or Serial using PuTTY): Install i2c-tools : pacman -Sy i2c-tools Install lm-sensors : pacman -Sy lm_sensors Open kernel module load config file for editing: nano /etc/modules-load.d/raspberrypi.conf Add the following line at the end of the file and save it. i2c-dev This will load the i2c-dev kernel module at boot up. This module will allow you to access the I 2 C bus via /dev/i2c-0 Reboot Raspberry Pi When the Raspberr