The resolution is to edit:
sudo gedit /etc/modprobe.d/alsa-base.confand add on the end:
options snd-hda-intel model=inv-dmicReboot afterwards and it works like a charm :)
sudo gedit /etc/modprobe.d/alsa-base.confand add on the end:
options snd-hda-intel model=inv-dmicReboot afterwards and it works like a charm :)
possibly undefined macro: AM_PATH_CPPUNIT
syntax error near unexpected token `1.9.6'rTorrent uses autogen.sh script to generate proper configuration script. So, first thing is to compile CppUnit, be sure to remember to pass --prefix=$HOME/usr to CppUnit's configure script. make & make install as usual.
export ACLOCAL_FLAGS="-I $HOME/usr/include -I ../cppunit-VERSION"All right, now you're ready to go:
./autogen.sh
./configure --prefix=$HOME/usr
make
No package 'sigc++-2.0' foundOkay, get sources, configure with prefix, make and install. Great, but rTorrent still don't recognize it. The solution is to set another variable:
export PKG_CONFIG_PATH=$HOME/usr/lib/pkgconfigNow rTorrent should configure itself without any issues :)
rm -f scripts/{libtool,lt*}.m4
Permission denied (publickey).
tail -f /var/log/secure
(...)
Authentication refused: bad ownership or modes for directory /home/----/.ssh
ssh-keygen -t rsa
cat .ssh/id_rsa.pub | ssh server_login@server_address 'cat >> .ssh/authorized_keys'
mkdir PROJECT.git
cd PROJECT.git
git init-db --bare
cd PROJECT
git init
git remote add origin SERVER_PATH
git config branch.master.remote origin
git config branch.master.merge master
git add .
git commit -a -m 'initial commit'
git push origin master
mountSecond - if you know which partition is your desired ntfs partition, then check its id (let's pretend ntfs partition is first partition on second disk - disk2s1):
echo `sudo /System/Library/Filesystems/ntfs.fs/ntfs.util -k disk2s1`Third - ok, we have its id. Now edit /etc/fstab file (or create new if you don't have it) and put there (remember to put there your real disk UUID!):
UUID=your_ntfs_partition_id none ntfs rwDone. Just restart. Complicated? Well, its not that simple as installing some software but with three really simple steps your system is untouched and everything works. And there is another problem with NTFS-3G - it's not working on SL x64 ;) so for me its useless anyway.