Reading Time: < 1 minuteThanks to the power of lsof:
lsof -i -P | grep -i process_lambda
Reading Time: < 1 minuteThanks to the power of lsof:
lsof -i -P | grep -i process_lambda
Reading Time: < 1 minuteOn Ubuntu, install flac.
#apt-get install flac lame
Put the following script in /usr/bin/ and give it a name (convert_flac.sh or flac2mp3.sh)
#!/bin/bash
FLAC=$1
MP3="${FLAC%.flac}.mp3"
[ -r "$FLAC" ] || { echo can not read file \"$FLAC\" >&1 ; exit 1 ; } ;
metaflac --export-tags-to=- "$FLAC" | sed 's/=\(.*\)/="\1"/' >tmp.tmp
cat tmp.tmp
. ./tmp.tmp
rm tmp.tmp
Reading Time: < 1 minute
# locale
LANG=en_US
LC_CTYPE= "en_US"
LC_NUMERIC= "en_US"
LC_TIME= "en_US"
LC_COLLATE= "en_US"
LC_MONETARY= "en_US"
LC_MESSAGES= "en_US"
LC_ALL=en_US
To change the current locale setting, first confirm that the desired locale is
installed on the system with:
Reading Time: < 1 minute
There is a simple and easy way to make sure the speaker of your pc will stop beeping everytime you issue a wrong command.
Try
sudo lsmod | grep pcspkr
If you can see
pcspkr
Turn it off