Author Archives: glframebuffer

About glframebuffer

just another guy.

How to remove LED flickering in webcam

LED flickering in webcams can be a pesky issue, especially when you’re in the middle of an important video call or recording a video. The flickering is often caused by the mismatch between the frequency of the LED lights and … Continue reading

Posted in Uncategorized | Leave a comment

How to generate core dump files

Description Core dump files provide a snapshot of a system’s memory and process information, and are therefore useful when generated before a process crashes or otherwise exits abnormally. They are a useful aid in identifying bugs or other problems that … Continue reading

Posted in Linux | Leave a comment

Electronic symbols

Symbol Name Battery (one cell). Negative on the left. Battery. Negative on the left. Earth ground Chassis ground Signal ground Switch (Single Pole, Single Throw – SPST). Normally Open (NO). Switch (Single Pole, Single Throw – SPST). Normally Closed (NC). … Continue reading

Posted in Uncategorized | Leave a comment

[LINUX]How to mount NAS network drive or folder in Raspberry pi

we could mount network share or folder or drive, on linux  Follow step to install  required software and mount NAS share Open a Terminal and install   CIFS utility as mentioned below, sudo apt-get install cifs-utils or sudo apt-get install … Continue reading

Posted in How to?, Linux, RaspberryPI, Uncategorized | Tagged , , , , , , , , | Leave a comment

How to add new layer in Yocto i.mx6

It is suggested to create a layer when creating or modifying any metadata file (recipe, configuration file or class). The main reason is simple: modularity. Follow these steps 1. To have access to Yocto scripts, setup the environment from the … Continue reading

Posted in Uncategorized | Tagged , , , , , , | Leave a comment

[Linux] How to compile yocto BSP with external toolchain

Setup an external toolchain with Yocto  You can use the sourcery g++ toolchain, but it requires custom tuning arguments to control selection of the multilib in the external toolchain sysroots, so you should switch to a separate layer and override … Continue reading

Posted in How to?, Linux | Tagged , , , , , | Leave a comment

[Mac os X] How to use dd command on mac

Mac OS X Command Line Interface Download the desired .img file Open a Terminal (in /Applications/Utilities/) Run diskutil list to get the current list of devices Insert your flash media Run diskutil list again and determine the device node assigned to your … Continue reading

Posted in How to?, Linux, RaspberryPI | Tagged , , , , , , , , , | Leave a comment

[Qt] How to customise QSlider

QSlider with with rounded ends can be done only via stylesheet. Additionally added subpage for qSlider to change color of slider.   QSlider::groove:horizontal { border: 1px solid #999999; height: 18px; border-radius: 9px; } QSlider::handle:horizontal { width: 18px; background-image: url(:/slider-knob.png) } … Continue reading

Posted in Qt | Tagged , , , , | 7 Comments

[RaspberryPI] How to mount Network Drive with read write permissions

How to mount Network Drive in Beaglebone Raspberry PI Add following line under /etc/rc.local and update with appropriate sudo mount -t cifs -o user=,password=,sec=ntlm,rw,file_mode=0777,dir_mode=0777 //network-pc/dir-name /opt/media that all. now reboot 🙂 now drive will be mounted to your given path … Continue reading

Posted in Linux, RaspberryPI | Tagged , , , , , | Leave a comment

How to Watch Live Interrupts

Watch Command useful to check timely update from shell. Here is example to check in interrupts every one second $ watch -d -n1 “cat /proc/interrupts”     It shows interrupt count updated in highlighted 🙂 

Posted in Uncategorized | Tagged , , , | Leave a comment