How to test that your microphone is working, using pulseaudio:
pactl load-module module-loopback latency_msec=1
To disable it again:
pactl unload-module module-loopback
Thanks to: https://askubuntu.com/a/262297
How to test that your microphone is working, using pulseaudio:
pactl load-module module-loopback latency_msec=1
To disable it again:
pactl unload-module module-loopback
Thanks to: https://askubuntu.com/a/262297
This snippet works for the Iphone image/movie files in format: YY-MM-DD HH24-MI-SS NNNN.ext
Then, to overwrite with EXIF information from JPEG files:
exiv2 -T rename *.jpg
Useful snippet for some of the Iphone files/movies on my disk:
Identify broken symbolic links:
find . -xtype l
To delete as well:
find . -xtype l -delete
Use rdfind tool from Debian repo.
To find duplicate files in directories dir1 (and dir2) with results.txt output file produced:
rdfind dir1 [dir2]
To test:
rdfind -n true -deleteduplicates true dir1 dir2
To delete duplicates:
rdfind -deleteduplicates true dir1 dir2
Oct 4 06:54:13 atom2 upsmon[1785]: Poll UPS [eaton3s@localhost] failed - Data stale
Oct 4 06:54:16 atom2 kernel: [934148.871714] usb 1-5.2: device descriptor read/64, error -110
Oct 4 06:54:16 atom2 kernel: [934149.047613] usb 1-5.2: new low-speed USB device number 5 using xhci_hcd
Oct 4 06:54:18 atom2 upsmon[1785]: Poll UPS [eaton3s@localhost] failed - Data stale
What I need to do now is not only restart nut but also unload the xhci_hcd module:
/etc/init.d/nut-client stop
/etc/init.d/nut-server stop
ps -ef|grep -i -e usb -e hid -e ups -e eaton -e nut
modprobe -r xhci_hcd
Load module:
modprobe xhci_hcd/etc/init.d/nut-server start
/etc/init.d/nut-client start