Tag Archives: linux

[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

[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

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

[RaspberryPI] How to turn off HDMI from Raspberry pi

Raspberry pi Linux image does not come with sleep mode after timeout. Though it has kind of sleepmode which does blacken screen, bout monitor does not go to sleep or switch off. To prevent HDMI TV/monitor on constantly switched on … Continue reading

Posted in RaspberryPI | Tagged , | 27 Comments

[Linux] How to setup X11vnc to share same session under linux

install and set password – sudo apt-get install x11vnc – x11vnc -storepasswd create autostart entry – cd .config – mkdir autostart – cd autostart – nano x11vnc.desktop – paste following text: [Desktop Entry] Encoding=UTF-8 Type=Application Name=X11VNC Comment= Exec=x11vnc -forever -usepw … Continue reading

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

[LINUX] How to create git repository for multiple user or group

Log in to server via ssh to get access to Linux server where .git is located $cd repository.git         #change current location to.git dir $sudo chmod -R g+ws *      #apply new access rules $sudo chgrp -R mygroup     #apply change permission … Continue reading

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