I am attempting to build linuxcnc 2.7 on debian jessie. So far I have managed to build my RT kernel by simi following this: https://www.mail-archive.com/[email protected]/msg56649.html (Many thanks to Mr.Peter Wallace) which I updated to look like what follows so that I am using the current build:
cd ~ mkdir rtlinux cd rtlinux wget ftp://ftp.kernel.org/pub/linux/kernel/v3.x/linux-3.18.11.tar.xz wget https://www.kernel.org/pub/linux/kernel/projects/rt/3.18/patch-3.18.11-rt7.patch.gz tar -xpf linux-3.18.11.tar.xz gunzip patch-3.18.11-rt7.patch.gz cp patch-3.18.11-rt7.patch linux-3.18.11 cd linux-3.18.11 cat patch-3.18.11-rt7.patch | patch -p1 ln -s linux-3.18.11/usr/src/linux-rt-preempt make menuconfig ##Graphical Menu## I configured the kernel as follows and left everything else as is. Processor type and features ---> [Enter] Preemption Model (Voluntary Kernel Preemption (Desktop)) [Enter] Fully Preemptible Kernel (RT) [Enter] #Select [Esc][Esc] Kernel hacking --> [Enter] Memory Debugging [Enter] Check for stack overflows #Already deselected - do not select [Esc][Esc] [Right Arrow][Right Arrow] <Save> [Enter] After saving I continue: make -j3 make modules_install -j3 make install -j3 cd /boot ls update-grub vim /boot/grub/grub.cfg Reboot and it runs... jim@Jim-PC:~$ uname -a Linux Jim-PC 3.18.11-rt7 #1 SMP PREEMPT RT Sat Apr 18 09:10:13 CDT 2015 x86_64 GNU/Linux so far so good. My problems start when I try to get linuxcnc 2.7 as follows: cd ~ sudo apt-get install git-core gitk git-gui (this works) sudo apt-get build-dep linuxcnc (Here I get: E: Unable to find a source package for linuxcnc) How do I get past this? (all this next!) sudo apt-get install libudev-dev git clone git://git.linuxcnc.org/git/linuxcnc.git linuxcnc-dev cd linuxcnc-dev git checkout 2.7 git pull cd src ./autogen.sh ./configure --with-realtime=uspace make sudo make setuid cd .. . scripts/rip-environment ------------------------------------------------------------------------------ BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT Develop your own process in accordance with the BPMN 2 standard Learn Process modeling best practices with Bonita BPM through live exercises http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_ source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
