Re: [beagleboard] PHP5 pre-installed

2016-03-11 Thread Virendra Anthony
Williams, I wanted to get an SD card image *pre* installed with php before I insert the card into BBB. The command you have provided is to get the php after loading the SD into BBB. I am able to install the php package after I load the sd card in the BBB and then do the command 'sudo apt-get inst

Re: [beagleboard] Re: Cannot SSH into BBB (or access 192.168.7.2 web page) from Linux

2016-03-11 Thread William Hermans
> > *Is there a solution to this issue?* > Yes, we think changing from rt kernel to normal kernel will fix the problem. So you can attempt to do this manually on your own, or you can wait until next week when a new image is put out. On Fri, Mar 11, 2016 at 9:16 PM, wrote: > I am also having thi

Re: [beagleboard] PHP5 pre-installed

2016-03-11 Thread William Hermans
$ dpkg -l | grep /* check if is installed */ $ apt-cache search /* check if exists in the package repo */ $ sudo apt-get install /* install existing package */ On Fri, Mar 11, 2016 at 9:14 PM, Virendra wrote: > > Hi All, > > I have a doubt on how to package the php5 within the SD card imag

[beagleboard] Re: Cannot SSH into BBB (or access 192.168.7.2 web page) from Linux

2016-03-11 Thread josh . onn
I am also having this issue on the BBB for Debian Jessie. For my case, my interface to the beaglebone black is eth1. Performing dhclient eth1 did not work for me. I get the following error: RTNETLINK answers: Operation not permitted Prepending sudo to the command seems to be hanging as well. Is

[beagleboard] PHP5 pre-installed

2016-03-11 Thread Virendra
Hi All, I have a doubt on how to package the php5 within the SD card image created to load in Beagle Bone Black. I have been following the instruction on https://eewiki.net/display/linuxonarm/BeagleBone+Black to get the micro SD card image. I use the default Debian 8 for the Root File System.

Re: [beagleboard] BBB not booting after upgrade

2016-03-11 Thread William Hermans
There is nothing obvious from the kernel log messages I've seen there. But what you could do is log into the system via your USB to serial adapter, and see what the state of various device interfaces are from the running systems standpoint. The "problem" could be something as simple as a configurat

Re: [beagleboard] -bash: /sys/class/gpio/export: Permission denied

2016-03-11 Thread William Hermans
> > *Hello, i am new at linux.. I use bbb with debian and usb remote desktop* > *I try this command on terminal:* > > * /sys/class/gpio/export* > > *I always receive: -bash: /sys/class/gpio/export: Permission denied* > > *I also have change the permisson on the gpio folder per GUI... but > without

Re: [beagleboard] BBG fried. Hint needed to undestand why.

2016-03-11 Thread John Syne
Whenever you have separate systems that may power up at different times or the I/O configuration is unpredictable, then you should always use tristate buffers so that you don’t drive I/O until it is ready. Also, some GPIO are also used for boot configuration and these pins should not be driven d

Re: [beagleboard] BBG fried. Hint needed to undestand why.

2016-03-11 Thread Jordi Segura
Thanks @john3909. This is to avoid having external power applied to the GPIO pins of the BBB/G before is booted up which can damage the board right? I suppose that was the the problem with my fried BBG. This should also apply with a single Tx board and a single Rx board configuration rigth

Re: [beagleboard] How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread John Syne
Yep, I see that. Seems to be a difference between Ubuntu nc and Debian nc. Regards, John > On Mar 11, 2016, at 1:44 PM, William Hermans wrote: > > william@eee-pc:~$ man nc > NC(1) > NC(1

Re: [beagleboard] How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread William Hermans
william@eee-pc:~$ man nc NC(1) NC(1) NAME nc - TCP/IP swiss army knife SYNOPSIS nc [-options] hostname port[s] [ports] ... nc *-l -p port* [-options] [hostname] [port] william@eee-pc:~$ uname -a Linux eee-pc 3.2.0-4-686-pae #1 SMP Debian 3.2.68-1+deb7u2 i686 GNU/Linux willi

Re: [beagleboard] How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread William Hermans
John, This is the first and only time I will reply to you now, or in *any* future post you make on any subject- period. Stop acting like a child. I'm sure that manpage might actually mean something on *some* Linux some where. But they mean nothing on the Linux I tested those commands on. I do not

Re: [beagleboard] How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread John Syne
> On Mar 11, 2016, at 10:41 AM, William Hermans wrote: > > Dhanesh, netcat is pretty much a general purpose networking tool. It can take > stdin as input via using the pipe symbol at the command line, as well as pipe > that input on the opposite end to stdout. > > So as an extremely simple ex

[beagleboard] Re: Availability

2016-03-11 Thread Si Moroney
On Friday, March 11, 2016 at 1:06:01 AM UTC, rdbirt wrote: > > The Mouser web site previously said they would ship the X15 on February > 26. I put in an order and they've cashed my check but now the date has > changed to May 3. So I'm wondering what to do. Will the X15 really ship > on May 3?

Re: [beagleboard] Re: Error while doing a apt-get update

2016-03-11 Thread Robert Nelson
On Fri, Mar 11, 2016 at 2:16 PM, William Hermans wrote: > g_ether works fine on the Wheezy images, but I think an image or two default > to g_serial being setup by default. So either you'll have to use the serial > over USB interface, or change the default configuration to use g_ether > instead. T

Re: [beagleboard] -bash: /sys/class/gpio/export: Permission denied

2016-03-11 Thread Chad Baker
Have you tried the following command :> sudo echo NN > /sys/class/gpio/export where NN is the gpio device that you want to work with. If root, you don't need sudo. Chad On 3/11/2016 4:54 AM, epi...@gmail.com wrote: Hello, i am new at linux.. I use bbb with debian and usb remote desktop I try th

Re: [beagleboard] Re: Error while doing a apt-get update

2016-03-11 Thread William Hermans
g_ether works fine on the Wheezy images, but I think an image or two default to g_serial being setup by default. So either you'll have to use the serial over USB interface, or change the default configuration to use g_ether instead. This can be done from a host computer, if the given host computer

Re: [beagleboard] Re: How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread William Hermans
Dhanesh, netcat is pretty much a general purpose networking tool. It can take stdin as input via using the pipe symbol at the command line, as well as pipe that input on the opposite end to stdout. So as an extremely simple example: client side: $ nc -l -p 5000 > /path/to/somefile This will take

[beagleboard] Cloud9 Demo Program Won't Run

2016-03-11 Thread jim . hellander
When I try to run the DEMO program as shown on the BeagelBone landing page, I get the error: *bash: /var/lib/cloud9/Projects/Blink_LED: Permission denied* Any help/advice is appreciated. Jim -- For more options, visit http://beagleboard.org/discuss --- You received this message because you

Re: [beagleboard] Re: How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread Dhanesh Kothari
@Wally and @William, Thank you both for advice. I will study about Netcat and see how it can be used for my application. On Friday, March 11, 2016 at 11:06:56 PM UTC+5:30, William Hermans wrote: > > Something else actually just came to mind which I can not believe I did > not think of first. *N

Re: [beagleboard] Re: BLE and WIFI module for beaglebone black.

2016-03-11 Thread William Hermans
I've had real bad luck with BLE dongles so far. range on them is fairly bad it sems, At least the ones I've tried so far. Just an idea of what I mean. I've had a Beaglebone about 3-3.5m from a BLE / smart LED bulb, and the singles I've used can not even pick the device up. But the BT 4.0 module in

[beagleboard] Re: BLE and WIFI module for beaglebone black.

2016-03-11 Thread Brian Anderson
> Hi, > thanks for reply! > cape is costly solution. > I am thinking of using a module. > similar to the module in link below- > > http://www.cnx-software.com/2015/11/18/redbear-duo-is-a-breadboard-friendly-wi-fi-ble-iot-board-based-on-ampak-ap6212-module-crowdfunding/ > Or, if you are just int

Re: [beagleboard] BBG fried. Hint needed to undestand why.

2016-03-11 Thread John Syne
Use a tristate buffer between the BBB TX and the BBB/BBG RX. Use a 2 input AND gate with the output connected to the buffer enable and a GPIO_EN from the BBB RX board connected to on of the AND gate input and a GPIO_EN from the BBG RX board to the other AND gate input. When both BBB/BBG board ar

Re: [beagleboard] Using Connman for WiFi AP/tether...

2016-03-11 Thread Brian Anderson
> Do you know how to ConnMan to create a access point without password? > is ConnMan suport that ? > Unfortunately, no. Connman requires a passphrase. In fact, the passphrase must be at least 8 and no more than 63 characters. You can see this in the source code (technology.c, line 92

Re: [beagleboard] Enable ttyO1 in my BeagleBone Black

2016-03-11 Thread Robert Nelson
On Fri, Mar 11, 2016 at 11:49 AM, Juan Camilo Bravo wrote: > Hi. Im trying to enable my ttoyO1 to work with UART1 in my beaglebone. I > always have to run > "echo BB-UART1 > /sys/devices/bone_capemgr.*/slots" > I now want my beaglebone to enable my UART1 port when it boot. How can i do > it? What

[beagleboard] Enable ttyO1 in my BeagleBone Black

2016-03-11 Thread Juan Camilo Bravo
Hi. Im trying to enable my ttoyO1 to work with UART1 in my beaglebone. I always have to run "echo BB-UART1 > /sys/devices/bone_capemgr.*/slots" I now want my beaglebone to enable my UART1 port when it boot. How can i do it? -- For more options, visit http://beagleboard.org/discuss --- You rec

Re: [beagleboard] -bash: /sys/class/gpio/export: Permission denied

2016-03-11 Thread John Syne
https://www.kernel.org/doc/Documentation/gpio/sysfs.txt Regards, John > On Mar 11, 2016, at 2:54 AM, epi...@gmail.com wrote: > > Hello, i am new at linux.. I use bbb with debian and usb remote desktop > I try this command on terminal:

Re: [beagleboard] Re: How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread William Hermans
Something else actually just came to mind which I can not believe I did not think of first. *Netcat* was designed specifically for this sort of thing . . . but if you're unfamiliar with netcat, there are several good free books on the internet I believe. On Fri, Mar 11, 2016 at 10:27 AM, William H

Re: [beagleboard] Re: How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread William Hermans
> > *Thank you @Wally and @William.* > *My goal is to send continuous data stream from my system and my > beaglebone should be receiving data serially and than process the data as > per my algorithm without any data loss.* > *We are using sshfs to mount a directory on beaglebone to our system.* >

Re: [beagleboard] Re: BLE and WIFI module for beaglebone black.

2016-03-11 Thread William Hermans
> > *can it be used with BBB?* > Any device module that has an I2C, SPI, or UART interface ( common interfaces ) can be used with the beaglebones. It's up to *you* the hardware integrator to make it work. > *is there any other modules similar to this?* > No, not really. There are device modules

[beagleboard] Re: How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread Dhanesh Kothari
Thank you @Wally and @William. My goal is to send continuous data stream from my system and my beaglebone should be receiving data serially and than process the data as per my algorithm without any data loss. We are using sshfs to mount a directory on beaglebone to our system. -- For more optio

[beagleboard] Re: BLE and WIFI module for beaglebone black.

2016-03-11 Thread Dhanraj Choudhary
Hi, thanks for reply! cape is costly solution. I am thinking of using a module. similar to the module in link below- http://www.cnx-software.com/2015/11/18/redbear-duo-is-a-breadboard-friendly-wi-fi-ble-iot-board-based-on-ampak-ap6212-module-crowdfunding/ can it be used with BBB? is there any oth

Re: [beagleboard] Re: How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread William Hermans
I think because there are many different ways to tackle this type of job. What the end goal of the application *is* would be important to know. On top of what Wally has said another two options could be sshfs in place of his suggestion for NFS. It pretty much meets all the same basic requirements,

[beagleboard] Re: How to setup socket-based pipe in Beaglebone Black?

2016-03-11 Thread Wally Bkg
I may be misunderstanding what you are trying to do, but it seems you want the enhanced named-pipe behavior of Windows (working across a network connection) on Linux. Its one of the few Windows "enhancements" I've actually found useful over the years. But as far as I could tell, to get this b

Re: [beagleboard] Permission denied

2016-03-11 Thread Zoltan Gyarmati
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Dear pikao, you are trying to _run_ that file rather than writing into it to enable a GPIO line. And hence the file doesn't have execute right (as it meant to written into, not execute) you get a permission error. You need to call something like: e

[beagleboard] All the Leds remain lit.

2016-03-11 Thread Anh Le Tuan
It is a BeagleBone Black which was successfully flashed. I tried to upgrade the kernel. However failed. I reboot the device and it stop working. 4 Leds remain lit. They are not blinking. I tried to re-flash the board. However, when I hold the user boot button. The Leds are not up. Is my board

Re: [beagleboard] Re: BBG fried. Hint needed to undestand why.

2016-03-11 Thread Jordi Segura
Thanks for answers so far. Yes my case is a single Tx output driving two Rx inputs. All processors are at 3.3 V. My original explanation of what I did: The BBG died after several days working 24/7, powered up from a power supply 5V 2A, with an 3G usb dongle connected on it, and (maybe that'

Re: [beagleboard] Re: BBG fried. Hint needed to undestand why.

2016-03-11 Thread 'Mark Lazarewicz' via BeagleBoard
This reminds me of a nightmare job I inherited.  I showed up at clients site he had 2 processors communication via McBSP a bread board and some line drivers in between and asked why his software wasn't working.  Turns out he had the wrong voltage version of the chips on his Bread board in the mi

Re: [beagleboard] How to install locally build image packages

2016-03-11 Thread Robert Nelson
On Fri, Mar 11, 2016 at 10:01 AM, wrote: > > I rebuild the kernel locally (by running ./build_deb) and generated the > following 4 .deb packages > > Which one shall I install? and > linux-image-4.1.18-bone-rt-r20_1cross_armhf.deb is too big, shall I put it > in microSD card so as to install it? >

[beagleboard] How to install locally build image packages

2016-03-11 Thread kevinlang . ca
I rebuild the kernel locally (by running ./build_deb) and generated the following 4 .deb packages Which one shall I install? and linux-image-4.1.18-bone-rt-r20_1cross_armhf.deb is too big, shall I put it in microSD card so as to install it? -rw-r--r-- 1 docmark docmark 177304 Mar 10 15:56

Re: [beagleboard] Re: BBG fried. Hint needed to undestand why.

2016-03-11 Thread Harvey White
On Fri, 11 Mar 2016 09:29:07 -0600, you wrote: >I would not recommend shorting outputs of two processor together, something >might get fried. Exactly right, the output drivers will likely overheat and perhaps be damaged when one chip is outputting a different state than the other. In this case,

Re: [beagleboard] Re: BBG fried. Hint needed to undestand why.

2016-03-11 Thread Gerald Coley
I would not recommend shorting outputs of two processor together, something might get fried. Gerald On Fri, Mar 11, 2016 at 9:27 AM, Jordi Segura wrote: > Related to my unanswered problem below, main point I want to know is: > > Is it safe to connect directly the same Tx external signal simulta

[beagleboard] Re: BBG fried. Hint needed to undestand why.

2016-03-11 Thread Jordi Segura
Related to my unanswered problem below, main point I want to know is: Is it safe to connect directly the same Tx external signal simultaneously to a couple of BBs ? Cheers, Jordi El dilluns, 7 març de 2016 0:11:32 UTC+1, Jordi Segura va escriure: > > My BBGreen got fried (when I power it up it

[beagleboard] Re: BLE and WIFI module for beaglebone black.

2016-03-11 Thread drhunter95
If you are looking for the TI WL18xx family then there are capes with it which are integrated into Robert Nelson's build. However, the only one you can buy today is from StreamUnlimited (http://streamunlimited.com/products/wifiaudiocape.html). This is quite expensive though as it is a commercia

[beagleboard] Re: Audio Cape on BBB rev C

2016-03-11 Thread aniltolinux
Hi all , I am working on the beagle bone black ,actually what i want to do is ,play a audio in BBB. i am using Wolf son audio card to interface with the BBB, by using YOCTO ,the card specific information i given in .dts or .dtsi file file actually the card is specific to raspberry pi but i wan

[beagleboard] -bash: /sys/class/gpio/export: Permission denied

2016-03-11 Thread epikao
Hello, i am new at linux.. I use bbb with debian and usb remote desktop I try this command on terminal: /sys/class/gpio/export I always receive: -bash: /sys/class/gpio/export: Permission denied I also have change the permisson on the gpio folder per GUI... but without success?? ThankYou --

[beagleboard] Permission denied

2016-03-11 Thread epikao
Hello, I'm a beginner... I use BeagleBoard.org Debian Image 2016-01-24 I don't understand why following comand doesn't work: root@beaglebone:~# /sys/class/gpio/export -bash: /sys/class/gpio/export: Permission denied any idea? thankyou -- For more options, visit http://beagleboard.org/disc

[beagleboard] BLE and WIFI module for beaglebone black.

2016-03-11 Thread dhanrajpchoudhary
Hello everyone, I want to integrate BLE and WIFI module with beaglebone black but I am confused which modules to use? any suggestions please? Regards Dhanraj -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Gr

[beagleboard] BLE and WIFI module for beaglebone black.

2016-03-11 Thread Dhanraj Choudhary
Hello everyone, I want to integrate BLE and WIFI module with beaglebone black but I am confused which modules to use? any suggestions please? Regards Dhanraj -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Gr