Recommended Posts

So 11Mbps -- that is a what like 1.3MBps, that does not seem all that high. Do you forget some zeros or is that Mbps?

This is from the details of the file

1.PNG

And this is the site I got it from

http://www.demo-worl...on-trailers.php

Just tried playing a 1080p .mkv and it freezes for a second every 5 seconds or so

raspbmc is still beta though so..

Can WinSCP into it which saves shutting down and editing in linux vm

Capture.PNG

SSH no problems too

55.PNG

top command

221.PNG

That was off a VM using the vmxnet3 driver so that is why it shows 1000 and 10,000, and connected 10,000Mb/s ;) - no I don't have a 10Gb network running, which would be sweet though ;) I would assume the os is trimmed down, so you might not have ethtool - but you should be able to add it if not currently installed. There are all kinds of ways to set that in linux, windows is where its a pain in the ass to view your duplex. Unless your driver allows you to set it, there is really no way to set specific combinations of speed and duplex. As to cpu use?? hmm what are you doing? What is the current load? Do a top command, what does it show for load? budman@ubuntu:~$ top top - 13:34:19 up 2 days, 2:50, 1 user, load average: 0.13, 0.11, 0.12

Managed to install ethtool via apt-get install but running the command ethtool eth0 brings back

-bash: ethtool: command not found

Try:

-> whereis ethtool

If that doesn't work, do;

-> find / -name "ethtool"

Say it's in /usr/bin/ethtool, open a terminal and type /usr/bin/ethtool

Anyway I see you're now enjoying how much of an absolute pain the device is :p you're lucky you're using sound over HDMI because sound over analogue is very poppy and clicky, although you get the same kinda problem with HDMI in that it will skip parts of the song (like first 2 seconds of the beginning etc).

I haven't done anything with mine in quite a while, was thinking about a music player for car but until the ALSA drivers are actually out of alpha (I doubt it ever will if I'm honest) it's not feasible.

Thanks, whereis worked :)

looks like xbmc.bin is using most of the CPU, not limited to the Pi from a quick Google, others are thinking its a GPU driver issue, but probably not if its here too

pi@raspbmc:/sbin$ /sbin/ethtool eth0
Settings for eth0:
	    Supported ports: [ TP MII ]
	    Supported link modes:   10baseT/Half 10baseT/Full
							    100baseT/Half 100baseT/Full
	    Supports auto-negotiation: Yes
	    Advertised link modes:  10baseT/Half 10baseT/Full
							    100baseT/Half 100baseT/Full
	    Advertised pause frame use: Symmetric Receive-only
	    Advertised auto-negotiation: Yes
	    Link partner advertised link modes:  10baseT/Half 10baseT/Full
											 100baseT/Half 100baseT/Full
	    Link partner advertised pause frame use: Symmetric
	    Link partner advertised auto-negotiation: Yes
	    Speed: 100Mb/s
	    Duplex: Full
	    Port: MII
	    PHYAD: 1
	    Transceiver: internal
	    Auto-negotiation: on
Cannot get wake-on-lan settings: Operation not permitted
	    Current message level: 0x00000007 (7)
Cannot get link status: Operation not permitted

normally when you install a new package, you have to restart the shell session to see it in the path.

According to your load in top, the box isn't doing much of anything. 0.02 is nothing.

normally when you install a new package, you have to restart the shell session to see it in the path.

According to your load in top, the box isn't doing much of anything. 0.02 is nothing.

But the CPU usage is 75%, so it is doing quite a bit :p

Well your one process there that xmbc.bin is using cpu yes, but since your load is .02 - that means that is really the only thing using it. And when other processes ask for cpu time they are getting it. So its not over taxed or anything, just the process is doing something is all.

Now if you have high cpu by a process, and high load then tells me you got things in contention for cpu time, and your box could be overloaded - more things wanting cpu time, and not being able to get it. But that does not seem to be the case with your output.

Not sure what xmbc.bin is doing - but until is shows as load, there is nothing all that wrong with a process using cpu time. Only when that process HOGS the cpu time do you have a problem ;)

As you can see from this

top - 14:05:10 up 29 days, 13:31, 3 users, load average: 2.09, 1.62, 1.26

You got some load on this box, processes are asking for cpu time and having to wait while other processes finish, so the load goes UP.

Well your one process there that xmbc.bin is using cpu yes, but since your load is .02 - that means that is really the only thing using it. And when other processes ask for cpu time they are getting it. So its not over taxed or anything, just the process is doing something is all.

Now if you have high cpu by a process, and high load then tells me you got things in contention for cpu time, and your box could be overloaded - more things wanting cpu time, and not being able to get it. But that does not seem to be the case with your output.

Not sure what xmbc.bin is doing - but until is shows as load, there is nothing all that wrong with a process using cpu time. Only when that process HOGS the cpu time do you have a problem ;)

As you can see from this

top - 14:05:10 up 29 days, 13:31, 3 users, load average: 2.09, 1.62, 1.26

You got some load on this box, processes are asking for cpu time and having to wait while other processes finish, so the load goes UP.

Ah right I think I understand, so its not the same as a windows process that was showing 80% CPU, it just means that xbmc.bin is using more of the CPU time than other processes? But not necessarily a bad thing so long as other processes can jump in when needed

When I leave xbmc on the homescreen, xbmc.bin drops to about 28% cpu, but any other screen, even info screen and its back up to 80-95%

Load average is based on a bit of an old system and makes sense for single cpu and core systems only, if you've got 2 cores then you can in theory go up to a load of 2.0 instead of 1.0 etc. but it gives an overall basic idea of usage.

If for example you get X11 and fluxbox for the pi and try to move a window, you'll see the load rocket up to well over 1.0 and X11 will look frozen for a while.

"so its not the same as a windows process that was showing 80% CPU"

Nothing wrong with a windows process showing 80% cpu either. Depends on what priority its running at for example. If its running at low priority, then anything can take that cpu away from it.

Back in the day when running dnetc (distributed cracking project back a few years) Always saw 100% cpu usage, whatever cpu was not being used the dnetc client would use, but at lowest priority -- so it would give it back to anything that asked.

Same goes for the @home, and search for SETI projects - those clients all use up 100% if you let them. And just give it back when something needs it.

Having a process use 100% cpu does not have to mean the the machine is non responsive -- comes down to what the load is.

"so its not the same as a windows process that was showing 80% CPU"

Nothing wrong with a windows process showing 80% cpu either. Depends on what priority its running at for example. If its running at low priority, then anything can take that cpu away from it.

Back in the day when running dnetc (distributed cracking project back a few years) Always saw 100% cpu usage, whatever cpu was not being used the dnetc client would use, but at lowest priority -- so it would give it back to anything that asked.

Same goes for the @home, and search for SETI projects - those clients all use up 100% if you let them. And just give it back when something needs it.

Having a process use 100% cpu does not have to mean the the machine is non responsive -- comes down to what the load is.

Got you, basically why leave the CPU idle when something could be using it, so long as it gives way to anything that asks when needed

Well so far I can boot and be watching a standard def avi in around 30-50 seconds (ish) I haven't timed it yet, but very acceptable and the fact that it boots right into xbmc is great

Still having problems with full HD stuttering or freezing every now and then though but hopefully updates will sort that out

The addon for tvcatchup (UK digital freeview) installs and runs, but not even 1fps on any of the channels

http://www.dynebolic.org/

Just found that. Apparently v1 and v2 will run on a P1 with 64MB RAM and the kernel has been modified to run real-time... I dare say it'd be a pain in the ass to port it to the pi but I'm wondering if it'd increase performance.

Yep you won't get ANY webcam or TV capture/viewer device showing you video well at all because there is absolutely no hardware accelleration (well only h.264), I've tried with webcams and just gave up, you can use say python to record an image frame and it'll work (slowly) and complete but not view a video.

http://www.dynebolic.org/

Just found that. Apparently v1 and v2 will run on a P1 with 64MB RAM and the kernel has been modified to run real-time... I dare say it'd be a pain in the ass to port it to the pi but I'm wondering if it'd increase performance.

Yep you won't get ANY webcam or TV capture/viewer device showing you video well at all because there is absolutely no hardware accelleration (well only h.264), I've tried with webcams and just gave up, you can use say python to record an image frame and it'll work (slowly) and complete but not view a video.

Yea, I've had enough of xbmc for today :p

Back to normal linux for the rest of the night now, gonna have a try getting my wifi working with wheezy, then gonna try Arch or something

Need more sdcards, it takes that long to get one distro working moderately well that I don't want to wipe it :D

I`ll no doubt get faster and faster at setting them up as I learn

Make backup images of the SD on your PC using dd (dd if=/dev/sdf of=/home/user/RPi_BACKUP1.bk bs=8M) or put the images onto a hard drive, use an IDE/SATA -> USB cable and put the /boot/ directory on the SD card and modify it to use /dev/sda as the root partition in cmdline.txt

Make backup images of the SD on your PC using dd (dd if=/dev/sdf of=/home/user/RPi_BACKUP1.bk bs=8M) or put the images onto a hard drive, use an IDE/SATA -> USB cable and put the /boot/ directory on the SD card and modify it to use /dev/sda as the root partition in cmdline.txt

Running Windows on my PC, might be able to do the backups with a VM, I like the idea of the HDD though, means I would be able to edit the startup to boot from any image ?

Managed to get my wifi up by editing /etc/network/interfaces with my wireless info and then running sudo ifup wlan0

Bit of a b*tch only having 2 x USB ports, I don't have a hub yet so have to keep swapping between mouse and wifi or keyboard and mouse etc lol

Yep, if you use GPT then you can have say 21 partitions on it, 10 for the boot partitions (that you can get rid of), 10 for the main root partitions and 1 for swap, then you just need to edit cmdline.txt to change the root device (Although if it's using a different version kernel or named kernel you'd need to move the boot files from that OS over to there)

Yep, if you use GPT then you can have say 21 partitions on it, 10 for the boot partitions (that you can get rid of), 10 for the main root partitions and 1 for swap, then you just need to edit cmdline.txt to change the root device (Although if it's using a different version kernel or named kernel you'd need to move the boot files from that OS over to there)

Great thanks, once I get a bit more familiar with things I think I`ll do that

Just found this one the raspberry pi forums,

The same tool that you use to create the sdcards with (win32diskimager) can also be used to backup your sdcards via windows, just put the sdcard into the windows USB port > browse to "save destination" in win32diskimager > hit "read" :D

So I can swap and choose as I like now without losing anything or having to open a VM

Here is a video of Raspbian booting, browsing, and playing a couple of python windowed games, excuse the freezing of the video, since WP7.5 update it's ruined the camera recording

http://www.youtube.com/watch?v=N73WQ-F-7j4

--------------

Just flashed this image, boots straight to xbmc, faster than raspbmc and tvcatchup streaming works well

XBian 0.1 Features

------------------------------

- Fits on a 2GB SD card

- Low RAM usage (XBMC idle it uses 22 - 27 MB ram)

- Low CPU usage (XBMC idle it uses +/- 60%)

- Very smooth UI (XBMC idle @ 1366x768 +/- 57 FPS, @ 1920x1080 +/- 35 FPS)

- Auto mount USB

- Boot's up very fast

- Hard Float binaries (hardfp)

- Overclock without overvolting (arm_freq = 850, sdram_freq = 500, core_freq=450)

- Workaround for a kernel bug which hangs the Raspberry Pi under heavy network/disk loads (again, many thanks to DarkBasic).

- Boot's up XBMC automatically

http://www.raspberry...hp?f=35&t=12893

EDIT - It can play those HD samples that Raspbmc had trouble with, and plays 1080p .mkvs better too, although still what looks like buffering problems, freezing every 5 seconds then playing fine

It doesn't have any problems playing the video, but seems to have problems keeping it going without interuption, the investigation continues but after flashing the above, it really seems like better coding can fix it

Here is the Pi playing another HD sample, you see the stalling issue, but this one seems to sort itself out part way through and play the rest without any problem (Had to use my camera to record thanks to MS breaking my phone so no HD recording for this one)

http://www.youtube.com/watch?v=w8FF_GFCh7w

This topic is now closed to further replies.
  • Posts

    • DriversCloud 12.1.6 by Razvan Serea With DriversCloud (formerly My-Config.com), you can explore your computer easily, safely and free. The application quickly scans your PC and identifies the hardware and software components. DriversCloud then establishes a list of the different drivers compatible with your OS and hardware. Download the drivers needed for the proper functioning of your computer. To detect your drivers, DriversCloud also displays a detailed summary of your hardware and software configuration, analyzes your BSOD, monitors in real-time your PC voltages and temperatures and lets you share your configuration online. Once the hardware components have been detected, you will be able to obtain with just a few clicks the latest drivers corresponding to the identified hardware. You can record your configuration on the site for free, and can get the corresponding URL to post the configuration to technical forums, e-mail and social networks. You can also download the detection result (the configuration) as a PDF file. To protect the user's privacy and data confidentiality, a 4-level confidentiality system was created that filters the XML marks and gives control to the user. The default level can be modified in the preferences. Using the maximum level will prevent the user from publishing his configuration and generating a corresponding PDF file. In non-connected mode, each XML configuration is stored on the server for one day (for practical reasons). However, you are given the opportunity to manually delete it. Created in 2004, and continually improved, My-Config.com has established itself on the web as a free service to PC users running Windows and Linux operating systems. The service is designed to work with the most common Internet browsers (Edge, Firefox, Chrome, Safari). Download: DriversCloud 64-bit | 20.0 MB (Freeware) Download: DriversCloud 32-bit | 18.9 MB Link: DriversCloud Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Ocenaudio 3.19.3 by Razvan Serea  Ocenaudio is a full featured, fast and easy to use audio and music editor. It is the ideal software for people who need to edit and analyze audio files without complications. Ocenaudio also has powerful features that will please more advanced users. To assist ocenaudio development, a powerful toolset of audio editing, analysis and manipulation called Ocen Framework was created. ocenaudio is also based on Qt framework, a well known library for cross-platform development. Cross-platform support ocenaudio is available for all major operating systems: Microsoft Windows, Mac OS X and Linux. Native applications are generated for each platform from a common source, in order to achieve excelent performance and seamless integration with the operating system. All versions of ocenaudio have a uniform set of features and the same graphical interface, so the skills you learn in one platform can be used in the others. VST plugins support Ocenaudio supports VST (Virtual Studio Technology) plugins, giving its users access to numerous effects. Like the native effects, VST effects can use real-time preview to aide configuration. Real-time preview of effects Applying effects such as EQ, gain and filtering is an important part of audio editing. However, it is very tricky to get the desired result by adjusting the controls configuration alone: you must listen the processed audio. To ease the configuration of audio effects, ocenaudio has a real time preview feature: you hear the processed signal while adjusting the controls. The effect configuration window also includes a miniature view of the selected audio signal. You can navigate on this miniature view in the same way as you do on the main interface, selecting parts that interest you and listening to the effect result in real time. Multiselection for delicate editions To speed up complex audio files editing, ocenaudio includes multi-selection. With this amazing tool, you can simultaneously select different portions of an audio file and listen, edit or even apply an effect to them. For example, if you want to normalize only the excerpts of an interview where the interviewee is talking, just select them and apply the effect. Eficient edition of large files With ocenaudio, there is no limit to the length or the quantity of the audio files you can edit. Using an advanced memory management system, the application keeps your files open without wasting any of your computer's memory. Even in files several hours long, common editing operations such as copy, cut or paste happen almost instantly. Fully featured spectrogram Besides offering an incredible waveform view of your audio files, ocenaudio has a powerful and complete spectrogram view. In this view, you can analyze the spectral content of your audio signal with maximum clarity. Advanced users will be surprised to find that the spectrogram settings are applied in real time. The display is updated immediately when altering features such as the number of frequency bands, window type and size and dynamic range of the display. Ocenaudio 3.19.3 changelog: Fixes issues with MP4 files with more than 8 channels Fixes incorrect VBR detection for some CBR MP3 files Other bug fixes and improvements Download: Ocenaudio 64-bit | Portable | ~40.0 MB (Freeware) Download: Ocenaudio for Linux and Mac OS View: Ocenaudio Homepage | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • DiskGenius 6.2.0.1829 - All Versions: Free, Lite & Portable by Razvan Serea DiskGenius is a full-featured partition manager, which is designed to optimize disk usage for Windows users. It will efficiently help you recover lost data, resize/split partition, backup files, edit hex data, check bad sectors, manage virtual disks, erase data, etc.. Create a system image backup for current Windows with simple clicks to keep the operating system under protection. DiskGenius key features: Partition Management - It can create format, resize, extend, backup, split, hide and clone partition, both MBR and GPT are supported. Disk and partition conversion - Convert dynamic disk to basic, convert virtual disk format and convert MBR to GPT, convert primary partition to logical. File recovery - It can recover files deleted or emptied form recycle bin, recover files from damaged partition or disk and recover files by file type and supports file preview and file filter. Partition recovery - It is the best partition recovery program in that it can recover files from damaged, corrupted and RAW partitions, search for lost partition and recover files from it, besides, it can fix partition table. RAID recovery - It can reconstruct Virtual RAID and recover files from it, and all RAID types are supported. Sector Editor - A Hex editor is embedded to help users edit raw hex data and recover data manually. Backup and Restore - It can backup and restore partition including system partition, hard disk and partition table. Bad Tracks - It can check and repair bad sectors for all storage devices; check hard disk S.M.A.R.T. information. Delete files permanently - It can delete files permanently so that they can't be recovered by any data recovery software. Virtual Disk - It supports virtual disks, including VMware, Virtual PC and Virtual Box. Create WinPE bootable disk and you can manage disk partition when system crashes or there is no operating system on your computer. Support FAT12/FAT16/FAt32/exFAT/NTFS/EXT2/EXT3/EXT4 file system format. DiskGenius 6.2.0.1829 changelog: Add the "Disk Speed Test" feature. Add the "Windows Boot Repair and Conversion" feature. Add the BMB21-2019 erase standard to the "Erase Sectors" feature. Add support for restoring an individual partition from a PMFX disk image file. Enhanced The "Verify Or Repair Bad Sectors/Blocks" feature displays disk read speed in the detection window during scanning. The "Quick Partition" dialog box allows users to quickly select the number of partitions by pressing the numeric keys 1, 2, 7, 8, or 9. The "Set Volume Name" dialog box supports selecting preset volume labels provided by the software. The "Copy Sectors" feature supports resuming copy tasks after modifying the number of skipped bad sectors. Add the "TRIM Optimization" option to the format dialog box. The "Clone Partition" and "Clone Disk" features perform TRIM optimization on target partitions or disks before cloning. Add support for Not Equal To search conditions (prefixed with "!") when searching hexadecimal data in the sector editor. Optimize the display of capacity values in the program interface to show two decimal places. Add a minimize button to dialogs that may require long processing time. Enhance support for the ReFS file system. Enhance support for newer HIF and MP4 formats when recovering files by type. Enhance support for the EXT4 file system. Enhance compatibility of the "File Recovery" feature with special data structures. Fixed Fixed the issue that the selected file system type automatically reverted to NTFS after changing it to exFAT or EXT4 in the "Quick Partition" dialog box. Fixed inaccurate Unicode string search results in the "Sector Editor" feature. Fixed the issue that exceptions might occur when adding multiple disks in the "Erase Sectors" feature. Fixed the issue that insufficient target disk space was incorrectly reported in some cases when cloning, backing up, or restoring disks. Fixed the issue that folder modification timestamps were not preserved when copying files from ReFS partitions. Fixed the issue that Excel-format reports generated by features such as file copying or bad sector checking could not be opened when the report contained more than one million rows. Fixed the issue that folders were not displayed in the exclude-folder dialog box when backing up partitions to image files. Fixed the issue that the "Erase Sectors" feature could not be executed in some cases. Download: DiskGenius 6.2.0.1829 | 63.9 MB (Freeware, paid upgrade available) Download: DiskGenius Portable 64-bit | 40.0 MB Download: DiskGenius Portable 32-bit | 36.0 MB Download: DiskGenius Lite 64-bit | 13.4 MB Download: DiskGenius Lite 32-bit | 11.6 MB View: DiskGenius Home Page | DiskGenius Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • Week One Done
      agatameier earned a badge
      Week One Done
    • One Month Later
      agatameier earned a badge
      One Month Later
    • Week One Done
      ssd21345 earned a badge
      Week One Done
    • Contributor
      MarkHughes4096 went up a rank
      Contributor
    • Dedicated
      jordanspringer earned a badge
      Dedicated
  • Popular Contributors

    1. 1
      +primortal
      513
    2. 2
      +Edouard
      185
    3. 3
      PsYcHoKiLLa
      144
    4. 4
      ATLien_0
      95
    5. 5
      Steven P.
      75
  • Tell a friend

    Love Neowin? Tell a friend!