Quote Originally Posted by el bandido View Post
Welcome to Legit!

You need to execute the blindscan binary in /usr/bin to make this command work:
cd /usr/bin
./blindscan --start=950 --stop=1550 --min=1 --max=60 --slot=0 --i2c=2 --vertical

This command will have to be ran twice, once for horizontal, then make the needed command line changes and run it again for vertical.
Something like this:
cd /usr/bin
./blindscan --start=950 --stop=1550 --min=1 --max=60 --slot=0 --i2c=2
./blindscan --start=950 --stop=1550 --min=1 --max=60 --slot=0 --i2c=2 --vertical

These commands will return whatever is found in the terminal. Some lnb types will work OK while others will need a bit of math to make the transponder frequencies read correctly. The correct math may be found in the blindscan plugin (if needed).
Thanks for the help! I think part of the issue is that I had the receiver in "standby" when I was running those commands. When I have the receiver GUI on and have it tuned to a program, I get output from blindscan. Do you know if there is a way to have that work, without needing to have the GUI up or a program tuned? I also noticed that blindscan wasn't able to differentiate between vertical and horizontal (I assume that's because I had a program from a horizontal transponder tuned while running the scan). Here's an example on 103W Ku:

Code:
root@osmio4kplus:/usr/bin# ./blindscan --start=950 --stop=1550 --min=1 --max=60 --slot=0 --i2c=2
OK HORIZONTAL 10708000 1013000 DVB-S INVERSION_AUTO PILOT_OFF FEC_AUTO QPSK ROLLOFF_35 1 -1 0
OK HORIZONTAL 10760000 29999000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_5_6 8PSK ROLLOFF_35 1 -1 0
OK HORIZONTAL 10880000 30002000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_5_6 8PSK ROLLOFF_35 1 -1 0
OK HORIZONTAL 10911000 4600000 DVB-S2 INVERSION_AUTO PILOT_OFF FEC_3_4 8PSK ROLLOFF_35 1 -1 0
OK HORIZONTAL 10929000 4600000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_3_4 8PSK ROLLOFF_35 1 -1 0
OK HORIZONTAL 10935000 4600000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_3_4 8PSK ROLLOFF_35 1 -1 0
OK HORIZONTAL 11080000 29968000 DVB-S2 INVERSION_AUTO PILOT_OFF FEC_5_6 8PSK ROLLOFF_35 1 -1 0
OK HORIZONTAL 11120000 29999000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_5_6 8PSK ROLLOFF_35 1 -1 0
root@osmio4kplus:/usr/bin# ./blindscan --start=950 --stop=1550 --min=1 --max=60 --slot=0 --i2c=2 --vertical
OK VERTICAL 10708000 1013000 DVB-S INVERSION_AUTO PILOT_OFF FEC_AUTO QPSK ROLLOFF_35 1 -1 0
OK VERTICAL 10760000 29997000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_5_6 8PSK ROLLOFF_35 1 -1 0
OK VERTICAL 10880000 30002000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_5_6 8PSK ROLLOFF_35 1 -1 0
OK VERTICAL 10911000 4600000 DVB-S2 INVERSION_AUTO PILOT_OFF FEC_3_4 8PSK ROLLOFF_35 1 -1 0
OK VERTICAL 10929000 4600000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_3_4 8PSK ROLLOFF_35 1 -1 0
OK VERTICAL 10935000 4600000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_3_4 8PSK ROLLOFF_35 1 -1 0
OK VERTICAL 11080000 29971000 DVB-S2 INVERSION_AUTO PILOT_OFF FEC_5_6 8PSK ROLLOFF_35 1 -1 0
OK VERTICAL 11120000 29999000 DVB-S2 INVERSION_AUTO PILOT_ON FEC_5_6 8PSK ROLLOFF_35 1 -1 0
Thanks a lot!