so I have received a Raspberry Pi this week and I want to use it as home server. Since I am using a Canon Printer (LBP3010) I have to install additional drivers. The driver is open source but I have difficulties building a deb package. After compiling the source code with
- Code: Select all
sudo dpkg-buildpackage
and installing it with
- Code: Select all
sudo dpkg -i cndrvcups-capt-2.40_armel.deb
I always get an error when executing ccpd (executable file from that package)
The output of file shows, that the package is not built for the ARM architecture (at least I think so).
- Code: Select all
file /usr/sbin/ccpd
/usr/sbin/ccpd: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.2.5, stripped
What am I doing wrong? Any help?