You are not logged in.
Pages: 1
Did someone remove wget from the live iso?
Offline
I don't know about removing it, but it's in the extra repo, which means it won't be on the iso. However, you can install it into the live environment if necessary.
Offline
Have you tried curl? Chances are it will do what you want to do.
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
Installing wget just so I can download my home brewed arch installer is not cool.
I'll give curl a try
Thanks
Offline
If you have your own installer, you should really create a custom iso that includes it.
Offline
If you have your own installer, you should really create a custom iso that includes it.
That's not a bad idea, but since the installer is made to be usable for anyone I prefer to download/execute it from the latest vanilla iso
Offline
curl is just as easy to use as wget:
curl http://example.com/install.sh > install.sh
You can even execute the installer without creating a file:
curl http://example.com/install.sh | bash
| alias CUTF='LANG=en_XX.UTF-8@POSIX ' |
Offline
...
You can even execute the installer without creating a file:curl http://example.com/install.sh | bash
Nice
Offline
curl is just as easy to use as wget:
curl http://example.com/install.sh > install.sh
You can even execute the installer without creating a file:
curl http://example.com/install.sh | bash
I just realized that when piping my perl curses script into bash, input from the keyboard seems to get lost.
You know any trick I can use to make the keyboard work?
Currently I'm using two commands:
# https://raw.github.com/corebob/archibal … /kickstart > kickstart
# bash kickstart
This works fine but has a lesser coolness factor
Offline
It isn't as cool as:
curl https://raw.github.com/lithid/test/master/test-script.sh |bash
This works well though:
bash <(curl https://raw.github.com/lithid/test/master/test-script.sh)
Last edited by mrlithid (2012-09-22 12:04:09)
Offline
Pages: 1