4 Configuring System
This chapter describes the specific operations for system configuration.
4.1 Finding Device IP
4.2 Remote Login
4.3 Configuring Storage Devices
4.4 Configuring Ethernet IP
4.5 Configuring Wi-Fi
4.6 Configuring Bluetooth
4.7 Configuring Audio
The ED-CLAWBOX includes one audio port (supporting headphone connection) and one external Speaker output. Both headphone and Speaker volumes are adjustable, and it supports recording input audio.
4.7.1 Adjusting Volume
The headphone and Speaker volumes can be adjusted manually.
4.7.1.1 Adjusting Volume via Desktop Icon
If you are using the Desktop version of the OS, you can directly adjust the headphone and Speaker volume via the desktop icon.
Steps:
- Click the
or
icon in the top-right corner of the desktop to open the volume control bar.
- Drag the slider of the volume control bar up or down to adjust the volume. Check or uncheck the Mute checkbox to mute or unmute the audio.
4.7.1.2 Adjusting Volume via Command Line
Supports adjusting the volume by opening the volume control interface via the command line.
Steps:
- Execute the following command in the command window to open the volume control interface.
alsamixer

- In the opened interface, view the current volume levels for the headphone and Speaker. Use the Left (←) and Right (→) arrow keys on the keyboard to select the option to adjust, and then use the Up (↑) and Down (↓) arrow keys to adjust the volume level. Press the M key to mute or unmute the audio.
| Key | Function |
|---|---|
| ↑ | Volume Up |
| ↓ | Volume Down |
| M | Mute or Unmute |
4.7.2 Configuring Recording
Supports recording input audio.
Preparation:
- Headphone (with MIC input capability) is connected to the audio port.
- Ensure the headphone volume is not muted.
Steps:
- In the command window, execute the following command to open the volume control interface, and ensure the headphone volume is not muted.
alsamixer

- Press
ESCto return to the command window. Execute the following command to query the device's sound card number.
aplay -l

- After obtaining the sound card number, execute the following command to start recording an audio file named "test" in MP3 format with a duration of 10 seconds.
arecord -f S16_LE -d 10 -D plughw:2 -q test.mp3
10represents the recording duration, in seconds (s), customizable.2represents the sound card number, obtained from the query.testrepresents the recorded audio file name, customizable.mp3represents the audio format. WAV format is also supported, customizable.
- Press
Ctrl+Cto stop recording.
TIP
The recorded audio file is saved in the /home/pi/ directory by default.
- Execute the following command to play the recorded audio.
aplay test.mp3
