Disclaimer you must have Nvidia 6xx card and up for this to function Steps for achieving this: 1. Close steam games if any opened 2. Install Nvidia gforce experience and all drivers/programs 3. Install Raspberry PI jessie here 4. sudo nano /etc/apt/sources.list Add : deb http://archive.itimmer.nl/raspbian/moonlight jessie main Ctrl X; Y - overrite; Enter 5. sudo apt-get update 6. sudo apt-get install moonlight-embedded 7. moonlight pair x.x.x.x - the PC ip address can be found with ipconfig from command window(cmd) 8. Add the code from Linux console to your pc 9. Finally moonlight stream (moonlight stream -1024 -Fps - and eventually program/game) PS: I have found out that if you launch all these commands from raspberry pi not from ssh you can stream the entire PC desktop and not only the designated program but you have to launch moonlight only with stream Eg: moonlight stream Good luck
1.List all usb devices: sudo blkid 2. Create the directory where you want to mount the partition: mkdir /mnt/MyDir 3. Edit /etc/fstab add line: /dev/sda[X] /mnt/MyDir [ext4] defaults,noatime 0 0 instead of X and ext4 go with appropriate key words Ex: for me is: /dev/sda1 /mnt/MyDir ext4 defaults,noatime 0 0 Last step reboot or you can mount everything right now: sudo mount /dev/sda1 /mnt/MyDir
Simply adding a password for root is not enough for Ubuntu 14.04 Server. You also need to edit /etc/ssh/sshd_config , and comment out the following line: PermitRootLogin without-password Just below it, add the following line: PermitRootLogin yes Then restart SSH: service ssh restart
Raspberry PI & Node JS I'm glad to share my first Iot project a car that runs on 2 servo motors Requisite list: -Power bank for Raspberry pi (one external for phone should do the trick with 2.1 A) - Raspberry pi (B/B+/2/3) - I'm using 3 - You can get one from here - 2 servo wheels - You can buy them from here - L298N Dual H-Bridge Motor Controller - You can buy from here -Power bank max 12V for controller - I recommend this one How to connect everything schema: Software ... NodeJS How to install: Step 1: sudo apt update sudo apt dist-upgrade sudo rpi-upgrade Step 2: curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash - sudo apt-get install -y nodejs node -v v5..... Step 3: create a folder and: npm install rpio console express body-parser cors Step 4: go to github here ... Website Install Lighttpd and in /var/www/html copy files from here: https://github.com/alexandru360/RpiCar/tree/...