How can I install ncdu on Red Hat?Tracking down where disk space has gone on Linux?How to install software on...
Why aren’t there water shutoff valves for each room?
How can God warn people of the upcoming rapture without disrupting society?
Does fossil fuels use since 1990 account for half of all the fossil fuels used in history?
Why is Python 2.7 still the default Python version in Ubuntu?
Help, I cannot decide when to start the story
Swap (and hibernation) on SSD in 2019?
Can the IPA represent all languages' tones?
How much can I judge a company based on a phone screening?
What is a good class if we remove subclasses?
Running code generated in realtime in JavaScript with eval()
Beginner in need of a simple explanation of the difference between order of evaluation and precedence/associativity
What would it take to get a message to another star?
Markov-chain sentence generator in Python
What is a "soap"?
Boss wants me to ignore a software API license
How can I communicate my issues with a potential date's pushy behavior?
Heating Margarine in Pan = loss of calories?
Why doesn't a commutator cause the rotation to reverse periodically or stop?
Does EU compensation apply to flights where the departure airport closes check-in counters during protests?
How would timezones work on a planet 100 times the size of our Earth
What unique challenges/limitations will I face if I start a career as a pilot at 45 years old?
Why does Japan use the same type of AC power outlet as the US?
Crippling fear of hellfire &, damnation, please help?
Why is tert-butoxide often used in elimination reactions when it is not necessary?
How can I install ncdu on Red Hat?
Tracking down where disk space has gone on Linux?How to install software on Red Hat?Install NCDU on Scientific from EPELUpgrade zsh on red hat 5 x86_64Is Red Hat Linux licensedgvim on RHEL (Red Hat Enterprise Linux) install in home directory'yum' command fails with 'TypeError: rpmdb open failed' in Red Hat 5.2How to resolve 'netlink: 12 bytes leftover after parsing attributes.' in syslog on Red Hat Enterprise Linux 6.5?yum install R dependency issue (RHEL 5.5)How can I install wine and vncserver as well as update software on Red Hat with no subscription?How can I install python IDLE in Red Hat Enterprise Linux?Red Hat Enterprise Linux 6.9 - Cannot Find or Install RPM Python Bindings?Manage root privileges for users on Red Hat Azure VM
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
The answers provided to this question doesn't help.
I'ved tried
yum install ncdu
But I'm getting
No package ncdu available
command-line install rhel
add a comment |
The answers provided to this question doesn't help.
I'ved tried
yum install ncdu
But I'm getting
No package ncdu available
command-line install rhel
1
you might want to ... put more in the text before you get modded down... like explain further what difficulties you're having... e.g. is there a repo, does it have to built from source...
– xenoterracide
Nov 12 '10 at 13:33
@xeno - there you go.
– ripper234
Nov 12 '10 at 13:37
1
Curious; from what I can tell, it's in the [repositories][1]. [1]: admin.fedoraproject.org/pkgdb/acls/name/ncdu
– Shawn J. Goff
Nov 12 '10 at 14:57
add a comment |
The answers provided to this question doesn't help.
I'ved tried
yum install ncdu
But I'm getting
No package ncdu available
command-line install rhel
The answers provided to this question doesn't help.
I'ved tried
yum install ncdu
But I'm getting
No package ncdu available
command-line install rhel
command-line install rhel
edited Apr 13 '17 at 12:36
Community♦
1
1
asked Nov 12 '10 at 13:31
ripper234ripper234
10k36 gold badges70 silver badges86 bronze badges
10k36 gold badges70 silver badges86 bronze badges
1
you might want to ... put more in the text before you get modded down... like explain further what difficulties you're having... e.g. is there a repo, does it have to built from source...
– xenoterracide
Nov 12 '10 at 13:33
@xeno - there you go.
– ripper234
Nov 12 '10 at 13:37
1
Curious; from what I can tell, it's in the [repositories][1]. [1]: admin.fedoraproject.org/pkgdb/acls/name/ncdu
– Shawn J. Goff
Nov 12 '10 at 14:57
add a comment |
1
you might want to ... put more in the text before you get modded down... like explain further what difficulties you're having... e.g. is there a repo, does it have to built from source...
– xenoterracide
Nov 12 '10 at 13:33
@xeno - there you go.
– ripper234
Nov 12 '10 at 13:37
1
Curious; from what I can tell, it's in the [repositories][1]. [1]: admin.fedoraproject.org/pkgdb/acls/name/ncdu
– Shawn J. Goff
Nov 12 '10 at 14:57
1
1
you might want to ... put more in the text before you get modded down... like explain further what difficulties you're having... e.g. is there a repo, does it have to built from source...
– xenoterracide
Nov 12 '10 at 13:33
you might want to ... put more in the text before you get modded down... like explain further what difficulties you're having... e.g. is there a repo, does it have to built from source...
– xenoterracide
Nov 12 '10 at 13:33
@xeno - there you go.
– ripper234
Nov 12 '10 at 13:37
@xeno - there you go.
– ripper234
Nov 12 '10 at 13:37
1
1
Curious; from what I can tell, it's in the [repositories][1]. [1]: admin.fedoraproject.org/pkgdb/acls/name/ncdu
– Shawn J. Goff
Nov 12 '10 at 14:57
Curious; from what I can tell, it's in the [repositories][1]. [1]: admin.fedoraproject.org/pkgdb/acls/name/ncdu
– Shawn J. Goff
Nov 12 '10 at 14:57
add a comment |
3 Answers
3
active
oldest
votes
You will need to download the latest ncdu package from http://dev.yorhel.nl/ncdu with wget.
Navigate to a directory with write access, such as your home directory.
wget https://dev.yorhel.nl/download/ncdu-1.13.tar.gz
then extract the tarball, with:
tar -xzvf ncdu-1.13.tar.gz
this will create a new folder named ncdu-1.13. Enter that folder and execute:
./configure --prefix=/usr
If it can't find ncurses.h and the configure fails,
checking for ncurses.h... no
configure: error: required header file not found
you'll have to install curses library headers
sudo dnf install ncurses ncurses-devel
After installing the library, execute the configure step again.
Then run,
make
and
sudo make install
and you are done.
You can optionally remove the ncdu-1.13.tar.gz file and the directory where the source files were extracted as you don't need them anymore.
// , Doesn't this require other dependencies?
– Nathan Basanese
Nov 26 '15 at 5:44
// , Also, I get the following error when I attempt./configure:[nbasanese@rhel022 ncdu-1.11]$ ./configure –-prefix='/usr'configure: error: invalid variable name: '–-prefix'
– Nathan Basanese
Nov 26 '15 at 5:51
1
@Nathan Just use one dash beforeprefix. Didn't run into any other dependencies aside from curses.
– M M
May 4 '16 at 20:56
1
sudo apt install libncurses5-devon debian/ubuntu (using APT)
– bshea
Sep 21 '17 at 16:04
add a comment |
If you are using Red Hat Enterprise Linux, I do not think ncdu is in the RHEL server repositories. I do not have a machine where I can check if it is in the workstation repositories, but I suspect it isn't. If it isn't, one option is the use EPEL (faq):
EPEL (Extra Packages for Enterprise
Linux) is a volunteer-based community
effort from the Fedora project to
create a repository of high-quality
add-on packages that complement the
Fedora-based Red Hat Enterprise Linux
(RHEL) and its compatible spinoffs,
such as CentOS and Scientific Linux.
ncdu does seem to be in the EPEL repositories intended to work with RHEL 4 and RHEL 5. Directions for how to use these repositories can be found here:
http://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F
Alternatively, you can always download the tool from the upstream website:
http://dev.yorhel.nl/ncdu
and follow the directions in the INSTALL file. However, this will require you to chase down dependencies and install the tools needed to build the project.
add a comment |
First visit the below link and install the epel according to the OS type.
http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/
Once the EPEL repo is installed, ncdu can be installed with following command:
yum install ncdu
Note: The above command will work if you have RHEL Subscription / Preconfigured with yum install.
To use ncdu, enter the following command:
ncdu
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f3979%2fhow-can-i-install-ncdu-on-red-hat%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You will need to download the latest ncdu package from http://dev.yorhel.nl/ncdu with wget.
Navigate to a directory with write access, such as your home directory.
wget https://dev.yorhel.nl/download/ncdu-1.13.tar.gz
then extract the tarball, with:
tar -xzvf ncdu-1.13.tar.gz
this will create a new folder named ncdu-1.13. Enter that folder and execute:
./configure --prefix=/usr
If it can't find ncurses.h and the configure fails,
checking for ncurses.h... no
configure: error: required header file not found
you'll have to install curses library headers
sudo dnf install ncurses ncurses-devel
After installing the library, execute the configure step again.
Then run,
make
and
sudo make install
and you are done.
You can optionally remove the ncdu-1.13.tar.gz file and the directory where the source files were extracted as you don't need them anymore.
// , Doesn't this require other dependencies?
– Nathan Basanese
Nov 26 '15 at 5:44
// , Also, I get the following error when I attempt./configure:[nbasanese@rhel022 ncdu-1.11]$ ./configure –-prefix='/usr'configure: error: invalid variable name: '–-prefix'
– Nathan Basanese
Nov 26 '15 at 5:51
1
@Nathan Just use one dash beforeprefix. Didn't run into any other dependencies aside from curses.
– M M
May 4 '16 at 20:56
1
sudo apt install libncurses5-devon debian/ubuntu (using APT)
– bshea
Sep 21 '17 at 16:04
add a comment |
You will need to download the latest ncdu package from http://dev.yorhel.nl/ncdu with wget.
Navigate to a directory with write access, such as your home directory.
wget https://dev.yorhel.nl/download/ncdu-1.13.tar.gz
then extract the tarball, with:
tar -xzvf ncdu-1.13.tar.gz
this will create a new folder named ncdu-1.13. Enter that folder and execute:
./configure --prefix=/usr
If it can't find ncurses.h and the configure fails,
checking for ncurses.h... no
configure: error: required header file not found
you'll have to install curses library headers
sudo dnf install ncurses ncurses-devel
After installing the library, execute the configure step again.
Then run,
make
and
sudo make install
and you are done.
You can optionally remove the ncdu-1.13.tar.gz file and the directory where the source files were extracted as you don't need them anymore.
// , Doesn't this require other dependencies?
– Nathan Basanese
Nov 26 '15 at 5:44
// , Also, I get the following error when I attempt./configure:[nbasanese@rhel022 ncdu-1.11]$ ./configure –-prefix='/usr'configure: error: invalid variable name: '–-prefix'
– Nathan Basanese
Nov 26 '15 at 5:51
1
@Nathan Just use one dash beforeprefix. Didn't run into any other dependencies aside from curses.
– M M
May 4 '16 at 20:56
1
sudo apt install libncurses5-devon debian/ubuntu (using APT)
– bshea
Sep 21 '17 at 16:04
add a comment |
You will need to download the latest ncdu package from http://dev.yorhel.nl/ncdu with wget.
Navigate to a directory with write access, such as your home directory.
wget https://dev.yorhel.nl/download/ncdu-1.13.tar.gz
then extract the tarball, with:
tar -xzvf ncdu-1.13.tar.gz
this will create a new folder named ncdu-1.13. Enter that folder and execute:
./configure --prefix=/usr
If it can't find ncurses.h and the configure fails,
checking for ncurses.h... no
configure: error: required header file not found
you'll have to install curses library headers
sudo dnf install ncurses ncurses-devel
After installing the library, execute the configure step again.
Then run,
make
and
sudo make install
and you are done.
You can optionally remove the ncdu-1.13.tar.gz file and the directory where the source files were extracted as you don't need them anymore.
You will need to download the latest ncdu package from http://dev.yorhel.nl/ncdu with wget.
Navigate to a directory with write access, such as your home directory.
wget https://dev.yorhel.nl/download/ncdu-1.13.tar.gz
then extract the tarball, with:
tar -xzvf ncdu-1.13.tar.gz
this will create a new folder named ncdu-1.13. Enter that folder and execute:
./configure --prefix=/usr
If it can't find ncurses.h and the configure fails,
checking for ncurses.h... no
configure: error: required header file not found
you'll have to install curses library headers
sudo dnf install ncurses ncurses-devel
After installing the library, execute the configure step again.
Then run,
make
and
sudo make install
and you are done.
You can optionally remove the ncdu-1.13.tar.gz file and the directory where the source files were extracted as you don't need them anymore.
edited Nov 17 '18 at 12:43
Jochem Kuijpers
1431 gold badge3 silver badges11 bronze badges
1431 gold badge3 silver badges11 bronze badges
answered Feb 4 '14 at 15:07
ZachariasZacharias
2212 silver badges2 bronze badges
2212 silver badges2 bronze badges
// , Doesn't this require other dependencies?
– Nathan Basanese
Nov 26 '15 at 5:44
// , Also, I get the following error when I attempt./configure:[nbasanese@rhel022 ncdu-1.11]$ ./configure –-prefix='/usr'configure: error: invalid variable name: '–-prefix'
– Nathan Basanese
Nov 26 '15 at 5:51
1
@Nathan Just use one dash beforeprefix. Didn't run into any other dependencies aside from curses.
– M M
May 4 '16 at 20:56
1
sudo apt install libncurses5-devon debian/ubuntu (using APT)
– bshea
Sep 21 '17 at 16:04
add a comment |
// , Doesn't this require other dependencies?
– Nathan Basanese
Nov 26 '15 at 5:44
// , Also, I get the following error when I attempt./configure:[nbasanese@rhel022 ncdu-1.11]$ ./configure –-prefix='/usr'configure: error: invalid variable name: '–-prefix'
– Nathan Basanese
Nov 26 '15 at 5:51
1
@Nathan Just use one dash beforeprefix. Didn't run into any other dependencies aside from curses.
– M M
May 4 '16 at 20:56
1
sudo apt install libncurses5-devon debian/ubuntu (using APT)
– bshea
Sep 21 '17 at 16:04
// , Doesn't this require other dependencies?
– Nathan Basanese
Nov 26 '15 at 5:44
// , Doesn't this require other dependencies?
– Nathan Basanese
Nov 26 '15 at 5:44
// , Also, I get the following error when I attempt
./configure: [nbasanese@rhel022 ncdu-1.11]$ ./configure –-prefix='/usr' configure: error: invalid variable name: '–-prefix'– Nathan Basanese
Nov 26 '15 at 5:51
// , Also, I get the following error when I attempt
./configure: [nbasanese@rhel022 ncdu-1.11]$ ./configure –-prefix='/usr' configure: error: invalid variable name: '–-prefix'– Nathan Basanese
Nov 26 '15 at 5:51
1
1
@Nathan Just use one dash before
prefix. Didn't run into any other dependencies aside from curses.– M M
May 4 '16 at 20:56
@Nathan Just use one dash before
prefix. Didn't run into any other dependencies aside from curses.– M M
May 4 '16 at 20:56
1
1
sudo apt install libncurses5-dev on debian/ubuntu (using APT)– bshea
Sep 21 '17 at 16:04
sudo apt install libncurses5-dev on debian/ubuntu (using APT)– bshea
Sep 21 '17 at 16:04
add a comment |
If you are using Red Hat Enterprise Linux, I do not think ncdu is in the RHEL server repositories. I do not have a machine where I can check if it is in the workstation repositories, but I suspect it isn't. If it isn't, one option is the use EPEL (faq):
EPEL (Extra Packages for Enterprise
Linux) is a volunteer-based community
effort from the Fedora project to
create a repository of high-quality
add-on packages that complement the
Fedora-based Red Hat Enterprise Linux
(RHEL) and its compatible spinoffs,
such as CentOS and Scientific Linux.
ncdu does seem to be in the EPEL repositories intended to work with RHEL 4 and RHEL 5. Directions for how to use these repositories can be found here:
http://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F
Alternatively, you can always download the tool from the upstream website:
http://dev.yorhel.nl/ncdu
and follow the directions in the INSTALL file. However, this will require you to chase down dependencies and install the tools needed to build the project.
add a comment |
If you are using Red Hat Enterprise Linux, I do not think ncdu is in the RHEL server repositories. I do not have a machine where I can check if it is in the workstation repositories, but I suspect it isn't. If it isn't, one option is the use EPEL (faq):
EPEL (Extra Packages for Enterprise
Linux) is a volunteer-based community
effort from the Fedora project to
create a repository of high-quality
add-on packages that complement the
Fedora-based Red Hat Enterprise Linux
(RHEL) and its compatible spinoffs,
such as CentOS and Scientific Linux.
ncdu does seem to be in the EPEL repositories intended to work with RHEL 4 and RHEL 5. Directions for how to use these repositories can be found here:
http://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F
Alternatively, you can always download the tool from the upstream website:
http://dev.yorhel.nl/ncdu
and follow the directions in the INSTALL file. However, this will require you to chase down dependencies and install the tools needed to build the project.
add a comment |
If you are using Red Hat Enterprise Linux, I do not think ncdu is in the RHEL server repositories. I do not have a machine where I can check if it is in the workstation repositories, but I suspect it isn't. If it isn't, one option is the use EPEL (faq):
EPEL (Extra Packages for Enterprise
Linux) is a volunteer-based community
effort from the Fedora project to
create a repository of high-quality
add-on packages that complement the
Fedora-based Red Hat Enterprise Linux
(RHEL) and its compatible spinoffs,
such as CentOS and Scientific Linux.
ncdu does seem to be in the EPEL repositories intended to work with RHEL 4 and RHEL 5. Directions for how to use these repositories can be found here:
http://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F
Alternatively, you can always download the tool from the upstream website:
http://dev.yorhel.nl/ncdu
and follow the directions in the INSTALL file. However, this will require you to chase down dependencies and install the tools needed to build the project.
If you are using Red Hat Enterprise Linux, I do not think ncdu is in the RHEL server repositories. I do not have a machine where I can check if it is in the workstation repositories, but I suspect it isn't. If it isn't, one option is the use EPEL (faq):
EPEL (Extra Packages for Enterprise
Linux) is a volunteer-based community
effort from the Fedora project to
create a repository of high-quality
add-on packages that complement the
Fedora-based Red Hat Enterprise Linux
(RHEL) and its compatible spinoffs,
such as CentOS and Scientific Linux.
ncdu does seem to be in the EPEL repositories intended to work with RHEL 4 and RHEL 5. Directions for how to use these repositories can be found here:
http://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F
Alternatively, you can always download the tool from the upstream website:
http://dev.yorhel.nl/ncdu
and follow the directions in the INSTALL file. However, this will require you to chase down dependencies and install the tools needed to build the project.
edited 16 hours ago
ipkpjersi
1032 bronze badges
1032 bronze badges
answered Nov 12 '10 at 16:56
Steven DSteven D
34.1k9 gold badges99 silver badges108 bronze badges
34.1k9 gold badges99 silver badges108 bronze badges
add a comment |
add a comment |
First visit the below link and install the epel according to the OS type.
http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/
Once the EPEL repo is installed, ncdu can be installed with following command:
yum install ncdu
Note: The above command will work if you have RHEL Subscription / Preconfigured with yum install.
To use ncdu, enter the following command:
ncdu
add a comment |
First visit the below link and install the epel according to the OS type.
http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/
Once the EPEL repo is installed, ncdu can be installed with following command:
yum install ncdu
Note: The above command will work if you have RHEL Subscription / Preconfigured with yum install.
To use ncdu, enter the following command:
ncdu
add a comment |
First visit the below link and install the epel according to the OS type.
http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/
Once the EPEL repo is installed, ncdu can be installed with following command:
yum install ncdu
Note: The above command will work if you have RHEL Subscription / Preconfigured with yum install.
To use ncdu, enter the following command:
ncdu
First visit the below link and install the epel according to the OS type.
http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/
Once the EPEL repo is installed, ncdu can be installed with following command:
yum install ncdu
Note: The above command will work if you have RHEL Subscription / Preconfigured with yum install.
To use ncdu, enter the following command:
ncdu
edited Apr 6 at 0:16
Rui F Ribeiro
41.2k16 gold badges94 silver badges156 bronze badges
41.2k16 gold badges94 silver badges156 bronze badges
answered Apr 21 '17 at 13:46
M.S.ArunM.S.Arun
1541 silver badge7 bronze badges
1541 silver badge7 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f3979%2fhow-can-i-install-ncdu-on-red-hat%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
you might want to ... put more in the text before you get modded down... like explain further what difficulties you're having... e.g. is there a repo, does it have to built from source...
– xenoterracide
Nov 12 '10 at 13:33
@xeno - there you go.
– ripper234
Nov 12 '10 at 13:37
1
Curious; from what I can tell, it's in the [repositories][1]. [1]: admin.fedoraproject.org/pkgdb/acls/name/ncdu
– Shawn J. Goff
Nov 12 '10 at 14:57