View previous topic :: View next topic |
Author |
Message |
cwc Veteran


Joined: 20 Mar 2006 Posts: 1450 Location: Tri-Cities, WA USA
|
Posted: Fri May 16, 2025 2:08 pm Post subject: emerge world without verbose [slvd] |
|
|
How do you emerge world with out verbose output?
This is something I can not figure out and it's no big deal.
System 4core I get the following output:
Code: |
emerge -uDNat @world;
These are the packages that would be merged, in order:
Calculating dependencies... done!
Dependency resolution took 3.91 s (backtrack: 0/20).
[ebuild U ] net-misc/tigervnc-1.15.0-r1 [1.15.0]
Would you like to merge these packages? [Yes/No] Yes
>>> Verifying ebuild manifests
>>> Emerging (1 of 1) net-misc/tigervnc-1.15.0-r1::gentoo
>>> Installing (1 of 1) net-misc/tigervnc-1.15.0-r1::gentoo
>>> Completed (1 of 1) net-misc/tigervnc-1.15.0-r1::gentoo
>>> Jobs: 1 of 1 complete Load avg: 1.51, 0.72, 0.29
|
Additionally the make.conf is set as follows:
--jobs 2 give a simple no verbose output.
Code: |
MAKEOPTS="-j2"
EMERGE_DEFAULT_OPTS="--jobs 2"
|
On my 12core system I get he following:
Code: |
emerge -uDNat @world;
ebuild R ] net-misc/tigervnc-1.15.0-r1
Would you like to merge these packages? [Yes/No] Y
>>> Verifying ebuild manifests
>>> Emerging (1 of 1) net-misc/tigervnc-1.15.0-r1::gentoo
* xorg-server-21.1.15.tar.xz BLAKE2B SHA512 size ;-) ... [ ok ]
* tigervnc-1.15.0.tar.gz BLAKE2B SHA512 size ;-) ... [ ok ]
>>> Unpacking source...
>>> Unpacking xorg-server-21.1.15.tar.xz to /var/tmp/portage/net-misc/tigervnc-1.15.0-r1/work
>>> Unpacking tigervnc-1.15.0.tar.gz to /var/tmp/portage/net-misc/tigervnc-1.15.0-r1/work
>>> Source unpacked in /var/tmp/portage/net-misc/tigervnc-1.15.0-r1/work
>>> Preparing source in /var/tmp/portag
... all of the build actions ...
.command.line -R .note.gnu.gold-version
/usr/bin/vncpasswd
/usr/bin/vncconfig
/usr/sbin/vncsession
/usr/bin/x0vncserver
/usr/bin/vncviewer
/usr/lib64/xorg/modules/extensions/libvnc.so
/usr/bin/Xvnc
>>> Installing (1 of 1) net-misc/tigervnc-1.15.0-r1::gentoo
|
My make.conf for the 12 core is:
Code: |
MAKEOPTS="-j12"
EMERGE_DEFAULT_OPTS="--load-average 10.8"
|
I really don't get it. My emerge world has no -v emerge -uDNat @world;
On the 12core system I left out jobs on EMERGE_DEFAULT_OPTS
It's nothing big I just really like the simple output on the 4 core. _________________ Without diversity there can be no evolution:)
Last edited by cwc on Fri May 16, 2025 5:54 pm; edited 1 time in total |
|
Back to top |
|
 |
rfx Apprentice

Joined: 19 Apr 2023 Posts: 161 Location: de-by
|
Posted: Fri May 16, 2025 2:15 pm Post subject: |
|
|
You want the complete build-process to be hidden?
Set
Code: | EMERGE_DEFAULT_OPTS="-j1 --quiet-build"
|
--quiet-build for this. It is automatically set when you increase EMERGE_DEFAULT_OPTS="-j2" to two or higher. For one Job you have to set it manually |
|
Back to top |
|
 |
Hu Administrator

Joined: 06 Mar 2007 Posts: 23449
|
Posted: Fri May 16, 2025 2:16 pm Post subject: |
|
|
You are asking for --quiet-build. Per man emerge, using --jobs to emerge (whether on the command line or through EMERGE_DEFAULT_OPTS) implies results similar to --quiet-build: man emerge: | -j [JOBS], --jobs[=JOBS]
Specifies the number of packages to build simultaneously. If
this option is given without an argument, emerge will not limit
the number of jobs that can run simultaneously. Also see the re‐
lated --load-average option. Similarly to the --quiet-build op‐
tion, the --jobs option causes all build output to be redirected
to logs. |
|
|
Back to top |
|
 |
cwc Veteran


Joined: 20 Mar 2006 Posts: 1450 Location: Tri-Cities, WA USA
|
Posted: Fri May 16, 2025 3:07 pm Post subject: |
|
|
That did it!
EMERGE_DEFAULT_OPTS="-j1 --quiet-build"
Thank you so much for answering this (NOT IMPORTANT) silly question.
You all are very kind! _________________ Without diversity there can be no evolution:) |
|
Back to top |
|
 |
|