| Understand SPI Raspberry Pi | Raspi Timer Lamp Control | Run Script at Startup | Fix Raspberry Pi USB Serial PathNo rule to make target '../rc-switch/RCSwitch.o', needed by 'send'. Stop. Go to the root folder of your project and do as follow: git submodule init and git submodule update Run make again Ubuntu Linux TL-WN725N TP-Link version 2 WiFi driver installQuick List:: Do each command below as root or use sudo in front of commands *Tip: Use command: sudo su – The above command will give root permissions to your command terminal window, and you want have to keep typing sudo before each commando DONE! Now you can use that sweet new wlan TP-LINK TL-WN725N WiFi usb card!! Fix Error Update DPKG OPENHABIAN
CHECK CPU SPEED AND TEMPERATURE USE SCRIPT
Use putty.exe (Google it) to connect sh to Pi, user name : "root", password "openelec" Doing as follow Check if the lircd.conf exist by File share from PC (example \\IP ADDRESS) find in Configfile directory, Please delete it Code 1: modprobe Code 2: echo "modprobe lirc_rpi" >> /storage/.config/autostart.sh // It is to tell RPI look lirc Code 3: irrecord /storage/.config/lircd.conf Doing as guide on the screen but very important : ***Should press and hold your remote for RPI capture mask, space and gap form IR stream, Also press some others key for average calculation but dont stop hold Pass this step and type KEY_ (UP, DOWN...) and point Remote to IR Receiver for PI learning. That is all Setting up WiFi connection for Screenly OSEStart by booting the Raspberry Pi, connected to a display and a keyboard. Open up the terminal and edit the network interfaces file:
This file contains all known network interfaces, it'll probably have a line or two in there already. Change the first line (or add it if it's not there) to:
Then at the bottom of the file, add these lines telling the Raspberry Pi to allow wlan as a network connection method and use the allow-hotplug wlan0 (ctrl-X, then type Y to quit and save) The next step is to create this configuration file. Configuring WiFi connectionOpen up the wpa_supplicant.conf file in the editor.
Again, some lines might already be present, just add the following. network={ The other parameters are network specific, I can't tell you what you need. If you boot Raspbian to desktop, you can launc the wpa_gui (WiFi config) application and click 'Scan'. You'll find a list that has your network too with all flags you need. To do this on a RPi A you'll have to disconnect your keyboard and connect your dongle once the scanning list is open.
Make sure it worksReboot the Raspberry Pi and it should connect to the wireless network. If it doesn't, repeat above steps or get help from an adult. A static IPSince the goal of this tutorial is to be able to work with the RPi without external keyboard or display, you want to be ssh into it. The best way is to make sure it'll always have a static IP on your network. Doing so is simple. Open the Change Add the following lines before the wpa-conf line: address 192.168.1.155 # Static IP you want The Raspberry Pi will still be able to connect to the internet. Wrapping upWith these changes you'll be able to always connect to your Raspberry Pi over your wireless network via ssh at the same, static IP. This means you can disconnect keyboard, mouse and display and have it plugged in a wall socket, anywhere, taking almost no space. As an overview, my interfaces- and wpa_supplicant-files:
CONNECT RASPI TO WIFI WITH OPEN WIFI NETWORK Just edit interface file as below # /etc/network/interfaces auto lo iface lo inet loopback iface eth0 inet dhcp allow-hotplug wlan0 auto wlan0 iface wlan0 inet dhcp wireless-essid EVNCEPC OFFICE wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf iface default inet dhcp GETTING WIFI NETWORK DETAILSTo scan for WiFi networks, use the command
OTHER ADDING THE NETWORK DETAILS TO THE RASPBERRY PIOpen the
Go to the bottom of the file and add the following:
In the case of the example network, we would enter:
Now save the file by pressing ctrl+x then y, then finally press enter. At this point, You can verify if it has successfully connected using RASPBERRY PI WITH HIDDEN KEY WEP NETWORK Run command $sudo nano /etc/network/interfaces auto lo iface lo inet loopback iface eth0 inet dhcp allow-hotplug wlan0 iface wlan0 inet manual wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf iface default inet dhcp Edit wpa_supplicant $ sudo nano /etc/wpa_supplicant/wpa_supplicant.conf ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="RDLAB" scan_ssid=1 mode=0 key_mgmt=NONE auth_alg=OPEN wep_key0="19762" id_str="RDLAB" } In this tutorial, I’m going to talk you through running Raspbian from a USB connected drive instead of from an SD card. Running from a USB connected Flash or Hard Drive has many advantages, the biggest being speed and reliability. SD Cards have a limited read/write cycle, and when hosting a site with a MySQL database from a SD card, it won’t take long before you start getting corruptions and failures. USB Flash drives provide a cheap and reliable alternative. I’ve tested several USB Flash drives, and found Sandisk and Corsair to be the best for speed and reliability. This site is run off a 16GB Corsair Voyager 3 USB Flash drive. Assumptions before we beginI’m going to assume that you know your way around Terminal, and are using a Mac to perform these steps. You will still need an SD card to store the boot instructions to tell the Raspberry Pi to launch the OS from the USB; the Raspberry Pi’s can’t (yet) boot directly from a USB storage device. Step 1 – Download Raspbian from Raspberry PiYou will need the standard Raspbian OS image, you can download this from the official Raspberry Pi website. Once you’ve downloaded it, unzip it. It’s around 400mb in size, so should only take a couple of minutes over a broadband connection. Step 2 – Install the Raspbian OS to your USB Flash drivePlug in your USB stick and launch Terminal. The first thing we’re going to do is get the device identifier for your USB Flash drive. To do this run the following command: The list of attached disks will show up with their identifiers. Important – make a note of the correct identifier, you can do some serious damage by choosing the wrong one! In the screen shot above, I can see that /dev/disk2 is the correct identifier for my Sandisk USB Flash Drive. Yours may be different so change to suit your configuration. Next we’re going to unmount the USB Flash Drive. To do this enter the following command: Yet again, be really careful to change disk2 to whatever your computer identifies the USB Flash Drive as. You will get a message saying
Now we can begin the copy. For ease, I’ve changed the directory in Terminal to where the Raspbian image is located, which in this case is my downloads folder. If you’ve downloaded and unzipped the disk image to your downloads folder, running this command should take you there: Now run this command to begin the copy: As with before, make sure you change disk2 to whatever your computer identifies as being the USB Flash Drive, and change 2013-02-09-wheezy-raspbian.img to whatever your image file is called. The blocks will now begin moving to your USB Flash Drive from the Raspbian OS image. This takes anything from 5 to 20 mins depending on the speed of your USB Flash Drive. Go stick the kettle on and have a brew! Eventually, you will see something similar to the above, and it probably took a while too. The next step is to configure your SD Card to give the correct boot instruction to start the OS from the USB Flash Drive Step 3 – Configure your SD cardUsing Disk Utility, format your SD Card using FAT32. It’s dead easy, choose your SD Card from the devices listed on the right, then click on ‘Erase’, choose FAT32 in the Formats list and click on ‘Erase’.
Open up the USB Flash Drive volume and copy all the files from that onto your SD card. This copies the all-important files and instructions to tell your Raspberry Pi to boot from the USB Flash Drive. We’re almost done at this point, only one more step to go. Step 4 – Change the boot path on your SD cardOnce you’ve completed step 3, you need to change the default boot path to tell the Raspberry Pi to boot from your USB drive. Open a new Finder window and go to your SD card. Open up the file called cmdline.txt in TextEdit or similar and amend the line which reads: To this: This will instruct your Raspberry Pi to boot from the USB Flash Drive instead of from the SD card. Save the cmdline.txt file and close the Finder window. We’re almost done! Step 4 – Boot from your USB Flash Drive on your Raspberry PiNow unmount both your USB Flash Drive and your SD card and pop them both into your Raspberry Pi and switch it on. If all goes well, it should boot from your USB Flash Drive which you’ll find substantially quicker than your SD Card. Step 5 – Expand the Raspbian partition on your USB Flash drive to fill itFinally, we’re just going to do a little housekeeping to utilise all the available space on your USB Flash drive as the method using raspi-config doesn’t work on USB Flash drives. This isn’t essential, but if you have the extra space on a USB Flash Drive, why not use it all? From your Raspberry Pi, type the following command to start FDisk: Then press p and enter to see the partitions. There should only be 2. What we’re going to do now is delete the Linux partition, but before we do this, we make a note of the start position for the linux partition sda2. Press d and then when prompted type 2 and then hit enter. This will delete the partition. Now we’re going to create a new partition, and make it large enough for the OS to occupy the full space available on the USB Flash Drive. To do this type n to create a new partition, when prompted to give the partition type, press p for primary. Then it will as for a partition number, press 2 and hit enter. You will be asked for a first sector, set this as the start of partition 2 as noted earlier. In my case this as 12280 but this is likely to be different for you. After this it will ask for an end position, hit enter to use the default which is end of disk. Now type w to commit the changes. You will see a message about the Kernel using some table yaddah yaddah, just ignore this. Type the following to reboot: Once your Raspberry Pi has rebooted, we need to resize the partition. To do this type the following command: Be patient, this will take some time. Once it’s done reboot again. Then type: This will show the partitions and the space, you’ll see the full USB Flash Disk has all the space available now. That’s it, all done! |
R&D Publishing >