You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trying to run setup file in the latest version of Raspian please read following conversation i had on Core forum.
Ok I setup new sd card with latest NOOBS rebooted pi went to Wyolm web sit downloaded wget https://github.com/wyolum/alamode/raw/master/bundles/alamode-setup.tar.gz
that worked fine
then pi@raspberrypi ~ $ tar -xvzf alamode-setup.tar.gz that works fine then pi@raspberrypi ~ $ sudo ./setup I get “sudo: ./setup: command not found”
I then opened pi@raspberrpi~/alamode-setup $ sudo ./setup [/code] and got "sudo: unable to execute ./setup: no such file or directory
I had the same issue. Somebody has been editing the file in their Windows environment without turning off CRLF (when you hit enter it adds carriage+return, line-feed). Linux only has the LF and tries to interpret the CR as a part of the command.
The easy way to fix it is to install the program dos2unix as follows:
Copy to clipboard
sudo apt-get install dos2unix
Once you’ve installed dos2unix type the commands as follows:
Copy to clipboard
wget https://github.com/wyolum/alamode/raw/master/bundles/alamode-setup.tar.gz
tar -xvzf alamode-setup.tar.gz
cd alamode-setup
dos2unix setup
chmod +x setup
sudo ./setup
Daryl87976
14h
Thanks for the help Shaun but I followed your instruction all work good until
sudo ./setup
I got sed: can't read /etc/inittab:No such file or directory
rm: cannot remove '/etc/inittabbk': No such file or directory
The text was updated successfully, but these errors were encountered:
trying to run setup file in the latest version of Raspian please read following conversation i had on Core forum.
Ok I setup new sd card with latest NOOBS rebooted pi went to Wyolm web sit downloaded wget https://github.com/wyolum/alamode/raw/master/bundles/alamode-setup.tar.gz
that worked fine
then pi@raspberrypi ~ $ tar -xvzf alamode-setup.tar.gz that works fine then pi@raspberrypi ~ $ sudo ./setup I get “sudo: ./setup: command not found”
I then opened pi@raspberrpi~/alamode-setup $ sudo ./setup [/code] and got "sudo: unable to execute ./setup: no such file or directory
I had the same issue. Somebody has been editing the file in their Windows environment without turning off CRLF (when you hit enter it adds carriage+return, line-feed). Linux only has the LF and tries to interpret the CR as a part of the command.
The easy way to fix it is to install the program dos2unix as follows:
Copy to clipboard
sudo apt-get install dos2unix
Once you’ve installed dos2unix type the commands as follows:
Copy to clipboard
wget https://github.com/wyolum/alamode/raw/master/bundles/alamode-setup.tar.gz
tar -xvzf alamode-setup.tar.gz
cd alamode-setup
dos2unix setup
chmod +x setup
sudo ./setup
Daryl87976
14h
Thanks for the help Shaun but I followed your instruction all work good until
sudo ./setup
I got sed: can't read /etc/inittab:No such file or directory
rm: cannot remove '/etc/inittabbk': No such file or directory
The text was updated successfully, but these errors were encountered: