how to install linuxcnc on mint I'm newbie
- abdulasis12
- Offline
- Premium Member
Less
More
- Posts: 111
- Thank you received: 6
22 Aug 2023 09:27 #278679
by abdulasis12
how to install linuxcnc on mint I'm newbie was created by abdulasis12
Hi
I'm Asis and Newbie linuxcnc
I just buy 7i96s and read in linuxcnc.org for install
I have problem my Mainboard : MSI Z97 Gamming3 can't boot debian, I try a lot and have new way.
Now I install Mint 21.1 done and can boot up , then I Install Kernal and type uname -v
result now is : SMP PREEMPT_RT Debian 6.5 rc6-1 exp1 (2023-08-15)
then I try install linuxcnc
it's show massage unable locate package .......
what I'm wrong ? and how to fix it ?
Thank you
Asis,
I'm Asis and Newbie linuxcnc
I just buy 7i96s and read in linuxcnc.org for install
I have problem my Mainboard : MSI Z97 Gamming3 can't boot debian, I try a lot and have new way.
Now I install Mint 21.1 done and can boot up , then I Install Kernal and type uname -v
result now is : SMP PREEMPT_RT Debian 6.5 rc6-1 exp1 (2023-08-15)
then I try install linuxcnc
it's show massage unable locate package .......
what I'm wrong ? and how to fix it ?
Thank you
Asis,
Attachments:
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
Less
More
- Posts: 19106
- Thank you received: 6398
22 Aug 2023 09:54 #278683
by tommylight
Replied by tommylight on topic how to install linuxcnc on mint I'm newbie
For Mint only this works
linuxcnc.org/docs/html/code/building-linuxcnc.html
linuxcnc.org/docs/html/code/building-linuxcnc.html
Please Log in or Create an account to join the conversation.
- abdulasis12
- Offline
- Premium Member
Less
More
- Posts: 111
- Thank you received: 6
22 Aug 2023 11:04 #278686
by abdulasis12
I trybut it's time out, I test ping xxxx.com can reply
Replied by abdulasis12 on topic how to install linuxcnc on mint I'm newbie
thank you for reply ,MR. tommylightFor Mint only this works
linuxcnc.org/docs/html/code/building-linuxcnc.html
I try
git clone git://github.com/linuxcnc/linuxcnc.git linuxcnc-dev
Attachments:
Please Log in or Create an account to join the conversation.
- abdulasis12
- Offline
- Premium Member
Less
More
- Posts: 111
- Thank you received: 6
22 Aug 2023 11:17 - 22 Aug 2023 11:19 #278687
by abdulasis12
Replied by abdulasis12 on topic how to install linuxcnc on mint I'm newbie
new update
now I use go to website github/linuxcnc and download file .zip and extract to local folder
I make folder name linuxcnc-dev
I go terminal and type :[/code][/code][/code][/code]
now I use go to website github/linuxcnc and download file .zip and extract to local folder
I make folder name linuxcnc-dev
I go terminal and type :
cd linuxcnc-dev/src
[code]./autogen.sh
it's not work [code]./autogen.sh show in picture I have some wrong
[code][code]
Attachments:
Last edit: 22 Aug 2023 11:19 by abdulasis12.
Please Log in or Create an account to join the conversation.
22 Aug 2023 11:33 - 22 Aug 2023 11:34 #278688
by rodw
Replied by rodw on topic how to install linuxcnc on mint I'm newbie
I think it could be made to work if you follow #9 in the 2.9 getting linuxcnc docs. and added the linuxcnc rules. you may not need the file starting with 99 as clearly linuxcnc is not in the repos from your error
Last edit: 22 Aug 2023 11:34 by rodw.
Please Log in or Create an account to join the conversation.
22 Aug 2023 11:49 #278691
by rodw
Replied by rodw on topic how to install linuxcnc on mint I'm newbie
Actually, Tommy loves Mint!
If he has a spare Mint PC somewhere, maybe he could try a shortened version of the getting linuxcnc docs with
[/code]
Ref: linuxcnc.org/docs/2.9/html/getting-start...an_bookworm_x86_only
If he has a spare Mint PC somewhere, maybe he could try a shortened version of the getting linuxcnc docs with
[code]cd ~/Downloads
wget http://buildbot2.highlab.com/buildbot-archive-key.gpg
sudo cp ./buildbot-archive-key.gpg /etc/apt/trusted.gpg.d
sudo echo "deb http://buildbot2.highlab.com/debian/ bookworm 2.9-uspace" | sudo tee -a /etc/apt/sources.list.d/linuxcnc.list
sudo apt update
sudo apt install linuxcnc-uspace linuxcnc-uspace-dev mesaflash
Ref: linuxcnc.org/docs/2.9/html/getting-start...an_bookworm_x86_only
The following user(s) said Thank You: abdulasis12
Please Log in or Create an account to join the conversation.
22 Aug 2023 11:52 - 22 Aug 2023 11:55 #278692
by Aciera
Replied by Aciera on topic how to install linuxcnc on mint I'm newbie
The git clone command should be:
$ git clone github.com/LinuxCNC/linuxcnc.git linuxcnc-dev
then you can cd to ~/linuxcnc-dev and continue
$ git clone github.com/LinuxCNC/linuxcnc.git linuxcnc-dev
then you can cd to ~/linuxcnc-dev and continue
Last edit: 22 Aug 2023 11:55 by Aciera.
The following user(s) said Thank You: abdulasis12
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
Less
More
- Posts: 19106
- Thank you received: 6398
22 Aug 2023 13:21 #278700
by tommylight
Why is it reffering to i386?
Should be amd64, besides not finding what it is looking for.
Replied by tommylight on topic how to install linuxcnc on mint I'm newbie
W: Skipping acquire of configured file '2.9-uspace/binary-i386/Packages' as repository 'http://buildbot2.highlab.com/debian bookworm InRelease' does not seem to provide it (sources.list entry misspelt?)
Should be amd64, besides not finding what it is looking for.
Please Log in or Create an account to join the conversation.
- abdulasis12
- Offline
- Premium Member
Less
More
- Posts: 111
- Thank you received: 6
22 Aug 2023 13:23 #278701
by abdulasis12
Replied by abdulasis12 on topic how to install linuxcnc on mint I'm newbie
First, Thank you for all reply
Now seem I finished install LinuxCNC
I can
how to open program linuxCNC ?
Its no Icon or somethink for open prgram , haha sorry I'm Beginner LinuxCNC
I can
> source ../scripts/rip-environment
> runtests
how to open program linuxCNC ?
Its no Icon or somethink for open prgram , haha sorry I'm Beginner LinuxCNC
Attachments:
Please Log in or Create an account to join the conversation.
22 Aug 2023 13:39 #278703
by Aciera
Replied by Aciera on topic how to install linuxcnc on mint I'm newbie
$ linuxcnc
Note that every time you start a new terminal you have to cd to ~/linuxcnc-dev and run
$ source scripts/rip-environment
Note that every time you start a new terminal you have to cd to ~/linuxcnc-dev and run
$ source scripts/rip-environment
Please Log in or Create an account to join the conversation.
Time to create page: 0.148 seconds