私はKubuntu 11.10マシンのシステム管理者です。新しいユーザー(グループ "users"に属するなど)の基本設定はどこで設定しますか?
編集1:
言語を設定したい-現在、私の新しいユーザーは英語とブルガリア語を取得しています。私は彼らに英語とロシア語を取得させ、さらにAlt-CapsLockを入力言語切り替えの組み合わせに設定してもらいたい。
Edit 2:
どのように設定しますか
/usr/share/kde4
私がする時
kdesudo systemsettings
構成を保存します-ルート設定のみが変更されました-/usr/share/kde4
の設定は変更されません。
編集3:
新しいユーザーは、bashの動作の外観を制御する/etc/skel
ファイルを取得します。 KDEの新規ユーザーのデフォルトファイルはどうですか?どこに保存されていますか?
Edit 4:
ああ、私はいくつかのヒントを見つけました:
kde4-config --path config
kDEが構成を探すフォルダーのリスト(コロンで区切られた)を提供します。私のマシンは次のように応答しました:
/home/boris/.kde/share/config/
/etc/kde4/
/usr/share/kubuntu-default-settings/kde4-profile/default/share/config/
/usr/share/kde4/config/
/usr/share/desktop-base/profiles/kde-profile/share/config/
3行目は、KDEがデフォルトのオプションを取る場所のようです。だから、これらの膨大な設定を見つけました-それを設定するGUI方法はありません((。
5を編集:
最後に、ダミーのユーザーを作成し、構成し、特定のユーザーに設定を与える script を作成しました。秘-は、あるユーザーから別のユーザーにドットファイルを転送した後にchown
することです。私はそれをテストしました-それはうまく動作します。
ドットファイルを転送する script の記述を終了しました。その後、chown
sをすべて使用します。
編集:
約3年前にこのスクリプトをbashで書き直しました。そして、私はしばらくの間これを使用していました。ただし、私はこのスクリプトを何年も使用しておらず、このスクリプトをもう保守していません。今はこのスクリプトをレビューしませんでしたが、ずっと前に書いたので、高品質ではないと思います。
基本的な考え方は、基本的なドットファイルをgithubに保存し、スクリプトにこれらをダウンロードさせ、ユーザー名にパッチを適用して適切な権限を割り当てることです。
#!/bin/bash
# to get description use the -h flag
# You can see the structure of this code in emacs. For that eval the
# following lines:
# (mapc
# (lambda (language-mode-hook)
# (add-hook language-mode-hook
# (lambda ()
# (make-local-variable 'outline-regexp)
# (setq outline-regexp "^## ")
# (make-local-variable 'outline-heading-end-regexp)
# (setq outline-heading-end-regexp ":\n")
# (outline-minor-mode 1))))
# '(Shell-script-mode-hook sh-mode-hook))
# this makes use of outline-minor-mode and the default keys are:
# C-c @ C-t show top level structure
# C-c @ C-a show all
# for more see the Outline menu.
# TODO:
# update routine documntation?
# exit after a single error:
set -e
# ===========
## preambula:
PROGNAME=${0##*/}
PROGVERSION=4.02
NoColors=false
Dependencies=false
Root=false
Internet=false
Localhost=false
Base=`logname`
Update=false
Source=boris
Autostart=false
usage()
{
cat << EO
Usage: $PROGNAME <user>
This script install bkubuntu kubuntu set of programs and settings. It
assumes the user have x86_64 archeticture.
It does back-up all the configs, but it keeps only the latest back-up
-- so if You'll run this script twice in a row -- You'll lose Your
files. You might want to back up the original thing manually.
All of the options except for -u/--update require root privilages.
Examples
========
To install bkubuntu for Yourself::
cd /path/to/bkubuntu.bash
Sudo ./bkubuntu.bash -i
To install Your bkubuntu to root::
cd /path/to/bkubuntu.bash
Sudo ./bkubuntu.bash -r
To install bkubuntu from other user at localhost::
cd /path/to/bkubuntu.bash
Sudo ./bkubuntu.bash -l -s <that user>
To update Your bkubuntu::
bkubuntu.bash -u # provided bkubuntu.bash is in the PATH
Add -a if You want to have emacs, firefox, krusader, libreoffice
quickstart to run at start-up.
Options
=======
EO
cat << EO | column -s\& -t
-i, --internet & fetchs bkubuntu from the internet and installs it for the current user
-l, --localhost & fetchs bkubuntu from other user (-s)
-a, --autostart & also turn on the autostart script (starts emacs, firefox, krusader at start up)
-s, --source & source repository user, default to $Source
-u, --update & updates Your bkubuntu git repos from the internet (should not be done under Sudo)
-r, --root & transfers subset of Your bkubuntu to the root
-h, --help & show this output
-v, --version & show version information
--no-colors & disables coloring in output
EO
}
SHORTOPTS="hvars:ilu"
LONGOPTS="help,version,no-colors,autostart,root,source:,internet,localhost,update"
ARGS=$(getopt -s bash --options $SHORTOPTS --longoptions $LONGOPTS --name $PROGNAME -- "$@")
eval set -- "$ARGS"
while true; do
case $1 in
-a|--autostart)
Autostart=true;;
-r|--root)
Root=true;;
-s|--source)
Source=$2; shift;;
-i|--internet)
Internet=true;;
-l|--localhost)
Localhost=true;;
-u|--update)
Update=true;;
-h|--help)
usage; exit 0;;
-v|--version)
echo "$PROGVERSION"; exit 0;;
--no-colors)
NoColors=true;;
--)
shift; break;;
*)
shift; break;;
esac
shift
done
if $NoColors; then
BLUE=''
GREEN=''
RED=''
BLACK=''
else
BLUE='\033[94m'
GREEN='\e[0;32m'
RED='\033[91m'
BLACK='\033[0m'
fi
# ===========
## functions:
autostart () {
if [ -e /home/$Base/.kde/Autostart/bkubuntu_startup_simple.bash ]; then
rm /home/$Base/.kde/Autostart/bkubuntu_startup_simple.bash
fi
if ! [ -d /home/$Base/.kde/Autostart ]; then
mkdir /home/$Base/.kde/Autostart
fi
ln /home/$Base/cmp/devs/bk_automates/bkubuntu/bk_runs_at/bkubuntu_startup_simple.bash /home/$Base/.kde/Autostart/bkubuntu_startup_simple.bash
}
back-up_and_clean () {
if [ -d "$Base~" ]; then
rm -rf "$Base~"
fi
mkdir "$Base~"
mv -T $Base "$Base~"
mkdir $Base
cd $Base
echo -e "${RED}${PROGNAME}: ${GREEN}Done with backing up $Base (to $Base~).${BLACK}"
}
rebase () {
# these files should have ho spaces!
FILES="\
$PWD/.kde/share/config/plasma-desktoprc
$PWD/.kde/share/config/plasma-desktop-appletsrc
$PWD/.kde/share/apps/kfileplaces/bookmarks.xml
$PWD/.kde/share/config/krusaderrc
$PWD/.kde/share/apps/krusader/krbookmarks.xml
$PWD/.kde/share/apps/krusader/useractions.xml
$PWD/.kde/share/apps/krusader/krusaderui.rc
$PWD/.config/libreoffice/3/user/registrymodifications.xcu
$PWD/.kde/share/apps/kfileplaces/bookmarks.xml
$PWD/.kde/share/config/khotkeysrc
$PWD/.Thunderbird/n8fe137g.default/secmod.db
$PWD/.Thunderbird/n8fe137g.default/prefs.js
$PWD/.Thunderbird/n8fe137g.default/extensions.ini
$PWD/.Thunderbird/n8fe137g.default/extensions.sqlite
$PWD/.Thunderbird/n8fe137g.default/panacea.dat
$PWD/.Thunderbird/n8fe137g.default/startupCache/startupCache.8.little
$PWD/.mozilla/firefox/kkhrci0w.default/secmod.db
$PWD/.mozilla/firefox/kkhrci0w.default/prefs.js
$PWD/.mozilla/firefox/kkhrci0w.default/extensions.ini
$PWD/.mozilla/firefox/kkhrci0w.default/search.json
$PWD/.mozilla/firefox/kkhrci0w.default/extensions.sqlite
$PWD/.mozilla/firefox/kkhrci0w.default/startupCache/startupCache.8.little
$PWD/.mozilla/firefox/kkhrci0w.default/zotero/locate/engines.json"
# root doesn't have all these files:
if [ $Base = "root" ]; then
FILES=`echo $FILES | Perl -pe 's/ /\n/g' | Perl -pe 's/.*(emacs|libreoffice|autokey|bkubuntu|mozilla|Thunderbird).*//' | Perl -pe 's/^\n//'`
fi
for fileName in $FILES; do
sed -i "s/$Source/$Base/g" "$fileName"
done
echo -e "${RED}${PROGNAME}: ${GREEN}Done with rebasing.${BLACK}"
}
chown_logout () {
# ------
# chown:
chown -R $Base $PWD
echo -e "${RED}${PROGNAME}: ${GREEN}chown: everything went fine.\n You may wish to restart now.${BLACK}"
sleep 1
# ---------------
# finally logout:
secsTilLogout=10
while [ $secsTilLogout -gt 0 ]; do
sleep 1 &
clear
echo -e "${RED}${PROGNAME}: ${GREEN}Done. Documentation for hotkeys is available at:\n ~/bks/computer/HotKeyPoetry/index.html\n\n Unless You kill me with Ctrl-c --\n I'll logout computer in $secsTilLogout seconds.${BLACK}"
secsTilLogout=$(( $secsTilLogout - 1 ))
wait # the point of 'sleep 1 & -- wait' construct is not to take into account the time of `sleep' execution
done
qdbus org.kde.ksmserver /KSMServer org.kde.KSMServerInterface.logout 0 0 0
}
# ==========
## internet:
if $Internet; then
# -------------
# adding repos:
echo -e \\n | Sudo add-apt-repository ppa:kubuntu-ppa/ppa
echo -e \\n | Sudo add-apt-repository ppa:kubuntu-ppa/backports
echo -e \\n | add-apt-repository ppa:cassou/emacs
wget -q http://download.virtualbox.org/virtualbox/debian/Oracle_vbox.asc -O- | Sudo apt-key add -
# perhaps I should add
# deb http://download.virtualbox.org/virtualbox/debian precise contrib
# to /etc/apt/sources.list
wget -q "http://deb.playonlinux.com/public.gpg" -O- | apt-key add -
wget http://deb.playonlinux.com/playonlinux_squeeze.list -O /etc/apt/sources.list.d/playonlinux.list
apt-get update
echo -e "${RED}${PROGNAME}: ${GREEN}Done with repos.\n Now the back-up phase...${BLACK}"
sleep 1
# -----------
# installing:
echo -e \\n | apt-get install emacs-snapshot konsole krusader okular kolourpaint4 smplayer vlc audacious gwenview k3b synaptic kopete keepassx xclip firefox Thunderbird procps tree xsel libreoffice wmctrl git virtualbox playonlinux build-essential kubuntu-restricted-extras gfortran parallel sshfs ssh
echo -e "${RED}${PROGNAME}: ${GREEN}Done with installing prerequisites.\n Now the cloning stage...${BLACK}"
sleep 1
# --------------------
# preparing the place:
cd /home
back-up_and_clean
# -----------------
# clonning configs:
git clone https://github.com/bk322/bk_dots .
cp -R .bkubuntu/* . # copying dir structure
git clone https://github.com/bk322/bk_automates /home/$Base/cmp/devs/bk_automates
echo -e "${RED}${PROGNAME}: ${GREEN}Done with cloning configs.${BLACK}"
sleep 1
# parallel:
# dpkg -i /home/$Base/cmp/repo/parallel*.deb
# -----------------
# applying configs:
# autostart?
if $Autostart; then
autostart
fi
# ----------
# XULRunner:
mv /home/$Base/cmp/repo/.mozilla .
mv /home/$Base/cmp/repo/.Thunderbird .
rebase
chown_logout
fi
# =========
## copying:
if $Localhost; then
cd /home
back-up_and_clean
# ----------------------------------
# cloning configs from user $Source:
cd /home/$Base
git clone /home/$Source .
cp -R .bkubuntu/* . # copying dir structure
git clone /home/$Source/cmp/devs/bk_automates /home/$Base/cmp/devs/bk_automates
echo -e "${RED}${PROGNAME}: ${GREEN}Done with cloning configs from $Source.${BLACK}"
sleep 1
# -----------------
# applying configs:
# autostart?
if $Autostart; then
autostart
fi
# ----------
# XULRunner:
mv /home/$Base/cmp/repo/.mozilla .
mv /home/$Base/cmp/repo/.Thunderbird .
# -----------------------
# rebase, chown, restart:
rebase
chown_logout
fi
# ==========
## updating:
if $Update; then
# -------------
# update repos:
cd /home/$Base
git checkout -- . && git pull -u Origin master
cd /home/$Base/cmp/devs
git checkout -- . && git pull -u Origin master
cd /home/$Base
echo -e "${RED}${PROGNAME}: ${GREEN}Done with syncing gits.${BLACK}"
sleep 1
# ---------
# rebasing:
rebase
fi
# ======
## root:
if $Root; then
cd /
Base=root
back-up_and_clean
Source=`logname`
cd /home/$Source
listOfFiles=`git ls-files | Perl -pe 's/.*(libreoffice|autokey|bkubuntu|mozilla|Thunderbird).*//' | Perl -pe 's/^\n//'`
for File in $listOfFiles; do
Parents=${File#/home/$Source/}
cp --parents "$Parents" /root
done
# -----------------------
# rebase, chown, restart:
cd /root
rebase
chown_logout
fi
/ etc/skel内のすべてがコピーされるため、.bashrc
を含めるか、または同様に新しいユーザーのホームディレクトリにコピーされ、新しいユーザーの設定になります。自分のホームディレクトリの隠しファイルを調べて、そこにあるものを確認してください。 KDEおよび他のほとんどのアプリケーションは、ユーザーごとの設定をそこに配置します。
ls -la /home/$(whoami)/