Sponsored Content
Special Forums Hardware USB power cycling poblem on RPI Post 302935947 by Corona688 on Friday 20th of February 2015 12:15:10 PM
Old 02-20-2015
...and you certainly do not need all of Python to do this. Just do this:

Code:
#!/bin/sh

while true
do
        hub-ctrl -h 0 -P 2 -p 0
        sleep 1
        hub-ctrl -h 0 -P 2 -p 1
        sleep 1
        lsusb
done

 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Power Cycling

Hello Friends , I have been reading some of the Sys Admin notes when i came across a term "Power Cycling" Can anybody please explain what this means Thank You (1 Reply)
Discussion started by: DPAI
1 Replies

2. UNIX for Advanced & Expert Users

How Can I To Power Off My Computer?

I have a SCO UNIX 5.0.6. and a computer ATX. My Question is: How can i to power off my computer without to push the power button? :confused: Please help me. :( Thanks :) (1 Reply)
Discussion started by: vhabalos
1 Replies

3. AIX

How to tell Power 4/5/6

I'm looking for a way - from the command line - to tell whether a given AIX system I have is a Power5, Power4 or Power6 machine - it seems like there would be an option to 'uname' but I couldn't find one. Thanks! (3 Replies)
Discussion started by: thomn8r
3 Replies

4. Solaris

Poblem with libX11.so.4

good evening everyone i am getting this library problem with intel platform architec :confused: after installing the entire sun-5.10 with a hard configuration intel945chipset core2dual processor & 2GB ram with disk sapace of 40gb. after install the entire os my machine is rebooting... (1 Reply)
Discussion started by: ravinder singh
1 Replies

5. Shell Programming and Scripting

KSH switches editin modes when cycling through history. Why?

Hello all, Working in KSH using Solaris, the default editor is VIM. So, per session, I run a small rc script which calls export editor=emacs This works for commands at the prompt. But if I cycle through command history (Using the up arrow) the command line editor defaults to VIM. How can I... (2 Replies)
Discussion started by: eggmatters
2 Replies

6. Shell Programming and Scripting

WGET cycling on an updating page

Hello, I am experiencing an issue while downloading a few pages using wget. All of them work without a problem except one which is a page that does a tail on the log and as a result is constantly getting updated. wget here seems to run endlessly and needs to be manually killed. I wanted to... (0 Replies)
Discussion started by: prafulnama
0 Replies

7. UNIX for Dummies Questions & Answers

USB-USB cable between linux and windows computers

Is there an easy way to setup a cross-over cable (USB-USB) between a linux box and a windows PC? My 2 machines are next to each other but I really do not want to keep transfering my files using my USB drive. Thanks! (4 Replies)
Discussion started by: Xterra
4 Replies

8. IP Networking

Is bond0 ready and a bonding interface? - 4G Bonding Router Problems (RPI)

HI all, First post on the forum, and my first proper project on the Paspberry Pi, so sorry if this is in the wrong place. I am trying to turn my Pi in to a 3G/4G Bonding router. I have been researching and trying this for a week or so now. The basic plan is to have up to 6 ZTE MF823 USB... (0 Replies)
Discussion started by: elliottlc
0 Replies
IO::TieCombine(3pm)					User Contributed Perl Documentation				       IO::TieCombine(3pm)

NAME
IO::TieCombine - produce tied (and other) separate but combined variables VERSION
version 1.002 SYNOPSIS
First, we set up a bunch of access points: my $hub = IO::TieCombine->new; my $str_ref = $hub->scalar_ref('x'); my $fh = $hub->fh('x'); my $callback = $hub->callback('x'); tie my $scalar, $hub, 'x'; tie local *STDOUT, $hub, 'x'; tie local *STDERR, $hub, 'err'; Then we write to things: $$str_ref .= 'And '; print $fh "now "; $callback->('for '); $scalar .= 'something '; print "completely "; warn "different. "; And then: $hub->combined_contents; # And now for something completely different. $hub->slot_contents('x'); # And now for something completely $hub->slot_contents('err'); # different. ACHTUNG!! Because of a serious problem with Perl 5.10.0, output sent to a tied filehandle using "say" will not have the expected newline. 5.10.1 or later is needed. Since 5.10.0 is broken in so many other ways, you should really upgrade anyway. METHODS
new The constructor takes no arguments. combined_contents This method returns the contents of all collected data. slot_contents my $str = $hub->slot_contents( $slot_name ); This method returns the contents of all collected data for the named slot. clear_slot $hub->clear_slot( $slot_name ); This sets the slot back to an empty string. fh my $fh = $hub->fh( $slot_name ); This method returns a reference to a tied filehandle. When printed to, output is collected in the named slot. scalar_ref my $str_ref = $hub->scalar_ref( $slot_name ); This method returns a reference to scalar. When appended to, the new content is collected in the named slot. Attempting to alter the string other than by adding new content to its end will result in an exception. callback my $code = $hub->callback( $slot_name ); AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-02-26 IO::TieCombine(3pm)
All times are GMT -4. The time now is 12:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy