Skip to main content

Posts

Showing posts from January, 2018

Raspberry pi Startup open

down vote accepted For running Midori on startup, take a look at  this tutorial . For DIY solutions, read on. You can add your script executable command to the bottom of  .bashrc  that will  run your script every time you log in . Make sure you are in the  pi  folder: $ cd ~ Create a file and write a script to run in the file: $ sudo nano superscript Save and exit:  Ctrl + X ,  Y ,  Enter Open up  .bashrc  for configuration: $ sudo nano .bashrc Scroll down to the bottom and add the line:  ./superscript Save and exit:  Ctrl + X ,  Y ,  Enter 7 down vote accepted To auto-start the terminal on boot, open this file with nano: nano ~/.config/lxsession/LXDE-pi/autostart Add this line to the end of the file: @lxterminal Close, save and reboot

Raspberry Pi H264 Playing

PLAYING VIDEO ON THE RASPBERRY PI To play a video, navigate to the location of your video file in the terminal using  cd , then type the following command: omxplayer example . mp4 This will play the  example.mp4  in full screen. Hit  Ctrl + C  to exit. Example video sample: Big Buck Bunny There is a video sample of the animated film  Big Buck Bunny  available on the Pi. To play, it enter the following command into the terminal: omxplayer / opt / vc / src / hello_pi / hello_video / test . h264 raspivid - o video . h264 - t 10000

Raspberry pi Ser2Net Install

sudo apt-get install ser2net sudo nano /etc/ser2net.conf % change last lines to 2000:raw:600:/dev/ttyAMA0:57600 8DATABITS NONE  1STOPBIT banner sudo /etc/init.d/ser2net restart sudo nano /etc/inittab % add hash to this line #T0:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100 sudo nano /boot/cmdline.txt % delete references to ttyAMA0 % "console=ttyAMA0,115200 kgdboc=ttyAMA0,115200" sudo shutdown -r now

VNC server install on UBUNTU MATE

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-16-04 Step 1 — Installing the Desktop Environment and VNC Server By default, an Ubuntu 16.04 Droplet does not come with a graphical desktop environment or a VNC server installed, so we'll begin by installing those. Specifically, we will install packages for the latest Xfce desktop environment and the TightVNC package available in the official Ubuntu repository. On your server, install the Xfce and TightVNC packages. sudo apt install xfce4 xfce4-goodies tightvncserver To complete the VNC server's initial configuration after installation, use the  vncserver  command to set up a secure password. vncserver http://mitchtech.net/vnc-setup-on-raspberry-pi-from-ubuntu/ Getting the IP address of the Raspberry Pi The first step is to locate the Raspberry Pi on your network. If you have access to a display for your Raspberry Pi, this task is simple, in a terminal si...

Raspberry pi 3 Remot3.it Connection

https://remot3it.zendesk.com/hc/en-us/articles/115006015367-Installing-the-remot3-it-weavedconnectd-daemon-on-your-Raspberry-Pi Installing the remot3.it weavedconnectd daemon on your Raspberry Pi Check the OS Version First, you will need to determine which version of the OS is installed on your Pi. pi@raspberrypi:~ $ cat /etc/os-release PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)" NAME="Raspbian GNU/Linux" VERSION_ID="8" VERSION="8 (jessie)" ID=raspbian ID_LIKE=debian HOME_URL="http://www.raspbian.org/" SUPPORT_URL="http://www.raspbian.org/RaspbianForums" BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs" This example shows that the release is at the "Jessie" level which as of April 2017 is current.  The weavedconnectd installer is up to date at the Raspbian repository, so you can use the "apt-get" command to get the latest version. If you are using the Wheezy version of Raspbia...