Go to advanced search

by elatllat
Sun Sep 16, 2012 3:58 pm
Forum: General discussion
Topic: Raspberry Pi on Amazon for the impatient
Replies: 1
Views: 965

Re: Raspberry Pi on Amazon for the impatient

$50 is hardly a profit as mine cost $56 from RS.
by elatllat
Sun Sep 16, 2012 3:52 pm
Forum: Automation, sensing and robotics
Topic: Next GPIO project???
Replies: 7
Views: 1662

Re: Next GPIO project???

make a robot. biped brew bringer if you really want a challenge.
by elatllat
Sun Sep 16, 2012 3:50 pm
Forum: General discussion
Topic: [Feature Request] WiFi Board?
Replies: 10
Views: 2326

Re: [Feature Request] WiFi Board?

IMO everything should be external on USB. (The current Ethernet is on internal usb)
USB3 preferably.
by elatllat
Sun Sep 16, 2012 3:28 pm
Forum: Debian
Topic: freedombox.img
Replies: 5
Views: 4341

Re: freedombox.img

AFAIK freedombox has no usable features yet, it's just a basic debian... so why not use the official image and configure it to do whatever you want (proxy, tor, adbloock, ptp, etc)?
by elatllat
Sun Sep 16, 2012 3:22 pm
Forum: General discussion
Topic: Impact Of Using Different SDHC Classes
Replies: 4
Views: 11661

Re: Impact Of Using Different SDHC Classes

get a class 10 uname -a Linux raspbian 3.1.9+ #272 PREEMPT Tue Aug 7 22:51:44 BST 2012 armv6l GNU/Linux cd ~/ OUT=./file.1G.tmp dd if=/dev/zero of=$OUT bs=100000 count=1024 1024+0 records in 1024+0 records out 102400000 bytes (102 MB) copied, 5.11371 s, 20.0 MB/s sync echo 3 > /proc/sys/vm/drop_cach...
by elatllat
Sun Sep 16, 2012 3:14 pm
Forum: Media centres
Topic: MythTV Backend and XBMC installed locally
Replies: 1
Views: 2412

Re: MythTV Backend and XBMC installed locally

MythTV would need something custom to encode, and some input hardware, and if you got it working it would not work at the same time as XBMC which uses all the RPi GPU/CPU.
by elatllat
Sun Sep 16, 2012 3:05 pm
Forum: Interfacing (DSI, CSI, I2C, etc.)
Topic: Connect to GPS device
Replies: 1
Views: 1093

Re: Connect to GPS device

normally GPSs can send lat/log to linux via usb etc. using the screen would likely be a lot of custom code on your part.
by elatllat
Sun Sep 16, 2012 3:03 pm
Forum: Debian
Topic: Pre-programmed SD card image
Replies: 1
Views: 804

Re: Pre-programmed SD card image

It's likely a modified Raspbian, but why do you care?
If you have a copy of it you can poke around a bit, diff come settings:

Code: Select all

uname -a
cat /etc/issue
zcat /proc/config.gz
I think it boots to the GUI unlike the official build.
by elatllat
Sun Sep 16, 2012 2:55 pm
Forum: Media centres
Topic: omxplayer have a nice day
Replies: 3
Views: 3431

Re: omxplayer have a nice day

maybe try a different format (mp4/m4v/h264)?
by elatllat
Sun Sep 16, 2012 2:52 pm
Forum: Media centres
Topic: Raspberry Pi Amiga Distro
Replies: 2
Views: 2005

Re: Raspberry Pi Amiga Distro

You need to compile from source because there is no armv6l binary (only an armv4l).
by elatllat
Sun Sep 16, 2012 2:38 pm
Forum: Graphics, sound and multimedia
Topic: SIP audio failures (Griffin iMic)
Replies: 5
Views: 2909

Re: SIP audio failures (Griffin iMic)

Some driver hacks are listed here:
http://elinux.org/Rpi_USB_check-list

Might want to post dmesg in case someone sees something you missed.
Changing the logging levels might give some hints.
by elatllat
Sun Sep 16, 2012 2:33 pm
Forum: General programming discussion
Topic: MJPEG save stream onto a USB drive
Replies: 7
Views: 6410

Re: MJPEG save stream onto a USB drive

You can just dump the raw stream with VLC or mplayer using minimal CPU.
by elatllat
Sun Sep 16, 2012 2:26 pm
Forum: Troubleshooting
Topic: USB ports don't work in LXDE
Replies: 2
Views: 609

Re: USB ports don't work in LXDE

a) vpn out of your school firewall
b) dmesg?
by elatllat
Sun Sep 16, 2012 2:23 pm
Forum: Automation, sensing and robotics
Topic: Raspberry Pi Alarm Clock
Replies: 1
Views: 1667

Re: Raspberry Pi Alarm Clock

The pi only uses 0.3A but you could use an outlet timer like this http://www.amazon.com/Woods-59366-Appli ... supplies_8
by elatllat
Sun Sep 16, 2012 2:11 pm
Forum: Troubleshooting
Topic: USB camera, horizontal image crashes
Replies: 4
Views: 4474

Re: USB camera, horizontal image crashes

There are some known known bugs with the usb driver, try:
rpi-update
smsc95xx.turbo_mode=N in /boot/cmdline.txt
dwc_otg.microframe_schedule=1 in /boot/cmdline.txt
vm.min_free_kbytes=16384 in /etc/sysctl.conf
reboot

If the problem persists post

Code: Select all

dmesg
by elatllat
Sun Sep 16, 2012 1:55 pm
Forum: Media centres
Topic: Raspbmc USB stick
Replies: 1
Views: 2174

Re: Raspbmc USB stick

a) use a usb hard drive not a slow flash based usb stick b) common ways to copy files over the network include scp, ftp, smb, and nfs. scp is the only option enabled by default so here is an example: scp -r ~/Downloads/Video/* pi@192.168.0.100:/media/USB/Video/ If you install sshfs on your mac or en...
by elatllat
Sun Sep 16, 2012 1:36 pm
Forum: Troubleshooting
Topic: Tx-stall under heavy load
Replies: 6
Views: 2006

Re: Tx-stall under heavy load

You might try changing vm.min_free_kbytes=16384 in /etc/sysctl.conf (requires reboot)
Or running your torrent client with nice.
Try monitoring top to see if you are out of CPU.
by elatllat
Sun Sep 16, 2012 1:26 pm
Forum: Beginners
Topic: 3TB Hard Drive Issue
Replies: 15
Views: 15434

Re: 3TB Hard Drive Issue

Did you try LVM on your 3TB drive yet?
by elatllat
Sun Sep 16, 2012 1:15 pm
Forum: Troubleshooting
Topic: USB HD transfer rate very slow
Replies: 7
Views: 5141

Re: USB HD transfer rate very slow

Code: Select all

dmesg
mount
df -h
by elatllat
Sun Sep 16, 2012 1:49 am
Forum: Troubleshooting
Topic: upgrade fail
Replies: 10
Views: 2501

Re: upgrade fail

Only 17% of / is used.
by elatllat
Sat Sep 15, 2012 10:20 pm
Forum: Troubleshooting
Topic: upgrade fail
Replies: 10
Views: 2501

Re: upgrade fail

RockMachine wrote:Sudo apt-get upgrade
Not helpfull; because i was obviously already root. The problem is a broken package, the solution is for the repo maintainer to fix it....
by elatllat
Sat Sep 15, 2012 12:37 am
Forum: Troubleshooting
Topic: upgrade fail
Replies: 10
Views: 2501

upgrade fail

apt-get upgrade failed so I tried to re-download the problem package: # rm /var/cache/apt/archives/debconf_1.5.46_all.deb # apt-get install -d debconf Reading package lists... Done Building dependency tree Reading state information... Done Suggested packages: debconf-doc libterm-readline-gnu-perl l...

Go to advanced search