On 8/31/24 23:16, Timothy M Butterworth wrote:
On Sat, Aug 31, 2024 at 11:15 PM David Christensen wrote:On 8/30/24 20:48, John Conover wrote:What does a "debian ... amd64-netinst.iso" do with an .iso?When I input that string into a computer running Debian, it produces an error message: 2024-08-31 13:07:57 dpchrist@laalaa ~ $ echo $PS1 ; cat /etc/debian_version ; uname -a \n\D{%Y-%m-%d %H:%M:%S} ${USER}@\h \w\n\$ 11.10 Linux laalaa 5.10.0-32-amd64 #1 SMP Debian 5.10.223-1 (2024-08-10) x86_64 GNU/Linux 2024-08-31 13:17:14 dpchrist@laalaa ~ $ debian ... amd64-netinst.iso bash: debian: command not foundThe iso file is not a command that you run on a Debian system.
Yes -- but the command in the given string is "debian", which is not a valid command.
If you have cd'd to the present working directory that the iso is located in you still have to use "./" ./ tells the OS that the file is located in the present working directory pwd.
"./" is required when a command is in the current working directory and the current working directory is not in the PATH environment variable. "./" is not required for file arguments in the current working directory:
2024-09-01 01:11:28 dpchrist@laalaa ~ $ echo 'hello, world!' > hello.txt 2024-09-01 01:11:37 dpchrist@laalaa ~ $ echo 'cat $@' > foo 2024-09-01 01:11:43 dpchrist@laalaa ~ $ chmod +x foo 2024-09-01 01:11:48 dpchrist@laalaa ~ $ ./foo hello.txt hello, world! David