HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

euse — Enable, disable, and obtain information about Gentoo USE flags. More information: <https://wiki.gent

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandeuseobtainandcliinformationenabledisable
linux

Problem

How to use the euse command: Enable, disable, and obtain information about Gentoo USE flags. More information: <https://wiki.gentoo.org/wiki/Euse>.

Solution

euse — Enable, disable, and obtain information about Gentoo USE flags. More information: <https://wiki.gentoo.org/wiki/Euse>.

List active global USE flags:
euse {{[-a|--active]}} {{[-g|--global]}}


List active local USE flags:
euse {{[-a|--active]}} {{[-l|--local]}}


Enable a global USE flag:
sudo euse {{[-E|--enable]}} {{use_flag}}


Disable a global USE flag (put a '-' sign in front of the USE flag):
sudo euse {{[-D|--disable]}} {{use_flag}}


Remove a global USE flag:
sudo euse {{[-P|--prune]}} {{use_flag}}

Code Snippets

List active global USE flags

euse {{[-a|--active]}} {{[-g|--global]}}

List active local USE flags

euse {{[-a|--active]}} {{[-l|--local]}}

Enable a global USE flag

sudo euse {{[-E|--enable]}} {{use_flag}}

Disable a global USE flag (put a '-' sign in front of the USE flag)

sudo euse {{[-D|--disable]}} {{use_flag}}

Remove a global USE flag

sudo euse {{[-P|--prune]}} {{use_flag}}

Context

tldr-pages: linux/euse

Revisions (0)

No revisions yet.