February 22nd, 2012
My Linux printer was scaling down 4x times each printout, except ones from “document viewer”. Turned out that default option “Pages per sheet” in CUPS was reset to 4.
In order to set default value of “Pages per sheet” in CUPS to 1:
1)Stop cups: /etc/init.d/cups stop
2)edit file /etc/cups/printers.conf and set
Option number-up 1
3)Start cups: /etc/init.d/cups start
Posted in Linux | No Comments »
February 11th, 2012
Edit file /usr/share/applications/AdobeReader.desktop
Change line: Exec=acroread to Exec=acroread %U
Run: sudo update-desktop-database
Posted in Linux | No Comments »
November 19th, 2011
Using gconf-editor it is necessary to modify
/desktop/gnome/sound/default_mixer_device
to value:
alsamixer:default
Full info here
Posted in Linux | No Comments »
October 4th, 2011
1)Set global limits in file /etc/php5/apache2/php.ini:
upload_max_filesize = 32M
post_max_size = 32M
2)Set local limits in /usr/share/roundcube/.htaccess
php_value upload_max_filesize 16M
php_value post_max_size 17M
php_value memory_limit 256M
P.S. Perhaps you will need to adjust your Postfix SMTP server message size limit in /etc/postfix/main.cf
message_size_limit = 33554432
Posted in Linux | No Comments »
October 3rd, 2011
If Mendeley desktop for linux shows warning about OpenOffice plugin and “unopkg” then you have to reinstall Mendeleywith Open Office / Libre Office runnng in the background.
Posted in Apps, Linux | No Comments »
September 26th, 2011
Seems that program mail-notification lacks some gnome icons. For theme “clearlooks” they can be created using script:
cd /usr/share/icons/gnome
for f in 8 16 22 24 256 32 48
do cp $f'x'$f/status/stock_mail.png $f'x'$f/status/stock_unknown.png
done
update-icon-caches ./
Posted in Linux | No Comments »
September 18th, 2011
add card name to
/Applications/Adobe Premiere Pro CS5.5/Adobe Premiere Pro CS5.5.app/Contents/cuda_supported_cards.txt
verify acceleration (and get card name) via command:
/Applications/Adobe Premiere Pro CS5.5/Adobe Premiere Pro CS5.5.app/Contents/GPUSniffer.app/Contents/MacOS/GPUSniffer
Posted in Apps, MacOS | No Comments »
September 16th, 2011
Posted in Linux | No Comments »
September 16th, 2011
vmware-modconfig –console –install-all
Posted in Linux | No Comments »
September 16th, 2011
apt-get -o Acquire::http::No-Cache=True -o Acquire::BrokenProxy=true update --fix-missing
Posted in Linux | No Comments »