7i80 and 7i77
I can now install, the 3.10.4 but obviously I need a later version than the 2.6.32 to upgrade, because the RT version don't started correctly. Its a difficult thing, if you never have anything to do with linux, to find informations for this operating system.
Some pages are made for people, who have things like this sucked with Mothermilk, but I understand nothing
Download the program, install it and it runs (more or less) correctly, that is ok with a rar in Windows, but unfortunately linux want it completly different.
Please Log in or Create an account to join the conversation.
after building master and installing the standard preemt-rt kernel as mentioned above
Please Log in or Create an account to join the conversation.
I have made the steps from the first page, but after I type in "make" the terminal wants an argument, that I don't know.
Please Log in or Create an account to join the conversation.
wiki.linuxcnc.org/cgi-bin/wiki.pl?Instal..._the_source_with_git
You can look at the README file one level above the src directory.
You can simply follow (or just cut and paste) the instructions there.
Heres the quickstart part of the README file
Quickstart:
From the top level directory, switch to the source directory:
cd src
In the source directory, build LinuxCNC:
[for rtai]
./autogen.sh
./configure
[or, for PREEMPT-rt or vanilla kernels:]
./autogen.sh
./configure --with-realtime=uspace
make clean
make
sudo make setuid
to run the software go back to the top level directory, and issue:
. scripts/rip-environment
linuxcnc
Please Log in or Create an account to join the conversation.
uli@uli-desktop:~/linuxcnc-dev/src$ make clean
Makefile:87: Makefile.inc: No such file or directory
Makefile:98: *** Makefile.inc must specify 'BUILD_THREAD_FLAVORS' and other variables. Stop.
uli@uli-desktop:~/linuxcnc-dev/src$
Please Log in or Create an account to join the conversation.
./autogen.sh
./configure --with-realtime=uspace
Please Log in or Create an account to join the conversation.
But make don't run.
Thats the error
uli@uli-desktop:~/linuxcnc-dev/src$ make clean
Makefile:87: Makefile.inc: No such file or directory
Makefile:98: *** Makefile.inc must specify 'BUILD_THREAD_FLAVORS' and other variables. Stop.
uli@uli-desktop:~/linuxcnc-dev/src$
Please Log in or Create an account to join the conversation.
What Linux distribution are you running?
What does
git branch
report when run from the linuxcnc-dev directory?
Also can you try this from the linuxcnc-dev directory and post what it prints here?
cd debian
./configure uspace
cd ..
dpkg-checkbuilddeps
Please Log in or Create an account to join the conversation.
master
* ubc3-7i80
./configure uspace
no kernel configuration found : /boot/config-uspace
dpkg-checkbuilddeps
dpkg-checkbuilddeps: Unmet build dependencies: libudev-dev dvipng texlive-extra-utils texlive-latex-recommended texlive-fonts-recommended texlive-lang-french texlive-lang-spanish texlive-font-utils libreadline-dev asciidoc (>= 8.5) source-highlight dblatex (>= 0.2.12) groff python-lxml libboost-python-dev texlive-lang-cyrillic texlive-lang-german libmodbus-dev (>= 3.0)
Please Log in or Create an account to join the conversation.
try checking out master (from linuxcnc-dev directory):
git checkout master
git pull
./configure --with-realtime=uspace
Please Log in or Create an account to join the conversation.