You detect that the Pi Noir V2 camera take pictures in a pink color mask for day pictures.
Solution:
It's fixed after execute the next command:
sudo vcdbg set awb_mode 0
Source:
https://github.com/raspberrypi/firmware/issues/1167
Tips, information and links for using a Raspberry PI thinking only with the command line console, NO graphic editor ¡¡¡
sudo vcdbg set awb_mode 0
# manual edition of the filesudo nanosudo nano /etc/wpa_supplicant/wpa_supplicant.conf
# launch the config setup toolsudo raspi-config
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdevupdate_config=1country=<Insert 2 letter ISO 3166-1 country code here>network={ssid="<Name of your wireless LAN>"psk="<Password for your wireless LAN>"}
"unable to execute /bin/ls: Argument list too long"this is because the sentence is too long because linux can not hold all content in memory if the folder have an huge amount of data.
sudo dpkg-reconfigure tzdata
sudo ssh hostname/ipaddress
sudo ssh user@hostname
sudo exit
sudo apt-get install nfs-common -y
sudo mkdir -p /media/MyUSB/
sudo chown -R pi:pi /media/MyUSB/
sudo mount serveripaddress:/remotefolder /media/MyUSB/
sudo nano /etc/fstab
remoteserveripaddress:/remote/folder/ /media/MyUSB nfs rw 0 0
sudo fdisk -l2.- Create a shared forlder.
sudo mkdir /media/MyUSB
sudo chmod 777 /media/MyUSB
sudo nano /etc/fstabAdd one line to configure your USB disk, somethink like:
/dev/stda /media/MyUSB vfat rw 0 0/dev/stda path to the USB sick
sudo mount -a
sudo df
umount /dev/stdaNotes: