Install with "Desktop" pre-configured installation.
And remove Oracle's unbreakable enterprise kernel (uek):
yum erase kernel-uek*
- *
kernel-devel
(for VirtualBox driver compilation) gcc-c++
make
yum erase kernel-uek*
kernel-devel
(for VirtualBox driver compilation)gcc-c++
make
cd /etc/apache2/mods-enabled
sudo ln -s ../mods-available/userdir.load .
sudo ln -s ../mods-available/userdir.conf .
sudo apache2ctl restart
~/public_html
should be accessible from http://host/~username
/etc/apache2/mods-enabled/php5.conf
yum install httpd
/etc/sysconfig/iptables
if it is not there: -A RH-Firewall-1-INPUT -m tcp -p tcp --dport 80 -j ACCEPT
yum install xorg-x11-server-Xorg gnome-desktop gdm
C
: handle to Blender context__builtins__
: Built-ins of Python 3bpy
: Top level Blender Python API module/etc/apt/apt.conf
and put APT::Install-Recommends "false";
in it.
g++
gdb
openjdk-6-jre
*freeglut3-dev
*dia
*mysql-server
*libmysql-java (the JDBC driver)
*mysql-admin
*python-mysqldb
*apache2
*php5
*php5-mysql
*php5-sqlite
*libqt4-dev
*libqt4-opengl-dev
*libqt4-sql-sqlite
*qt4-doc
*qt4-dev-tools
*qt4-designer
vinagre (the client; you might want to disable the keyboard shortcuts in the preferences menu)
vino (the server)
alsa-utils
audacious
libdvdcss2
non-free-codecs
*vlc
*mozilla-plugin-vlc
*banshee
*banshee-extension-soundmenu (for ubuntu 11.04)
*totem
Gaming
playonlinux
(front end of wine)
Printing
system-config-printer-gnome
cups
*smbclient (for Windows shared printing)
*hplip (HP printer drivers)
Configuration
Enable audio:
alsamixer
- Press "M" to (un)mute channels
Clear screen when logout:
~/.bash_logout
- insert single command
clear
Disable Ctrl-Alt-Del:
/etc/init/control-alt-delete.conf
- comment out the actual command line
Let vim
display line numbers:
sudo echo set nu >> /usr/share/vim/vimrc
(if there is no such line)
Secure login/out logs:
sudo chmod 640 `sudo find /var -name ?tmp`
NetworkManager system tray icon:
- edit
/etc/NetworkManager/nm-system-settings.conf
- make the line read
managed=true
sudo /etc/init.d/network-manager restart
Stop GDM from auto starting:
/etc/init/gdm.conf
- comment out all "start on" stuff
Configure GRUB:
/etc/default/grub
update-grub
MySQL
- Add line
default-storage-engine=INNODB
to /etc/mysql/my.cnf
- to reset root password:
sudo dpkg-reconfigure mysql-server-5.1
Remote login
vino-preferences
kde-plasma-desktop
(xserver-xorg
and kdm
included)chromium-browser
flashplugin-installer
language-support-??
kchmviewer
network-manager-kde
jockey-kde
g++
make
gdb
openjdk-6-jre
qt4-dev-tools
/etc/NetworkManager/NetworkManager.conf
managed=true
sudo service network-manager restart
yum -y remove *.i386 *.i486 *.i586 *.i686
[main]
in /etc/yum.conf
:exclude=*.i386 *.i586 *.i686
chkconfig mysqld on
/etc/init.d/mysqld start
CREATE USER 'user1'@'localhost' IDENTIFIED BY 'passpass';
(passpass
is the password you use to login)DROP USER 'user2'@'localhost'
GRANT ALL ON *.* TO 'user1'@'localhost';
(wildcard % is allowed for * match)USE mysql
UPDATE user SET password=PASSWORD("passpass") WHERE User='user1';
FLUSH PRIVILEGES;
/etc/my.cnf
for Fedora-based linux; /etc/mysql/my.cnf
for Debian-based linux), so it looks like this:[client]
max_allowed_packet=1024M
[odbc]
max_allowed_packet=1024M
[mysqld]
max_allowed_packet=1024M
slave_transaction_retries=128
default-storage-engine=INNODB
datadir=/mnt/MD_1000/mysql
user = mysql
socket = /var/run/mysqld/mysqld.sock
port = 3306
/sbin/iptables -A INPUT -i eth0 -p tcp --destination-port 3306 -j ACCEPT
/sbin/iptables -A INPUT -i eth0 -s 10.5.1.3 -p tcp --destination-port 3306 -j ACCEPT
service iptables save
mysqldump -u [username] -p [databaseName] --where="true limit 100" > dump.sql