Показаны сообщения с ярлыком ubuntu. Показать все сообщения
Показаны сообщения с ярлыком ubuntu. Показать все сообщения

пятница, 19 апреля 2013 г.

skype + ubuntu + system tray + unity

Если скайп не показывается в трее в убунте под оболочкой юнити нужно проделать следующее (инфа с аскубунту):

1. Install the sni-qt libraries.

Install sni-qt Install banshee (click on the link), or with sudo apt-get install sni-qt sni-qt:i386 from the terminal, and then restart Skype. The tray/panel icon should now be back!
The reason this step is required is because sni-qt is installed automatically by the Ubuntu repository Skype package, but NOT by the Skype deb you directly download. Once Skype 4.0 is in the Ubuntu repos, you can install from there and this will no longer be necessary.

2. You may also need to whitelist the indicator

We don't know why, but for some systems this additional step is required before the indicator will show (thanks to Bruno Pereira!)
Steps:
  1. Install the package dconf-toolsInstall dconf-tools (click on the link), or from the terminal with sudo apt-get install dconf-tools
  2. Open dconf editor from the Dash (or dconf-editor from terminal):
    enter image description here
  3. On the left sidebar, use the triangles to navigate to desktop > unity > panel. On Ubuntu 12.10 you instead need to navigate to com > canonical > unity > panel. Double-click on the orange[JavaEmbedded...] part on the right, and add ,'skype' to allow the Skype indicator to show, as below:
    enter image description here
  4. Press Enter, close dconf editor, logout and login -- your indicator should now be back!

пятница, 19 октября 2012 г.

Ubuntu: disable touchpad

В терминале:
xinput list
Получаем:
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                id=12   [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Video Bus                                 id=7    [slave  keyboard (3)]
    ↳ Power Button                              id=8    [slave  keyboard (3)]
    ↳ Sleep Button                              id=9    [slave  keyboard (3)]
    ↳ Laptop_Integrated_Webcam_1.3M             id=10   [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=11   [slave  keyboard (3)]
    ↳ Dell WMI hotkeys                          id=13   [slave  keyboard (3)]
Убиваем тачпад!!!
xinput set-prop 12 "Device Enabled" 0

пятница, 21 сентября 2012 г.

phpmyadmin: максимальный размер загружаемого файла

upload_max_filesize, memory_limit и post_max_size в /etc/php5/php.ini 

phpmyadmin: Ошибки инсталяции

Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName

ServerName localhost в конфиге прописать

the requested url /phpmyadmin was not found on this server.

sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf

вторник, 11 сентября 2012 г.

MySql: default character set to utf8

В /etc/mysql/my.cnf добавить

[client]
default-character-set=utf8
[mysql]
default-character-set=utf8

[mysqld]
default-character-set = utf8    
collation-server = utf8_unicode_ci
init-connect='SET NAMES utf8'
character-set-server = utf8

UBUNTU: звук и в колонках и в наушниках (не переключается на наушники или колонки)

  1.  Добавляем ppa
     sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily
    
  2. Апдейтим репу
    sudo apt-get update
    
  3. Ставим нужный пакет
     sudo apt-get install alsa-hda-dkms
Ребутнуться

среда, 22 августа 2012 г.