Using Distcc between Ubuntu Gentoo

2024-03-11 07:38
文章标签 ubuntu using distcc gentoo

本文主要是介绍Using Distcc between Ubuntu Gentoo,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

distcc 是linux分布式编译工具,可以大大提高编译速度。

下面就是在两台机子上进行的distcc的配置,一台是gentoo,另一台是ubuntu

Section 1 - Setting up Distcc on gentoo.

a) Install distcc and distcc-config


Code:
emerge distcc
emerge distcc-config
*If distcc-config is masked then

Code:
echo "sys-devel/distcc-config ~x86" >> /etc/portage/package.keywords
b) Configure distcc

Code:
vi /etc/conf.d/distccd
DISTCCD_OPTS="${DISTCCD_OPTS} --allow 192.168.0.0/24"
Modify the above line to suite your subnet. I assume your doing this on a lan.

Code:
distcc-config --set-hosts "192.168.0.77 192.168.0.36 192.168.0.10"
Modify the above line to include the distcc helper ip addresses.

c) Configure gentoo

Code:
vi /etc/make.conf
FEATURES="distcc"
d) Start distcc

Code:
/etc/init.d/distccd start
e) Finally, check which version of gcc your gentoo is running.

Code:
gcc -v
Section 2 - Configure the helpers

a) Install distcc

Code:
sudo apt-get install distcc
b) Configure distcc

Code:
vi /etc/defaults/distcc
STARTDISTCC="false"
ALLOWEDNETS="192.168.0.0/24"
Change the STARTDISTCC="false"
to
STARTDISTCC="true"

Change the allowednets network id to correspond with your local lan.

c) Check which version of gcc you are running


gcc -v

If you have the same version of gcc as your gentoo install, then you can simply run:
Code:
/etc/init.d/distcc start
If you do not, then follow on with the next step

d) Install required gcc and g++


Example, to install gcc 3.3
Code:
sudo apt-get install gcc-3.3 g++-3.3
e) Create a distcc binary directory with links
From here on in, the version will be refered to $version, please substitute this with your version number of gcc

Code:
mkdir -p /usr/lib/distcc/$version   <-------Make this ther version
cd /usr/lib/distcc/$version
ln -s /usr/bin/gcc-$version gcc
ln -s /usr/bin/g++-$version g++
ln -s /usr/bin/cc cc
ln -s /usr/bin/c++ c++
d) Set and export your new distcc path

Code:
PATH="/usr/lib/distcc/$version:$PATH"
export PATH
e) Crank up distcc
Code:
/etc/init.d/distcc start
And emerge merily away

这篇关于Using Distcc between Ubuntu Gentoo的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/797116

相关文章

怎么关闭Ubuntu无人值守升级? Ubuntu禁止自动更新的技巧

《怎么关闭Ubuntu无人值守升级?Ubuntu禁止自动更新的技巧》UbuntuLinux系统禁止自动更新的时候,提示“无人值守升级在关机期间,请不要关闭计算机进程”,该怎么解决这个问题?详细请看... 本教程教你如何处理无人值守的升级,即 Ubuntu linux 的自动系统更新。来源:https://

Ubuntu系统怎么安装Warp? 新一代AI 终端神器安装使用方法

《Ubuntu系统怎么安装Warp?新一代AI终端神器安装使用方法》Warp是一款使用Rust开发的现代化AI终端工具,该怎么再Ubuntu系统中安装使用呢?下面我们就来看看详细教程... Warp Terminal 是一款使用 Rust 开发的现代化「AI 终端」工具。最初它只支持 MACOS,但在 20

在Ubuntu上部署SpringBoot应用的操作步骤

《在Ubuntu上部署SpringBoot应用的操作步骤》随着云计算和容器化技术的普及,Linux服务器已成为部署Web应用程序的主流平台之一,Java作为一种跨平台的编程语言,具有广泛的应用场景,本... 目录一、部署准备二、安装 Java 环境1. 安装 JDK2. 验证 Java 安装三、安装 mys

如何评价Ubuntu 24.04 LTS? Ubuntu 24.04 LTS新功能亮点和重要变化

《如何评价Ubuntu24.04LTS?Ubuntu24.04LTS新功能亮点和重要变化》Ubuntu24.04LTS即将发布,带来一系列提升用户体验的显著功能,本文深入探讨了该版本的亮... Ubuntu 24.04 LTS,代号 Noble NumBAT,正式发布下载!如果你在使用 Ubuntu 23.

什么是 Ubuntu LTS?Ubuntu LTS和普通版本区别对比

《什么是UbuntuLTS?UbuntuLTS和普通版本区别对比》UbuntuLTS是Ubuntu操作系统的一个特殊版本,旨在提供更长时间的支持和稳定性,与常规的Ubuntu版本相比,LTS版... 如果你正打算安装 Ubuntu 系统,可能会被「LTS 版本」和「普通版本」给搞得一头雾水吧?尤其是对于刚入

如何安装 Ubuntu 24.04 LTS 桌面版或服务器? Ubuntu安装指南

《如何安装Ubuntu24.04LTS桌面版或服务器?Ubuntu安装指南》对于我们程序员来说,有一个好用的操作系统、好的编程环境也是很重要,如何安装Ubuntu24.04LTS桌面... Ubuntu 24.04 LTS,代号 Noble NumBAT,于 2024 年 4 月 25 日正式发布,引入了众

Ubuntu 怎么启用 Universe 和 Multiverse 软件源?

《Ubuntu怎么启用Universe和Multiverse软件源?》在Ubuntu中,软件源是用于获取和安装软件的服务器,通过设置和管理软件源,您可以确保系统能够从可靠的来源获取最新的软件... Ubuntu 是一款广受认可且声誉良好的开源操作系统,允许用户通过其庞大的软件包来定制和增强计算体验。这些软件

如何安装HWE内核? Ubuntu安装hwe内核解决硬件太新的问题

《如何安装HWE内核?Ubuntu安装hwe内核解决硬件太新的问题》今天的主角就是hwe内核(hardwareenablementkernel),一般安装的Ubuntu都是初始内核,不能很好地支... 对于追求系统稳定性,又想充分利用最新硬件特性的 Ubuntu 用户来说,HWEXBQgUbdlna(Har

Ubuntu 24.04 LTS怎么关闭 Ubuntu Pro 更新提示弹窗?

《Ubuntu24.04LTS怎么关闭UbuntuPro更新提示弹窗?》Ubuntu每次开机都会弹窗提示安全更新,设置里最多只能取消自动下载,自动更新,但无法做到直接让自动更新的弹窗不出现,... 如果你正在使用 Ubuntu 24.04 LTS,可能会注意到——在使用「软件更新器」或运行 APT 命令时,

pico2 开发环境搭建-基于ubuntu

pico2 开发环境搭建-基于ubuntu 安装编译工具链下载sdk 和example编译example 安装编译工具链 sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib 注意cmake的版本,需要在3.17 以上 下载sdk 和ex