-
Nejnovější příspěvky
Nejnovější komentáře
- TuITady: Zmena velikosti partitiony ve .vmdk (linuxovy file system)
- AlanYu: Distribuce #1 pro pana JS
- Franta Jahoda: Hello World :-)
Archivy
Rubriky
Základní informace
Monthly Archives: Prosinec 2014
TokuDB 7.5.3 (MySQL 5.5.40) on Oracle Linux 6.6
Fascinated by fractal trees? Astonished by TokuDB storage engine? Watching new trends where MySQL/MariaDB serves as baseline and competitive advantages are based on storage engines? Welcome! 🙂
Posted in MySQL
Leave a comment
Killing screen tearing (Manjaro 0.8.11 KDE)
This bug/feature is one of the longest in a linux history. Shortly – Compiz and other managers are providing you great desktop effects. On the other hand you can’t see any movie without screen tearing. Another pathetic moments in a … Continue reading
Posted in Linux
Leave a comment
Disable firewall+SELinux (CentOS 7 and similar…)
You know that feeling within testing where you need to virtualize at least one database server and you’re still facing connection issues? Call me piggie, but when I’m doing anything in a localhost realm, I’m skipping creating rules and always … Continue reading
Posted in Linux
Leave a comment
Flac->mp3 in command line
1) Be sure you have installed flac and lame:
1 2 3 4 5 6 7 8 9 |
sudo apt-get install flac lame [sudo] password for j: Reading package lists… Done Building dependency tree Reading state information… Done flac is already the newest version. flac set to manually installed. lame is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. |
2) In a flac directory, run comand
1 |
for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done |
-a-
Posted in Linux
Leave a comment