Configuration Common: Difference between revisions

From miki
Jump to navigation Jump to search
 
(85 intermediate revisions by the same user not shown)
Line 3: Line 3:


== Linux ==
== Linux ==
Moved to [[Configuration Common Linux]].
* Initial install script to install common applications
<source lang=bash>
sudo apt-get install git etckeeper


== Common Issues ==
sudo vi /etc/etckeeper/etckeeper.conf # Select git, avoid daily commit, avoid auto-commit
See [[Common Issues]].
sudo etckeeper init
sudo etckeeper commit "1st commit"
sudo vi .gitignore # Ignore resolv.c* (and cups/subscriptions.* before Ubuntu Precise)
sudo git rm --cached resolv.c*
sudo git rm --cached cups/subscriptions.* # No longer needed on Ubuntu Precise and after
sudo git add .gitignore
sudo etckeeper commit "ignore resolv.c*, cups/subscriptions.*"


== Windows ==
sudo vi /etc/apt/sources.list # Enable / add all relevant repositories (partner...)
To be completed
sudo apt-get update
sudo apt-get install opera # or sudo dpkg -i opera...
sudo apt-get install libnss-mdns avahi-daemon mdns-scan synapse gitk git-gui git-doc mc ssh vim-gnome exuberant-ctags cscope ruby keepassx


* Install [[CHM]] work-around.
# Restore my profile
* Set '''region locale''' to ''English (United States)'', and set date format to <code>yyyy-MM-dd</code> (some excel sheets depend on locale settings).
sudo vi /etc/hosts # Add host 'griffin'
ssh griffin -C "cat /etc/hosts" # recover any needed host ip address
sudo vi /etc/hosts # ... and write them
sudo etckeeper commit "update /etc/hosts file"
git clone git@griffin:repositories/home.git
mv home/.git .
rm -rf home
git reset --hard
git st
export PATH=$PATH:$HOME/bin
set-network.sh
chmod 600 .ssh/*
chmod 644 .ssh/id_rsa.pub
mkdir tmp
git co opera -- .opera && git reset
git co mc -- .mc/ini && git reset
</source>
* Install the common repositories (see below)
* Install common applications
<source lang=bash>
# Common Applications
sudo apt-get install rpcbind # Use 'portmap' before oneiric ocelot
sudo apt-get install terminator smbclient smbfs nfs-kernel-server nfs-common autofs apt-file p7zip-full p7zip-rar \
dlocate thunderbird chromium-browser meld colordiff ttf-mscorefonts-installer qiv gthumb gnupg-agent renameutils wine \
mplayer mplayer-doc mplayer-fonts flashplugin-installer gnome-mplayer gecko-mediaplayer gimp gdmap gparted \
ubuntu-restricted-extras ubuntu-tweak app-install-data-medibuntu xbmc xsel compizconfig-settings-manager
sudo apt-file update
sudo /usr/share/doc/libdvdread4/install-css.sh
# Optional essentials
sudo apt-get install nmap
# Optional applications
sudo apt-get install gnugo qgo uligo cgoban quarry pgpgpg powertop
</source>
* Apply common settings (see below)
* Applications not from repositories:
** Panda glGo 1.4.1 (does not work on ''Oneiric 64-bit'')
* Install latest updates:
<source lang=bash>
sudo apt-get upgrade
</source>


=== Common repositories ===
== Wine ==
* Added [[Opera|Opera]]
* Added ''Synapse''
<source lang=bash>
sudo add-apt-repository ppa:synapse-core/ppa && sudo apt-get update
</source>
* Added [[Linux Software#Gnome Terminator|Gnome Terminator]] (not needed anymore for ''Ubuntu Precise'' and above)
* Added [[Ubuntu#Ubuntu Tweak|Ubuntu Tweak]]
* Added [[Ubuntu#Medibuntu|Medibuntu]]
* Added [[XBMC#Install|XBMC]]


=== Common Applications ===
=== Configuration ===


* Configure CD-ROM reader for audio cd extraction (see [[Wine]]).
{| class="install_log"
:First insert a ''data'' CD, then run <code>winecfg</code>. In the popup, go to the ''drives'' tab, and click ''auto-detect''.
|-
|[2011-12-19]||'''Opera''' (<tt>opera</tt>)||See [[Opera]] to fix apt key issues
|-
|[2012-06-03]||'''Synapse''' (<tt>synapse</tt>)||Using {{kb|Alt-{{kbkey|Space}}}} as shortcut (requires to disable {{kb|Alt}} for HUD, and {{kb|Alt-Space}} for Windows Menu in Compiz)
<source lang=bash>
sudo add-apt-repository ppa:synapse-core/ppa
sudo apt-get update && sudo apt-get install synapse
</source>
|-
|[2011-12-19]||'''Git''' (<tt>git gitk git-gui git-doc gitweb git-svn</tt>)||<small>[2011-12-15]</small> {{red|Updated to 1.7.8}} [https://kiwi.noekeon.org/miki/index.php?title=Git#From_sources Installed from sources]
|-
|[2011-12-19]||'''etckeeper''' (<tt>etckeeper</tt>)||Configured to use ''git'' as SCM, ''AVOID_DAILY_AUTOCOMMITS'', ''AVOID_COMMIT_BEFORE_INSTALL''
|-
|[2012-05-20]||'''mDNS''' (<tt>libnss-mdns avahi-daemon mdns-scan</tt>)||After install, do:
<source lang=bash>
mdns-scan
</source>
Machine should broadcast its ip address on ''griffin.local'' to all avahi clients. For some strange reason, avahi may append a <tt>-2</tt> suffix to broadcast name. To avoid that, edit <tt>/etc/avahi/avahi-daemon.conf</tt> and set '''host-name''' variable:
<source lang=text>
host-name=griffin
</source>
|-
|[2011-12-19]||'''Midnight Commander''' (<tt>mc</tt>)||See [[Linux_Commands#mc_.28Midnight_Commander.29|reference page]]. Use '''vi''' as standard viewer/editor. Installed version from mc official repository to fix file highlighting issue.
|-
|[2012-04-29]||'''AutoSSH''' (<tt>autossh</tt>)||
|-
|[2011-12-19]||'''SSH''' (<tt>ssh</tt>)||[[#SSH|Local settings]]
|-
|[2011-12-19]||'''Vim''' (<tt>vim vim-gnome exuberant-ctags</tt>)||including '''GVim''' to enable support of X clipboard
|-
|[2011-12-19]||'''Vim/Cscope''' (<tt>cscope</tt>)||
|-
|[2011-12-19]||'''Ruby''' (<tt>ruby</tt>)||... for Vim plug-in <tt>snipMate.vim</tt>
|-
|[2011-12-19]||'''Gnome Terminator''' (<tt>terminator</tt>)||See [[Linux Software#Gnome Terminator|Gnome Terminator]]
|-
|[2011-12-19]||'''Samba''' (<tt>smbclient smbfs</tt>)||
|-
|[2011-12-19]||'''NFS Server''' (<tt>nfs-kernel-server nfs-common rpcbind</tt>)||See [[NFS]] for more details; Created entries in <tt>/etc/exports</tt>. ''rpcbind'' replaces ''portmap'' since Oneiric.
|-
|[2011-12-19]||'''AutoFS''' (<tt>autofs</tt>)||See [[#Network|local config]]
|-
|[2011-12-19]||'''KeePassX''' (<tt>keepassx</tt>)||
|-
|[2011-12-19]||'''apt-file''' (<tt>apt-file</tt>)||
|-
|[2011-12-19]||'''p7zip''' (<tt>p7zip-full p7zip-rar</tt>)||
|-
|[2011-12-19]||'''dlocate''' (<tt>dlocate</tt>)||
|-
|[2011-12-19]||'''Thunderbird''' (<tt>thunderbird</tt>)||
|-
|[2011-12-19]||'''Google Chrome''' (<tt>chromium-browser</tt>)||
|-
|[2011-12-19]||'''Meld''' (<tt>meld</tt>)||Diff tool
|-
|[2011-12-19]||'''Color Diff''' (<tt>colordiff</tt>)||
|-
|[2011-12-19]||'''MS Truetype core fonts''' (<tt>ttf-msttcorefonts-installer</tt>)||
|-
|[2011-12-19]||'''Qiv''' (<tt>qiv</tt>)||
|-
|[2011-12-19]||'''gThumb''' (<tt>gthumb</tt>)||
|-
|[2011-12-19]||'''GPG Agent''' (<tt>gnupg-agent</tt>)||Added <code>use-agent</code> at end of <tt>~/.gnupg/gpg.conf</tt>
|-
|[2011-12-19]||'''Rename utils''' (<tt>renameutils</tt>)||
|-
|[2011-12-19]||'''Wine''' (<tt>wine</tt>)||See [[Configuration NXP Dell Latitude_E6500 - Wine|Wine page]]
|-
|[2011-12-19]||'''MPlayer''' (<tt>mplayer mplayer-doc mplayer-fonts</tt>)||
|-
|[2011-12-19]||'''Flash Plugin 10''' (<tt>flashplugin-installer</tt>)||First need to enable Ubuntu partner repository (<tt>deb http://archive.canonical.com/ubuntu lucid partner</tt>). Next <source lang="bash">sudo aptitude autoremove "flashplugin-*"
sudo aptitude install flashplugin-installer
</source>
|-
|[2011-12-19]||'''Quicktime plugin''' (<tt>gnome-mplayer gecko-mediaplayer</tt>)||To play Quicktime content in ''Opera'', ''Firefox''
|-
|[2011-12-19]||'''Gimp''' (<tt>gimp</tt>)||
|-
|[2011-12-19]||'''Graphical Disk Map''' (<tt>gdmap</tt>)||
|-
|[2011-12-19]||'''gparted''' (<tt>gparted</tt>)||
|-
|[2011-12-19]||'''Ubuntu restricted extras''' (<tt>ubuntu-restricted-extras</tt>)||shall install automatically '''libdvdread4'''
|-
|[2011-12-19]||'''libdvdcss2'''||Installed via <code>sudo /usr/share/doc/libdvdread4/install-css.sh</code> (see also [https://help.ubuntu.com/community/RestrictedFormats/PlayingDVDs])
|-
|[2011-12-19]||'''Ubuntu tweak''' (<tt>ubuntu-tweak</tt>)||see [[Ubuntu#Ubuntu Tweak|Ubuntu Tweak]]
|-
|[2011-12-19]||'''Medibuntu application center''' (<tt>app-install-data-medibuntu</tt>)||This install medibuntu apps in Ubuntu Application Center
|-
|[2011-12-19]||'''XBMC''' (<tt>xbmc</tt>)||see [[XBMC#Install|XBMC]]
|-
|[2011-12-31]||'''XSel''' (<tt>xsel</tt>)||
|-
|[2012-04-29]||'''Compiz config settings manager''' (<tt>compizconfig-settings-manager</tt>)||
|-
!colspan="3" align="left"|'''Optional Applications:'''
|-
|[2011-12-19]||'''GNU Go''' (<tt>gnugo</tt>)||
|-
|[2011-12-19]||Various '''Go''' games (<tt>qgo uligo cgoban</tt>)||
|-
|[2011-12-19]||'''Quarry''' (<tt>quarry</tt>)||Board games Go, Amazons, and Reversi
|-
|[2011-12-19]||'''PGP''' (<tt>pgpgpg</tt>)
|-
|[2011-12-19]||'''PowerTop''' (<tt>powertop</tt>)||
|-
!colspan="3" align="left"|'''Applications not from repositories:'''
|-
|[2011-12-19]||'''Panda glGo 1.4.1'''||See [[Linux Software#Panda glGo|local page]] &mdash; does not work on ''Oneiric 64-bit''
|}


=== Applications ===
'''Optional Essentials''':


{| class="install_log"
{| class="install_simple_log"
|-
|-
|'''Exact Audio Copy 1.0 b3''' (<tt>eac-1.0beta3.exe</tt>)||
|[2012-05-24]||'''nmap''' (<tt>nmap</tt>)||For use with my git ''prj'' script
* Needs a [[Wine#Exact Audio Copy|workaround]] to install:
|}

=== Common Settings ===
==== Network ====
<ul>
<li>'''SAMBA/NFS CLIENT''' - Mount '''mnemosyne''' shares as '''NFS autofs''' (see [https://help.ubuntu.com/community/Autofs]) and as '''SMB autofs'''</li>
<ul>
<li>Enabled/created the following automounters in <tt>/etc/auto.master</tt>:</li>
{{pl2|<source lang="bash" enclose="prevalid">
/net /etc/auto.net
/smb/mnemosyne /etc/auto.smb.mnemosyne
</source>}}
<li>Created configuration file '''<tt>/etc/auto.smb.mnemosyne</tt>'''
<li>Created SMB credential files '''<tt>/etc/auto.smb.mnemosyne.*</tt>''' (see <code>man mount.cifs</code>)</li>
<li><s>Created path for mount points:</s></li>
<s><source lang="bash">
sudo mkdir /net
sudo mkdir -p /smb/mnemosyne
# ls /net/mnemosyne
# sudo mkdir -p /mnt/mnemosyne
# for i in /net/mnemosyne/volume1/*; do sudo ln -s $i /mnt/mnemosyne/$(basename $i); done
</source></s>
</ul>
</ul>

Or recover settings from an already configured host:
<source lang="bash">
<source lang="bash">
cd ~/.wine/drive_c/Program\ Files\ \(x86\)/Exact\ Audio\ Copy/
scp griffin:tmp/autofs.tgz . # Configure autofs
regsvr32 sql*
sudo tar -xvzf autofs.tgz
sudo cp etc/* /etc
</source>
</source>
* FreedB name set to ''ABBA - Number Ones \ 03 Dancing Queen - ABBA''

* FLAC &mdash; set compression to <tt>-8</tt>
====Users====
|}
<source lang=bash>
sudo useradd -s /bin/bash -m -u 1100 marie
sudo useradd -s /bin/bash -m -u 1200 isma
sudo useradd -s /bin/bash -m -u 1300 emma
sudo passwd marie
sudo passwd isma
sudo passwd emma
</source>

====X11====
* Custom keyboard mapping '''be''':
<source lang=bash>
# From my profile
sudo cp ~/etc/be /usr/share/X11/xkb/symbols/be
</source>

== Windows ==
To be completed

Latest revision as of 08:13, 17 April 2019

Any

To be completed

Linux

Moved to Configuration Common Linux.

Common Issues

See Common Issues.

Windows

To be completed

  • Install CHM work-around.
  • Set region locale to English (United States), and set date format to yyyy-MM-dd (some excel sheets depend on locale settings).

Wine

Configuration

  • Configure CD-ROM reader for audio cd extraction (see Wine).
First insert a data CD, then run winecfg. In the popup, go to the drives tab, and click auto-detect.

Applications

Exact Audio Copy 1.0 b3 (eac-1.0beta3.exe)
cd ~/.wine/drive_c/Program\ Files\ \(x86\)/Exact\ Audio\ Copy/
regsvr32 sql*
  • FreedB name set to ABBA - Number Ones \ 03 Dancing Queen - ABBA
  • FLAC — set compression to -8