alsamixer
Once there, select the capture view by typing the tab key.
With the arrow keys select the column Capture and set it to the CAPTUR mode with the space key. Adjust the recording volume with the arrow keys. You can also set it up with the gnome volume control panel going to the capture tab.
Recording sound to an mp3 file
You’ll need the lame mp3 encoder. Install it by doing
sudo apt-get install lame
Type the following command
arecord -f cd -t raw | lame -x -r – out.mp3
Arecord captures the audio that goes through your computer and pipes it to the lame encoder, so you encode the audio directly to an mp3 file. You can specify more options to the lame encoder such as the bitrate with lame -x -b bitrate. Without specifying the bitrate it encodes to 128kbps constant bit rate cbr. If you want to record for an specific amount of time then:
arecord -f cd -d numberofseconds -t raw | lame -x -r – out.mp3
Recording sound to an ogg file
You’ll need the oggenc (the ogg encoder). Install it by doing
sudo apt-get install vorbis-tools
Type the following command
arecord -f cd -t raw | oggenc – -r -o out.ogg
And you’ll get your sound recorded to an ogg file. Take into account that we record directly to a compressed file, so there’s nothing in between, so you can record for hours saving an incredible amount of hard disk space.
You can also use vsound. it allows you to record the output of any standard OSS program (one that uses /dev/dsp for sound) without having to modify or recompile the program. It uses the same idea as the esddsp wrapper from the Enlightened Sound Daemon (in fact, vsound is based on esddsp). That is, it preloads a library that intercepts calls to open /dev/dsp, and instead returns a handle to a normal file. It also intercepts ioctl's on that file handle and logs them, to help convert the audio data from its raw form. Vsound then uses sox to convert the raw data to the desired file format.
Audacity, go to Edit->Preferences and select your sound card's output as the recording source (exact name of source varies with the driver).