[GH-ISSUE #323] Cannot install #140

Closed
opened 2026-06-08 11:25:51 +03:00 by zhus · 2 comments
Owner

Originally created by @nklamann on GitHub (Apr 21, 2023).
Original GitHub issue: https://github.com/bootandy/dust/issues/323

Hello all,
i work under debian bullseye and tried the following

downloaded dust-v0.8.5-i686-unknown-linux-gnu.tar.gz extracted and moved dust to /usr/local/bin

result:

root@grossglockner:~# dust
-bash: /usr/local/bin/dust: No such file or directory

root@grossglockner:~# ls -al /usr/local/bin/dust
-rwxr-xr-x 1 root root 1963604 Mar 14 09:29 /usr/local/bin/dust

I tried cargo and got

root@grossglockner:~# cargo install du-dust
    Updating crates.io index
  Downloaded du-dust v0.8.5
error: failed to parse manifest at `/root/.cargo/registry/src/github.com-1ecc6299db9ec823/du-dust-0.8.5/Cargo.toml`

Caused by:
  invalid type: unit variant, expected string only for key `profile.release.strip`
root@grossglockner:~# cargo install du-dust
    Updating crates.io index
error: failed to download `du-dust v0.8.5`

Caused by:
  unable to get packages from source

Caused by:
  failed to parse manifest at `/root/.cargo/registry/src/github.com-1ecc6299db9ec823/du-dust-0.8.5/Cargo.toml`

Caused by:
  invalid type: unit variant, expected string only for key `profile.release.strip`

How can I proceed ?

Thank you !

Norbert

Originally created by @nklamann on GitHub (Apr 21, 2023). Original GitHub issue: https://github.com/bootandy/dust/issues/323 Hello all, i work under debian bullseye and tried the following downloaded `dust-v0.8.5-i686-unknown-linux-gnu.tar.gz` extracted and moved `dust` to `/usr/local/bin` result: ``` root@grossglockner:~# dust -bash: /usr/local/bin/dust: No such file or directory root@grossglockner:~# ls -al /usr/local/bin/dust -rwxr-xr-x 1 root root 1963604 Mar 14 09:29 /usr/local/bin/dust ``` I tried cargo and got ``` root@grossglockner:~# cargo install du-dust Updating crates.io index Downloaded du-dust v0.8.5 error: failed to parse manifest at `/root/.cargo/registry/src/github.com-1ecc6299db9ec823/du-dust-0.8.5/Cargo.toml` Caused by: invalid type: unit variant, expected string only for key `profile.release.strip` root@grossglockner:~# cargo install du-dust Updating crates.io index error: failed to download `du-dust v0.8.5` Caused by: unable to get packages from source Caused by: failed to parse manifest at `/root/.cargo/registry/src/github.com-1ecc6299db9ec823/du-dust-0.8.5/Cargo.toml` Caused by: invalid type: unit variant, expected string only for key `profile.release.strip` ``` How can I proceed ? Thank you ! Norbert
zhus closed this issue 2026-06-08 11:25:51 +03:00
Author
Owner

@bootandy commented on GitHub (May 5, 2023):

In the first example what happens if you put the full path onto the shell prompt:
$ /usr/local/bin/dust

For the cargo install, maybe try an older version like this:
$ cargo install --version 0.8.4 du-dust

But I'm not sure, this is unlikely to be a dust problem and more likely to be a debian thing.

<!-- gh-comment-id:1536677455 --> @bootandy commented on GitHub (May 5, 2023): In the first example what happens if you put the full path onto the shell prompt: $ /usr/local/bin/dust For the cargo install, maybe try an older version like this: $ cargo install --version 0.8.4 du-dust But I'm not sure, this is unlikely to be a dust problem and more likely to be a debian thing.
Author
Owner

@nklamann commented on GitHub (May 9, 2023):

what happens if you put the full path onto the shell prompt:
$ /usr/local/bin/dust

Just the same :

root@grossglockner:/storage/local# /usr/local/bin/dust
-bash: /usr/local/bin/dust: No such file or directory

Installing the other version dow not work too, unfortunately:

root@grossglockner:/storage/local# cargo install --version 0.8.4 du-dust
  Downloaded du-dust v0.8.4
    Updating crates.io index
error: failed to download `du-dust v0.8.4`

Caused by:
  unable to get packages from source

Caused by:
  failed to parse manifest at `/root/.cargo/registry/src/github.com-1ecc6299db9ec823/du-dust-0.8.4/Cargo.toml`

Caused by:
  invalid type: unit variant, expected string only for key `profile.release.strip`

<!-- gh-comment-id:1539624609 --> @nklamann commented on GitHub (May 9, 2023): > what happens if you put the full path onto the shell prompt: $ /usr/local/bin/dust Just the same : ``` root@grossglockner:/storage/local# /usr/local/bin/dust -bash: /usr/local/bin/dust: No such file or directory ``` Installing the other version dow not work too, unfortunately: ``` root@grossglockner:/storage/local# cargo install --version 0.8.4 du-dust Downloaded du-dust v0.8.4 Updating crates.io index error: failed to download `du-dust v0.8.4` Caused by: unable to get packages from source Caused by: failed to parse manifest at `/root/.cargo/registry/src/github.com-1ecc6299db9ec823/du-dust-0.8.4/Cargo.toml` Caused by: invalid type: unit variant, expected string only for key `profile.release.strip` ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: bootandy/archived-dust#140