Jump to content

sakesm

Members
  • Posts

    15
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. This I tried in Zero3 was no problem, although it was a long time ago @mr412
  2. @Stephen Graf I almost forgot to simulate the problem of audio disabling. In order to compile it to enable sound by default, I added a modification in armbian-audio-config #!/usr/bin/env bash # Check that we have the tools required available, otherwise exit with no error. # Use command -v, not which, which is deprecated. [[ -z $(command -v amixer) ]] && echo "Missing amixer; doing nothing." && exit 0 [[ -z $(command -v alsactl) ]] && echo "Missing alsactl; doing nothing." && exit 0 [[ -z $(command -v aplay) ]] && echo "Missing aplay; doing nothing." && exit 0 mixer_cmds() { parm=${3:-on} echo "sset '$1' '$2' '$parm'" echo "sset '$1' '$parm'" } mixer_set() { parm=${3:-unmute} echo "set '$1' '$2' '$parm'" } if [ -f "$HOME/.config/sound.conf" ]; then alsactl restore -f "$HOME/.config/sound.conf" else # get card num #card=`echo $1 | sed 's/[^0-9]*//g'` card1=$(aplay -l | grep "device 0" | awk '{print $3}') #echo $card1 for card in $card1; do ( #echo $card # set common mixer params mixer_cmds Master 0db mixer_cmds Front 100% mixer_cmds PCM 0db mixer_cmds Synth 100% # mute CD, since using digital audio instead mixer_cmds CD 0% mute # Only unmute Line and Aux if they are possibly used. # mixer_cmds Line 100% # mixer_cmds Aux 100% # mute mic mixer_cmds Mic 0% mute # ESS 1969 chipset has 2 PCM channels mixer_cmds PCM,1 100% # Trident/YMFPCI/emu10k1 mixer_cmds Wave 100% mixer_cmds Music 100% mixer_cmds AC97 100% mixer_cmds Surround 90% mixer_cmds 'Surround Digital' 90% mixer_cmds 'Wave Surround' 90% mixer_cmds 'Duplicate Front' 90% mixer_cmds 'Sigmatel 4-Speaker Stereo' 90% # CS4237B chipset: mixer_cmds 'Master Digital' 100% # DRC mixer_cmds 'Dynamic Range Compression' 90% # Envy24 chips with analog outs mixer_cmds DAC 100% mixer_cmds DAC,0 100% mixer_cmds DAC,1 100% # some notebooks use headphone instead of master mixer_cmds Headphone 100% mixer_cmds Speaker 100% mixer_cmds 'Internal Speaker' 0% mute mixer_cmds Playback 100% mixer_cmds Headphone 100% mixer_cmds Speaker 100% mixer_cmds Center 100% mixer_cmds LFE 100% mixer_cmds Center/LFE 100% # Intel P4P800-MX (Ubuntu bug #5813) mixer_cmds 'Master Playback Switch' on # set digital output mixer params mixer_cmds 'IEC958' 100% on mixer_cmds 'IEC958 Output' 100% mixer_cmds 'IEC958 Coaxial' 100% mixer_cmds 'IEC958 LiveDrive' 100% mixer_cmds 'IEC958 Optical Raw' 100% mixer_cmds 'SPDIF Out' 100% mixer_cmds 'SPDIF Front' 100% mixer_cmds 'SPDIF Rear' 100% mixer_cmds 'SPDIF Center/LFE' 100% mixer_cmds 'Master Digital' 100% mixer_cmds 'Analog Front' 100% mixer_cmds 'Analog Rear' 100% mixer_cmds 'Analog Center/LFE' 100% # ASRock ION 330 (and perhaps others) has 2 IEC958 channels mixer_cmds IEC958,0 on mixer_cmds IEC958,1 on # some ION2 has much more IEC958 channels ... mixer_cmds IEC958,2 on mixer_cmds IEC958,3 on # ASRock ION 330 has Master Front set to 0 mixer_cmds 'Master Front' 100% # Shuttle XS35GT needs this too mixer_cmds 'Master',0 100% on # and this for various Fusion devices like Zotac ZBOX mixer_cmds 'Front',0 100% on # NVidia CK804 sound devices mixer_cmds 'IEC958 Playback AC97-SPSA' 100% # Allwinner H3 Analog mixer_cmds 'Line Out' 0db on # Allwinner H618 Analog mixer_set 'Left Output Mixer DACL' 100% mixer_set 'Left Output Mixer DACR' 100% mixer_set 'Right Output Mixer DACL' 100% mixer_set 'Right Output Mixer DACR' 100% # Allwinner A20 Analog mixer_cmds 'Power Amplifier' 0db mixer_cmds 'Power Amplifier DAC' on mixer_cmds 'Power Amplifier Mute' on # Allwinner A64 Analog mixer_cmds Headphone 0db on mixer_cmds 'AIF1 Slot 0 Digital DAC' on # Amlogic G12 HDMI to PCM0 mixer_cmds 'FRDDR_A SINK 1 SEL' 'OUT 1' mixer_cmds 'FRDDR_A SRC 1 EN' on mixer_cmds 'TDMOUT_B SRC SEL' 'IN 0' mixer_cmds 'TOHDMITX I2S SRC' 'I2S B' mixer_cmds 'TOHDMITX' on # Amlogic G12 S/PDIF to PCM1 mixer_cmds 'FRDDR_B SINK 1 SEL' 'OUT 3' mixer_cmds 'FRDDR_B SRC 1 EN' on mixer_cmds 'SPDIFOUT SRC SEL' 'IN 1' mixer_cmds 'SPDIFOUT Playback' on # Amlogic GX HDMI and S/PDIF mixer_cmds 'AIU HDMI CTRL SRC' 'I2S' mixer_cmds 'AIU SPDIF SRC SEL' 'SPDIF' # RockPI 4B Analog mixer_cmds 'Right Headphone Mixer Right DAC' on mixer_cmds 'Left Headphone Mixer Left DAC' on # NanoPC T4 Analog mixer_cmds 'HPO L' on mixer_cmds 'HPO R' on mixer_cmds 'HPOVOL L' on mixer_cmds 'HPOVOL R' on mixer_cmds 'HPO MIX HPVOL' on mixer_cmds 'OUT MIXL DAC L1' on mixer_cmds 'OUT MIXR DAC R1' on mixer_cmds 'Stereo DAC MIXL DAC L1' on mixer_cmds 'Stereo DAC MIXR DAC R1' on ) | amixer -c "$card" --stdin > /dev/null 2>&1; done fi
  3. @Stephen GrafI tried switching between the two audio devices over the last few days and found that if I chose to use hdmi audio before playing a video, there was no speedup when I switched back and forth between the Default Sink while playing a video. However, if you choose to use analog audio before playing the video, the phenomenon will continue to occur after the video is played. I feel that this will be a breakthrough to solve the problem
  4. I replaced the build/packages/Plymouth - theme - armbian logo and recompile, but generated firmware boot or the default image display, be sure to perform the update - initramfs - u can success to replace, What should I do to replace it in the generated firmware
  5. Hello everyone! I'm compiling firmware for orangepizero3,then you want to customize the bootlogo. I tried to replace my bootlogo with armbian-logo-png in xx, but the compiled firmware did not change, so I would like to ask you how to modify it My compile command:./compile.sh BOARD=orangepizero3 BRANCH=current BUILD_DESKTOP=yes BUILD_MINIMAL=no DESKTOP_APPGROUPS_SELECTED='browsers multimedia' DESKTOP_ENVIRONMENT=xfce DESKTOP_ENVIRONMENT_CONFIG_NAME=config_base KERNEL_CONFIGURE=no RELEASE=bookworm PLYMOUTH=yes build
  6. Hello, everyone. @jock Thank you very much for the tutorial that allowed me to experience video acceleration in h618. Then I would like to know where the V4L2 patch is approximately, interested in this
  7. I have been trying to use these two to achieve hard decoding:https://linux-sunxi.org/Sunxi-Cedrus and https://linux-sunxi.org/Cedrus /libvdpau-sunxi . libva-v4l2-request I used someone else's version because it was a lower version: https://github.com/kwizart/libva-v4l2-request/tree/HACK_HEVC It can be compiled and installed successfully under the 6.6 kernel libva info: VA-API version 1.17.0 libva info: User environment variable requested driver 'v4l2_request' libva info: Trying to open /usr/lib/aarch64-linux-gnu/dri/v4l2_request_drv_video.so libva info: Found init function __vaDriverInit_1_17 libva info: va_openDriver() returns 0 vainfo: VA-API version: 1.17 (libva 2.12.0) vainfo: Driver version: v4l2-request vainfo: Supported profile and entrypoints VAProfileMPEG2Simple : VAEntrypointVLD VAProfileMPEG2Main : VAEntrypointVLD VAProfileH264Main : VAEntrypointVLD VAProfileH264High : VAEntrypointVLD VAProfileH264ConstrainedBaseline: VAEntrypointVLD VAProfileH264MultiviewHigh : VAEntrypointVLD VAProfileH264StereoHigh : VAEntrypointVLD VAProfileHEVCMain : VAEntrypointVLD Unfortunately, when I use vaapi, the kernel crashes,command:mpv -v --hwdec=vaapi The libvdpau-sunxi project compiles without modification, but some devices are no longer used in kernel 6.6 command:mpv -v --hwdec=vdpau There was no crash using vdpau, but as I said, the lack of a corresponding device caused it to become unusable and switch to soft decoding mpv -v --hwdec=vdpau IAmLegend-Trailer.mp4 [cplayer] Command line options: '-v' '--hwdec=vdpau' 'IAmLegend-Trailer.mp4' [cplayer] mpv 0.35.1 Copyright © 2000-2023 mpv/MPlayer/mplayer2 projects [cplayer] built on UNKNOWN [cplayer] FFmpeg library versions: [cplayer] libavutil 57.28.100 [cplayer] libavcodec 59.37.100 [cplayer] libavformat 59.27.100 [cplayer] libswscale 6.7.100 [cplayer] libavfilter 8.44.100 [cplayer] libswresample 4.7.100 [cplayer] FFmpeg version: 5.1.4-0+deb12u1 [cplayer] [cplayer] Configuration: meson configure build -Dprefix=/usr -Dbuildtype=plain -Doptimization=plain [cplayer] List of enabled features: alsa av-channel-layout caca cdda cplayer cplugins cuda-hwaccel cuda-interop dmabuf-interop-gl dmabuf-interop-pl dmabuf-wayland drm drm-is-kms dvbin dvdnav egl egl-drm egl-helpers egl-x11 ffmpeg ffnvcodec gbm gl gl-wayland glibc-thread-name glob glob-posix gpl iconv jack javascript jpeg jpegxl lcms2 libarchive libass libavdevice libbluray libdl libm libmpv-shared libplacebo libplacebo-next librt linux-fstatfs lua52 manpage-build memfd_create noexecstack pipewire plain-gl posix pulse rubberband rubberband-3 sdl2 sdl2-audio sdl2-gamepad sdl2-video sixel spirv-cross stdatomic threads uchardet vaapi vaapi-drm vaapi-egl vaapi-libplacebo vaapi-wayland vaapi-x-egl vaapi-x11 vdpau vector vt.h vulkan wayland wayland_protocols_1_24 x11 xv zimg zlib [cplayer] Reading config file /etc/mpv/encoding-profiles.conf [cplayer] Applying profile 'default'... [cplayer] Setting option 'v' = '' (flags = 8) [cplayer] Setting option 'hwdec' = 'vdpau' (flags = 8) [cplayer] Waiting for scripts... [osd/libass] libass API version: 0x1701000 [osd/libass] libass source: tarball: 0.17.1 [osd/libass] Shaper: FriBidi 1.0.8 (SIMPLE) HarfBuzz-ng 6.0.0 (COMPLEX) [osd/libass] Setting up fonts... [osd/libass] Using font provider fontconfig [osd/libass] Done. [cplayer] Set property: shared-script-properties -> 1 [cplayer] Set property: shared-script-properties -> 1 [cplayer] Done loading scripts. [cplayer] Running hook: ytdl_hook/on_load [ytdl_hook] ytdl:// hook [ytdl_hook] not a ytdl:// url [ifo_dvdnav] Opening IAmLegend-Trailer.mp4 [bdmv/bluray] Opening IAmLegend-Trailer.mp4 [file] Opening IAmLegend-Trailer.mp4 [demux] Trying demuxers for level=normal. [cplayer] Set property: shared-script-properties -> 1 [osd/libass] libass API version: 0x1701000 [osd/libass] libass source: tarball: 0.17.1 [osd/libass] Shaper: FriBidi 1.0.8 (SIMPLE) HarfBuzz-ng 6.0.0 (COMPLEX) [osd/libass] Setting up fonts... [osd/libass] Using font provider fontconfig [osd/libass] Done. [cplayer] Set property: shared-script-properties -> 1 [cplayer] Set property: shared-script-properties -> 1 [lavf] Found 'mov,mp4,m4a,3gp,3g2,mj2' at score=100 size=2048. [file] stream level seek from 131072 to 126886094 [demux] Detected file format: mov,mp4,m4a,3gp,3g2,mj2 (libavformat) [cplayer] Opening done: IAmLegend-Trailer.mp4 [find_files] Loading external files in . [cplayer] Running hook: ytdl_hook/on_preloaded [lavf] select track 0 [lavf] select track 1 [cplayer] (+) Video --vid=1 (*) (h264 1920x816 23.976fps) [cplayer] (+) Audio --aid=1 (*) (aac 6ch 48000Hz) [vo/gpu] Probing for best GPU context. [vo/gpu/opengl] Initializing GPU context 'wayland' [vo/gpu/opengl] Initializing GPU context 'x11egl' [vo/gpu/x11] X11 opening display: :0.0 [vo/gpu/x11] Display 0 (HDMI-1): [0, 0, 1920, 1080] @ 60.000000 FPS [vo/gpu/x11] Current display FPS: 60.000000 [vo/gpu/opengl] EGL_VERSION=1.4 [vo/gpu/opengl] EGL_VENDOR=Mesa Project [vo/gpu/opengl] EGL_CLIENT_APIS=OpenGL OpenGL_ES [vo/gpu/opengl] Trying to create Desktop OpenGL context. [vo/gpu/opengl] Choosing visual EGL config 0x9, visual ID 0x21 [vo/gpu/x11] The XPresent extension was found. [vo/gpu/x11] XPresent disabled. [vo/gpu/opengl] GL_VERSION='3.1 Mesa 22.3.6' [vo/gpu/opengl] Detected desktop OpenGL 3.1. [vo/gpu/opengl] GL_VENDOR='Panfrost' [vo/gpu/opengl] GL_RENDERER='Mali-G31 (Panfrost)' [vo/gpu/opengl] GL_SHADING_LANGUAGE_VERSION='1.40' [vo/gpu/opengl] Loaded extension GL_ARB_sync. [vo/gpu/opengl] Loaded extension GL_ARB_invalidate_subdata. [vo/gpu/opengl] Loaded extension GL_ARB_get_program_binary. [vo/gpu/opengl] Loaded extension GL_ARB_buffer_storage. [vo/gpu/opengl] Loaded extension GL_ARB_shader_image_load_store. [vo/gpu/opengl] Loaded extension GL_ARB_shader_storage_buffer_object. [vo/gpu/opengl] Loaded extension GL_ARB_arrays_of_arrays. [vo/gpu/opengl] Loaded extension GL_ARB_debug_output. [vo/gpu/opengl] Loaded extension GL_KHR_debug. [vo/gpu] Testing FBO format rgba16f [vo/gpu] Using FBO format rgba16f. [vo/gpu] Disabling HDR peak computation (one or more of the following is not supported: compute shaders=0, SSBO=1). [vo/gpu] No advanced processing required. Enabling dumb mode. [vo/gpu] Assuming 60.000000 FPS for display sync. [vd] Container reported FPS: 23.975986 [vd] Codec list: [vd] h264 - H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 [vd] h264_v4l2m2m (h264) - V4L2 mem2mem H.264 decoder wrapper [vd] h264_cuvid (h264) - Nvidia CUVID H264 decoder [vd] Opening decoder h264 [vd] Looking at hwdec h264-vdpau... [vo/gpu] Loading hwdec drivers for format: 'vdpau' [vd] Could not create device. [vd] No hardware decoding available for this codec. [vd] Using software decoding. [vd] Detected 4 logical cores. [vd] Requesting 5 threads for decoding. [vd] Selected codec: h264 (H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10) [vf] User filter list: [vf] (empty) [ad] Codec list: [ad] aac - AAC (Advanced Audio Coding) [ad] aac_fixed (aac) - AAC (Advanced Audio Coding) [ad] Opening decoder aac [ad] Requesting 1 threads for decoding. [ad] Selected codec: aac (AAC (Advanced Audio Coding)) [af] User filter list: [af] (empty) [cplayer] Starting playback... [file] stream level seek from 126886145 to 57472 [vd] DR failed - disabling. [vd] Using software decoding. [vd] Decoder format: 1920x816 yuv420p auto/auto/auto/auto/auto CL=mpeg2/4/h264 [vf] [in] 1920x816 yuv420p bt.709/bt.709/bt.1886/limited/display SP=1.000000 CL=mpeg2/4/h264 [vf] [userdeint] 1920x816 yuv420p bt.709/bt.709/bt.1886/limited/display SP=1.000000 CL=mpeg2/4/h264 [vf] [userdeint] (disabled) [vf] [autorotate] 1920x816 yuv420p bt.709/bt.709/bt.1886/limited/display SP=1.000000 CL=mpeg2/4/h264 [vf] [autorotate] (disabled) [vf] [convert] 1920x816 yuv420p bt.709/bt.709/bt.1886/limited/display SP=1.000000 CL=mpeg2/4/h264 [vf] [convert] (disabled) [vf] [out] 1920x816 yuv420p bt.709/bt.709/bt.1886/limited/display SP=1.000000 CL=mpeg2/4/h264 [af] [in] 48000Hz 5.1 6ch floatp [af] [userspeed] 48000Hz 5.1 6ch floatp [af] [userspeed] (disabled) [af] [convert] 48000Hz 5.1 6ch floatp [ao] Trying audio driver 'pipewire' [ao/pipewire] requested format: 48000 Hz, 5.1 channels, floatp [ao/pipewire] Headers version: 0.3.65 [ao/pipewire] Library version: 0.3.65 [W][09924.973570] pw.conf | [ conf.c: 939 try_load_conf()] can't load config client.conf: No such file or directory [E][09924.973889] pw.conf | [ conf.c: 963 pw_conf_load_conf_for_context()] can't load default config client.conf: No such file or directory [ao] Trying audio driver 'pulse' [ao/pulse] requested format: 48000 Hz, 5.1 channels, floatp [ao/pulse] Library version: 16.1.0 [ao/pulse] Proto: 35 [ao/pulse] Server proto: 4294967295 [ao/pulse] Channel layouts: [ao/pulse] - #fl [ao/pulse] - #fr [ao/pulse] - #fc [ao/pulse] - #lfe [ao/pulse] - #bl [ao/pulse] - #br [ao/pulse] - #flc [ao/pulse] - #frc [ao/pulse] - #bc [ao/pulse] - #sl [ao/pulse] - #sr [ao/pulse] - #tc [ao/pulse] - #tfl [ao/pulse] - #tfc [ao/pulse] - #tfr [ao/pulse] - #tbl [ao/pulse] - #tbc [ao/pulse] - #tbr [ao/pulse] result: 5.1 [ao/pulse] device buffer: 6718 samples. [ao/pulse] using soft-buffer of 9600 samples. [cplayer] AO: [pulse] 48000Hz 5.1 6ch float [cplayer] AO: Description: PulseAudio audio output [autoconvert] inserting resampler [swresample] format change, reinitializing resampler [swresample] 48000Hz 5.1 floatp -> 48000Hz 5.1 float [af] [out] 48000Hz 5.1 6ch float [cplayer] VO: [gpu] 1920x816 yuv420p [cplayer] VO: Description: Shader-based GPU Renderer [vo/gpu] DR path suspected slow/uncached, disabling..reconfig to 1920x816 yuv420p bt.709/bt.709/bt.1886/limited/display SP=1.000000 CL=mpeg2/4/h264 [vo/gpu] Resize: 1920x816 [vo/gpu] Window size: 1920x816 (Borders: l=0 t=0 r=0 b=0) [vo/gpu] Video source: 1920x816 (1:1) [vo/gpu] Video display: (0, 0) 1920x816 -> (0, 0) 1920x816 [vo/gpu] Video scale: 1.000000/1.000000 [vo/gpu] OSD borders: l=0 t=0 r=0 b=0 [vo/gpu] Video borders: l=0 t=0 r=0 b=0 [vo/gpu] Reported display depth: 8 [vo/gpu] Texture for plane 0: 1920x816 [vo/gpu] Texture for plane 1: 960x408 [vo/gpu] Texture for plane 2: 960x408 [vo/gpu] Testing FBO format rgba16f [vo/gpu] Using FBO format rgba16f. [vo/gpu] No advanced processing required. Enabling dumb mode. [cplayer] first video frame after restart shown [cplayer] audio ready [cplayer] starting audio playback [cplayer] playback restart complete @ 0.041708, audio=playing, video=playing [vo/gpu/x11] Disabling screensaver. [ao/pulse] starting AO [statusline] AV: 00:00:00 / 00:02:03 (0%) A-V: 0.000 [cplayer] Set property: shared-script-properties -> 1 [cplayer] Set property: shared-script-properties -> 1 [statusline] AV: 00:00:06 / 00:02:03 (5%) A-V: 0.000 [cplayer] EOF code: 5 [cplayer] finished playback, success (reason 3) [cplayer] [cplayer] Exiting... (Quit) [cplayer] Set property: shared-script-properties -> 1 [vo/gpu/x11] Enabling screensaver. That's all I've ever known and tried
  8. In pavucontrol, which is the Configuration in Volume Control, set the second Audio to off and exit. After playing the audio and opening the Volume Control at the same time, this problem will not occur and can be adjusted normally My understanding is that two Audio may have output conflict?
  9. Sorry, I don't have a device that supports hdmi audio I tried to use mpg123 to play audio, but as long as the Volume Control is turned on, the bug also appeared I'm still new to audio and video, so I don't know how to solve it
  10. Hello, everyone I used your patch @Stephen Graf https://github.com/stephengraf/armbian_build_sg/blob/main/patch/kernel/archive/sunxi-6.6/patches.armbian/sound-soc-h616.patch I found a bug when using it. If I turned on Volume Control in the middle of playing video or audio, the video or audio would suddenly speed up playing, even if I just turned on Volume Control without doing anything,very crazy😂
  11. I follow the documentation tutorial step by step, the compilation will sometimes download the kernel and uboot source code, sometimes not download, is there any directive to download all the source code
  12. Hello everyone Now I have finished compiling armbian once and want to check and change the device tree of uboot, but I don't know where to download it, only see the kernel source code in cache/source, so I want to ask
  13. Hello! I have a Zero2 board with 1GB of RAM. I compiled a Debian 12 desktop image for Zero2 using Armbian and I want to play online videos through a web browser. Unfortunately, the results have been disappointing as the performance for 1080p videos is very slow. I tried using swap, but it didn't help. I also attempted to play 1080p videos using MPV and VLC. MPV can still play the videos, but it feels sluggish, and VLC gets stuck on the screen until the playback is finished. I would like to know how to configure Zero2 on Linux to achieve video acceleration. I'm new to this, so I would appreciate some guidance. Thank you!
  14. Attempt to use a hub to plug into USB 3.0, and then plug the RTL8153b USB to Gigabit Ethernet port into the hub, but unexpectedly discover that the speed can reach Gigabit. /: Bus 06.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M /: Bus 05.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M /: Bus 04.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M /: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M |__ Port 1: Dev 3, If 0, Class=Hub, Driver=hub/4p, 5000M |__ Port 4: Dev 4, If 0, Class=Vendor Specific Class, Driver=r8152, 5000M /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 480M
  15. Under kernel 4.9, using a usb3.0 to Gigabit interface with RTL8153b card, the upstream and downstream speed can reach Gigabit. But with kernel5.10, the speed can't reach gigabit, and the driver file has been changed to the latest version, but still no effect. kernel5.10 Speed measurement root@orangepi3-lts:~# iperf3 -c 192.168.3.201 Connecting to host 192.168.3.201, port 5201 [ 5] local 192.168.3.146 port 44376 connected to 192.168.3.201 port 5201 [ ID] Interval Transfer Bitrate Retr Cwnd [ 5] 0.00-1.00 sec 24.8 MBytes 208 Mbits/sec 0 147 KBytes [ 5] 1.00-2.00 sec 23.5 MBytes 198 Mbits/sec 0 147 KBytes [ 5] 2.00-3.00 sec 23.5 MBytes 197 Mbits/sec 0 147 KBytes [ 5] 3.00-3.15 sec 3.66 MBytes 202 Mbits/sec 0 147 KBytes root@orangepi3-lts:~# iperf3 -c 192.168.3.201 -R Connecting to host 192.168.3.201, port 5201 Reverse mode, remote host 192.168.3.201 is sending [ 5] local 192.168.3.146 port 44380 connected to 192.168.3.201 port 5201 [ ID] Interval Transfer Bitrate [ 5] 0.00-1.00 sec 47.5 MBytes 399 Mbits/sec [ 5] 1.00-2.00 sec 48.4 MBytes 406 Mbits/sec [ 5] 2.00-2.99 sec 48.1 MBytes 406 Mbits/sec root@orangepi3-lts:~# lsusb -t /: Bus 06.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M /: Bus 05.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M /: Bus 04.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M /: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M |__ Port 1: Dev 2, If 0, Class=Vendor Specific Class, Driver=r8152, 5000M /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 480M
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines