blank screen on ubuntu ati graphics

sudo vi /etc/default/grub GRUB_DEFAULT=0 GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash nomodeset” GRUB_CMDLINE_LINUX=”” sudo update-grub

Змонтувати папку з віддаленого сервера в локальну файлову систему Ubuntu

Для того, щоб змонтувати віддалену папку в локальну файлову систему можна використати утиліту sshfs Спочатку встановимо sshfs apt-get install sshfs І сама команда монтування sshfs user@remote_server:/path/to/folder /path/to/local/folder

ubuntu vnc key d show desktop

3  solutions: 1) dbconf   org > gnome > desktop > wm > keybindings change show-desktop = [‘<Alt>d’] 2) 1. sudo apt-get install compizconfig-settings-manager 2. Run the compiz config manager: ccsm (no sudo) 3. In the compiz config manager: General (left side) -> General Options (right side) -> Key bindings (tab) -> Show Desktop (with the […]

Ubuntu 13.10 layout change doesnt work

After upgrading Ubuntu 13.04 to 13.10 i cant switch layout using “Shift+Ctrl”. As for now i use Ctrl + Space to change layout More details you can found at https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1218322

ubuntu vncserver on boot

Install vncserver and run it to set up password. Create file as /etc/init.d/vncserver (DONT FORGET TO MODIFY PARAMS LIKE USER). #!/bin/sh -e ### BEGIN INIT INFO # Provides: vncserver # Required-Start: networking # Default-Start: S # Default-Stop: 0 6 ### END INIT INFO PATH=”$PATH:/usr/X11R6/bin/” # The Username:Group that will run VNC export USER=”MYUSER” #${RUNAS} # […]

tightvncserver ubuntu no menu

sudo apt-get install gnome-panel /home/user/.vnc/xstartup #!/bin/sh # Uncomment the following two lines for normal desktop: unset SESSION_MANAGER unset DBUS_SESSION_BUS_ADDRESS #exec /etc/X11/xinit/xinitrc gnome-session –session=gnome & [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources xsetroot -solid grey vncconfig -iconic & #x-terminal-emulator -geometry 1280×1024+10+10 -ls -title “$VNCDESKTOP Desktop” & #x-window-manager & gnome-panel […]

Google Drive in Ubuntu linux

Google Drive client is’nt available in Ubuntu. Grive – is an open source Linux CLI solution for Google Drive. Lets install grive sudo add-apt-repository ppa:nilarimogard/webupd8 sudo apt-get update sudo apt-get install grive Ok, grive is installed. Now i will create a folder in my home direcory and mount my Google Drive there mkdir -p ~/GDrive […]