bash: wget: command not found
up vote
2
down vote
favorite
I'm using ASUS-Chromebook-Flip-C302CA
/ Google Chrome OS
- Version 65.0.3325.35 (Official Build) dev (64-bit)
and I'm trying to follow Visual Studio Code for Chromebooks and Raspberry Pi, yet failing to execute last step with following error:
chronos@localhost ~ $ . <( wget -O - https://code.headmelted.com/installers/chromebook.sh )
bash: wget: command not found
chronos@localhost ~ $
wget
:
chronos@localhost ~ $ whereis wget
wget:
chronos@localhost ~ $ which wget
which: no wget in (/usr/local/bin:/usr/bin:/bin:/opt/bin)
chronos@localhost ~ $ find / -name wget >/dev/null 2>&1
chronos@localhost ~ $
Please advise.
wget chrome-book chrome-os
add a comment |
up vote
2
down vote
favorite
I'm using ASUS-Chromebook-Flip-C302CA
/ Google Chrome OS
- Version 65.0.3325.35 (Official Build) dev (64-bit)
and I'm trying to follow Visual Studio Code for Chromebooks and Raspberry Pi, yet failing to execute last step with following error:
chronos@localhost ~ $ . <( wget -O - https://code.headmelted.com/installers/chromebook.sh )
bash: wget: command not found
chronos@localhost ~ $
wget
:
chronos@localhost ~ $ whereis wget
wget:
chronos@localhost ~ $ which wget
which: no wget in (/usr/local/bin:/usr/bin:/bin:/opt/bin)
chronos@localhost ~ $ find / -name wget >/dev/null 2>&1
chronos@localhost ~ $
Please advise.
wget chrome-book chrome-os
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I'm using ASUS-Chromebook-Flip-C302CA
/ Google Chrome OS
- Version 65.0.3325.35 (Official Build) dev (64-bit)
and I'm trying to follow Visual Studio Code for Chromebooks and Raspberry Pi, yet failing to execute last step with following error:
chronos@localhost ~ $ . <( wget -O - https://code.headmelted.com/installers/chromebook.sh )
bash: wget: command not found
chronos@localhost ~ $
wget
:
chronos@localhost ~ $ whereis wget
wget:
chronos@localhost ~ $ which wget
which: no wget in (/usr/local/bin:/usr/bin:/bin:/opt/bin)
chronos@localhost ~ $ find / -name wget >/dev/null 2>&1
chronos@localhost ~ $
Please advise.
wget chrome-book chrome-os
I'm using ASUS-Chromebook-Flip-C302CA
/ Google Chrome OS
- Version 65.0.3325.35 (Official Build) dev (64-bit)
and I'm trying to follow Visual Studio Code for Chromebooks and Raspberry Pi, yet failing to execute last step with following error:
chronos@localhost ~ $ . <( wget -O - https://code.headmelted.com/installers/chromebook.sh )
bash: wget: command not found
chronos@localhost ~ $
wget
:
chronos@localhost ~ $ whereis wget
wget:
chronos@localhost ~ $ which wget
which: no wget in (/usr/local/bin:/usr/bin:/bin:/opt/bin)
chronos@localhost ~ $ find / -name wget >/dev/null 2>&1
chronos@localhost ~ $
Please advise.
wget chrome-book chrome-os
wget chrome-book chrome-os
edited Feb 17 at 22:43
asked Feb 4 at 19:21
alexus
4531622
4531622
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
alternative:
curl
- transfer a URL
. <( curl --silent https://code.headmelted.com/installers/chromebook.sh )
I have no idea, what is running on the chromebooks, but most probably there is some type of a package manager. You should simply install the package containing wget. If it is a debian-based distribution, then the command isapt-get install wget
.
– peterh
Feb 18 at 0:42
1
@peterh There is no package manager on Chromebooks or ChromeOS based devices. It's not a traditional Linux distribution like Debian or OpenWrt. You install the latest update for the image that you are running and may be Android apps but that's it. Tinkering and poking around the filesystem is allowed but they got rid of everything else that could introduce more complexity and possible breakage.
– LiveWireBT
Feb 18 at 10:25
@LiveWireBT ... Behold Chrome Brew, the package manager for ChromeOS: -github.com/skycocker/chromebrew
– jeffmcneill
Mar 12 at 15:02
@jeffmcneill Thanks I think I read about this somewhere before but didn't invest any time looking for the project site. It may be useful in some cases but ChromeOS devices are still intended as appliances from my point of view (though I do run a full Linux on mine).
– LiveWireBT
Mar 12 at 15:16
1
@LiveWireBT it appears that there is a bit of segmenting in ChromeOS these days, with a variety of more capable devices (both ARM and Intel processors). They still like to limit the ram in most of these. In any case, shell apps generally don't take a lot of resources. I find I can install nearly all command line apps that I generally run on servers and ran on a now-dead Macbook Air. There's been a lot of progress on these devices over the years, both hardware and software. ChromeOS came out of Gentoo, hence the "not a traditional distribution" under the hood, but that also means more flexible.
– jeffmcneill
Mar 13 at 9:34
|
show 1 more comment
up vote
3
down vote
wget
has been removed from recent versions of ChromeOS
which includes what's installed on the `ASUS-Chromebook-Flip-C302CA'.
You can use the curl
command to download the files instead.
Any example of downloading files using curl?
– Bagas Sanjaya
Feb 5 at 4:08
Check theman
page forcurl
. You can start withcurl -o download.rpm http://www.website.com/file.rpm
– Nasir Riley
Feb 5 at 4:25
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
alternative:
curl
- transfer a URL
. <( curl --silent https://code.headmelted.com/installers/chromebook.sh )
I have no idea, what is running on the chromebooks, but most probably there is some type of a package manager. You should simply install the package containing wget. If it is a debian-based distribution, then the command isapt-get install wget
.
– peterh
Feb 18 at 0:42
1
@peterh There is no package manager on Chromebooks or ChromeOS based devices. It's not a traditional Linux distribution like Debian or OpenWrt. You install the latest update for the image that you are running and may be Android apps but that's it. Tinkering and poking around the filesystem is allowed but they got rid of everything else that could introduce more complexity and possible breakage.
– LiveWireBT
Feb 18 at 10:25
@LiveWireBT ... Behold Chrome Brew, the package manager for ChromeOS: -github.com/skycocker/chromebrew
– jeffmcneill
Mar 12 at 15:02
@jeffmcneill Thanks I think I read about this somewhere before but didn't invest any time looking for the project site. It may be useful in some cases but ChromeOS devices are still intended as appliances from my point of view (though I do run a full Linux on mine).
– LiveWireBT
Mar 12 at 15:16
1
@LiveWireBT it appears that there is a bit of segmenting in ChromeOS these days, with a variety of more capable devices (both ARM and Intel processors). They still like to limit the ram in most of these. In any case, shell apps generally don't take a lot of resources. I find I can install nearly all command line apps that I generally run on servers and ran on a now-dead Macbook Air. There's been a lot of progress on these devices over the years, both hardware and software. ChromeOS came out of Gentoo, hence the "not a traditional distribution" under the hood, but that also means more flexible.
– jeffmcneill
Mar 13 at 9:34
|
show 1 more comment
up vote
4
down vote
accepted
alternative:
curl
- transfer a URL
. <( curl --silent https://code.headmelted.com/installers/chromebook.sh )
I have no idea, what is running on the chromebooks, but most probably there is some type of a package manager. You should simply install the package containing wget. If it is a debian-based distribution, then the command isapt-get install wget
.
– peterh
Feb 18 at 0:42
1
@peterh There is no package manager on Chromebooks or ChromeOS based devices. It's not a traditional Linux distribution like Debian or OpenWrt. You install the latest update for the image that you are running and may be Android apps but that's it. Tinkering and poking around the filesystem is allowed but they got rid of everything else that could introduce more complexity and possible breakage.
– LiveWireBT
Feb 18 at 10:25
@LiveWireBT ... Behold Chrome Brew, the package manager for ChromeOS: -github.com/skycocker/chromebrew
– jeffmcneill
Mar 12 at 15:02
@jeffmcneill Thanks I think I read about this somewhere before but didn't invest any time looking for the project site. It may be useful in some cases but ChromeOS devices are still intended as appliances from my point of view (though I do run a full Linux on mine).
– LiveWireBT
Mar 12 at 15:16
1
@LiveWireBT it appears that there is a bit of segmenting in ChromeOS these days, with a variety of more capable devices (both ARM and Intel processors). They still like to limit the ram in most of these. In any case, shell apps generally don't take a lot of resources. I find I can install nearly all command line apps that I generally run on servers and ran on a now-dead Macbook Air. There's been a lot of progress on these devices over the years, both hardware and software. ChromeOS came out of Gentoo, hence the "not a traditional distribution" under the hood, but that also means more flexible.
– jeffmcneill
Mar 13 at 9:34
|
show 1 more comment
up vote
4
down vote
accepted
up vote
4
down vote
accepted
alternative:
curl
- transfer a URL
. <( curl --silent https://code.headmelted.com/installers/chromebook.sh )
alternative:
curl
- transfer a URL
. <( curl --silent https://code.headmelted.com/installers/chromebook.sh )
answered Feb 17 at 23:34
alexus
4531622
4531622
I have no idea, what is running on the chromebooks, but most probably there is some type of a package manager. You should simply install the package containing wget. If it is a debian-based distribution, then the command isapt-get install wget
.
– peterh
Feb 18 at 0:42
1
@peterh There is no package manager on Chromebooks or ChromeOS based devices. It's not a traditional Linux distribution like Debian or OpenWrt. You install the latest update for the image that you are running and may be Android apps but that's it. Tinkering and poking around the filesystem is allowed but they got rid of everything else that could introduce more complexity and possible breakage.
– LiveWireBT
Feb 18 at 10:25
@LiveWireBT ... Behold Chrome Brew, the package manager for ChromeOS: -github.com/skycocker/chromebrew
– jeffmcneill
Mar 12 at 15:02
@jeffmcneill Thanks I think I read about this somewhere before but didn't invest any time looking for the project site. It may be useful in some cases but ChromeOS devices are still intended as appliances from my point of view (though I do run a full Linux on mine).
– LiveWireBT
Mar 12 at 15:16
1
@LiveWireBT it appears that there is a bit of segmenting in ChromeOS these days, with a variety of more capable devices (both ARM and Intel processors). They still like to limit the ram in most of these. In any case, shell apps generally don't take a lot of resources. I find I can install nearly all command line apps that I generally run on servers and ran on a now-dead Macbook Air. There's been a lot of progress on these devices over the years, both hardware and software. ChromeOS came out of Gentoo, hence the "not a traditional distribution" under the hood, but that also means more flexible.
– jeffmcneill
Mar 13 at 9:34
|
show 1 more comment
I have no idea, what is running on the chromebooks, but most probably there is some type of a package manager. You should simply install the package containing wget. If it is a debian-based distribution, then the command isapt-get install wget
.
– peterh
Feb 18 at 0:42
1
@peterh There is no package manager on Chromebooks or ChromeOS based devices. It's not a traditional Linux distribution like Debian or OpenWrt. You install the latest update for the image that you are running and may be Android apps but that's it. Tinkering and poking around the filesystem is allowed but they got rid of everything else that could introduce more complexity and possible breakage.
– LiveWireBT
Feb 18 at 10:25
@LiveWireBT ... Behold Chrome Brew, the package manager for ChromeOS: -github.com/skycocker/chromebrew
– jeffmcneill
Mar 12 at 15:02
@jeffmcneill Thanks I think I read about this somewhere before but didn't invest any time looking for the project site. It may be useful in some cases but ChromeOS devices are still intended as appliances from my point of view (though I do run a full Linux on mine).
– LiveWireBT
Mar 12 at 15:16
1
@LiveWireBT it appears that there is a bit of segmenting in ChromeOS these days, with a variety of more capable devices (both ARM and Intel processors). They still like to limit the ram in most of these. In any case, shell apps generally don't take a lot of resources. I find I can install nearly all command line apps that I generally run on servers and ran on a now-dead Macbook Air. There's been a lot of progress on these devices over the years, both hardware and software. ChromeOS came out of Gentoo, hence the "not a traditional distribution" under the hood, but that also means more flexible.
– jeffmcneill
Mar 13 at 9:34
I have no idea, what is running on the chromebooks, but most probably there is some type of a package manager. You should simply install the package containing wget. If it is a debian-based distribution, then the command is
apt-get install wget
.– peterh
Feb 18 at 0:42
I have no idea, what is running on the chromebooks, but most probably there is some type of a package manager. You should simply install the package containing wget. If it is a debian-based distribution, then the command is
apt-get install wget
.– peterh
Feb 18 at 0:42
1
1
@peterh There is no package manager on Chromebooks or ChromeOS based devices. It's not a traditional Linux distribution like Debian or OpenWrt. You install the latest update for the image that you are running and may be Android apps but that's it. Tinkering and poking around the filesystem is allowed but they got rid of everything else that could introduce more complexity and possible breakage.
– LiveWireBT
Feb 18 at 10:25
@peterh There is no package manager on Chromebooks or ChromeOS based devices. It's not a traditional Linux distribution like Debian or OpenWrt. You install the latest update for the image that you are running and may be Android apps but that's it. Tinkering and poking around the filesystem is allowed but they got rid of everything else that could introduce more complexity and possible breakage.
– LiveWireBT
Feb 18 at 10:25
@LiveWireBT ... Behold Chrome Brew, the package manager for ChromeOS: -github.com/skycocker/chromebrew
– jeffmcneill
Mar 12 at 15:02
@LiveWireBT ... Behold Chrome Brew, the package manager for ChromeOS: -github.com/skycocker/chromebrew
– jeffmcneill
Mar 12 at 15:02
@jeffmcneill Thanks I think I read about this somewhere before but didn't invest any time looking for the project site. It may be useful in some cases but ChromeOS devices are still intended as appliances from my point of view (though I do run a full Linux on mine).
– LiveWireBT
Mar 12 at 15:16
@jeffmcneill Thanks I think I read about this somewhere before but didn't invest any time looking for the project site. It may be useful in some cases but ChromeOS devices are still intended as appliances from my point of view (though I do run a full Linux on mine).
– LiveWireBT
Mar 12 at 15:16
1
1
@LiveWireBT it appears that there is a bit of segmenting in ChromeOS these days, with a variety of more capable devices (both ARM and Intel processors). They still like to limit the ram in most of these. In any case, shell apps generally don't take a lot of resources. I find I can install nearly all command line apps that I generally run on servers and ran on a now-dead Macbook Air. There's been a lot of progress on these devices over the years, both hardware and software. ChromeOS came out of Gentoo, hence the "not a traditional distribution" under the hood, but that also means more flexible.
– jeffmcneill
Mar 13 at 9:34
@LiveWireBT it appears that there is a bit of segmenting in ChromeOS these days, with a variety of more capable devices (both ARM and Intel processors). They still like to limit the ram in most of these. In any case, shell apps generally don't take a lot of resources. I find I can install nearly all command line apps that I generally run on servers and ran on a now-dead Macbook Air. There's been a lot of progress on these devices over the years, both hardware and software. ChromeOS came out of Gentoo, hence the "not a traditional distribution" under the hood, but that also means more flexible.
– jeffmcneill
Mar 13 at 9:34
|
show 1 more comment
up vote
3
down vote
wget
has been removed from recent versions of ChromeOS
which includes what's installed on the `ASUS-Chromebook-Flip-C302CA'.
You can use the curl
command to download the files instead.
Any example of downloading files using curl?
– Bagas Sanjaya
Feb 5 at 4:08
Check theman
page forcurl
. You can start withcurl -o download.rpm http://www.website.com/file.rpm
– Nasir Riley
Feb 5 at 4:25
add a comment |
up vote
3
down vote
wget
has been removed from recent versions of ChromeOS
which includes what's installed on the `ASUS-Chromebook-Flip-C302CA'.
You can use the curl
command to download the files instead.
Any example of downloading files using curl?
– Bagas Sanjaya
Feb 5 at 4:08
Check theman
page forcurl
. You can start withcurl -o download.rpm http://www.website.com/file.rpm
– Nasir Riley
Feb 5 at 4:25
add a comment |
up vote
3
down vote
up vote
3
down vote
wget
has been removed from recent versions of ChromeOS
which includes what's installed on the `ASUS-Chromebook-Flip-C302CA'.
You can use the curl
command to download the files instead.
wget
has been removed from recent versions of ChromeOS
which includes what's installed on the `ASUS-Chromebook-Flip-C302CA'.
You can use the curl
command to download the files instead.
answered Feb 4 at 19:32
Nasir Riley
2,176239
2,176239
Any example of downloading files using curl?
– Bagas Sanjaya
Feb 5 at 4:08
Check theman
page forcurl
. You can start withcurl -o download.rpm http://www.website.com/file.rpm
– Nasir Riley
Feb 5 at 4:25
add a comment |
Any example of downloading files using curl?
– Bagas Sanjaya
Feb 5 at 4:08
Check theman
page forcurl
. You can start withcurl -o download.rpm http://www.website.com/file.rpm
– Nasir Riley
Feb 5 at 4:25
Any example of downloading files using curl?
– Bagas Sanjaya
Feb 5 at 4:08
Any example of downloading files using curl?
– Bagas Sanjaya
Feb 5 at 4:08
Check the
man
page for curl
. You can start with curl -o download.rpm http://www.website.com/file.rpm
– Nasir Riley
Feb 5 at 4:25
Check the
man
page for curl
. You can start with curl -o download.rpm http://www.website.com/file.rpm
– Nasir Riley
Feb 5 at 4:25
add a comment |
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%2f421867%2fbash-wget-command-not-found%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