merge
authorOleksandr Gavenko <gavenkoa@gmail.com>
Mon, 23 Mar 2009 19:56:47 +0200
changeset 52 c40837b0c482
parent 51 56d2ea852a2d (current diff)
parent 42 2146aa2221c0 (diff)
child 57 28bf1a282a70
merge
--- a/date.rst	Mon Mar 23 09:48:43 2009 +0200
+++ b/date.rst	Mon Mar 23 19:56:47 2009 +0200
@@ -12,7 +12,19 @@
 
   $ sudo date --utc --set="2009-02-22 12:12:00" +"%Y-%m-%d %H:%M:%S"
 
-and then timezone:
+May be prefer use ntpdate(8) command.
+
+* Get timezone.
+
+System wide configuration:
+
+  $ cat /etc/timezone
+
+* Get list of cupported timezone.
+
+  $ tzselect
+
+* Set timezone.
 
   $ sudo tzconfig
 Your current time zone is set to Europe/Kiev
--- a/digit-music.rst	Mon Mar 23 09:48:43 2009 +0200
+++ b/digit-music.rst	Mon Mar 23 19:56:47 2009 +0200
@@ -147,3 +147,10 @@
 See
 
   http://timidity.sourceforge.net/
+
+* Notes.
+
+See
+
+  http://mutopiaproject.org/index.html
+
--- a/ntp.rst	Mon Mar 23 09:48:43 2009 +0200
+++ b/ntp.rst	Mon Mar 23 19:56:47 2009 +0200
@@ -2,18 +2,19 @@
 
 * What is NTP?
 
-NTP is a protocol to set time on host using publicaly available NTP servers with right
-time.
+NTP is a protocol to synchronizing the clocks on host using publicly
+available NTP servers.
 
 * How use?
 
 To use you must know NTP servers. Here list some of them:
 
-0.debian.pool.ntp.org 1.debian.pool.ntp.org 2.debian.pool.ntp.org
+0.debian.pool.ntp.org 1.debian.pool.ntp.org
+2.debian.pool.ntp.org
 uk.pool.ntp.org       ua.pool.ntp.org
 
-Soem servers in national - can be found as ISO 639 code with .pool.ntp.org suffix.
-
+Some servers are national. They can be found as ISO 639 code with
+.pool.ntp.org suffix.
 
 ** Debian.
 
@@ -23,5 +24,11 @@
 
 and sync date with some NTP server:
 
-  # sudo ntpdate  0.debian.pool.ntp.org
+  # sudo ntpdate 0.debian.pool.ntp.org
+
+** Windows.
 
+See
+
+  http://support.microsoft.com/kb/q216734/
+  http://support.microsoft.com/kb/q223184/
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/prog-install.rst	Mon Mar 23 19:56:47 2009 +0200
@@ -0,0 +1,39 @@
+-*- mode: outline; coding: utf-8 -*-
+
+* Linux.
+
+Вообще используем систему пакетов, но если в репозиториях дистрибутива нет
+соотведствующего пакета см. рецепты ниже.
+
+** Без прав root.
+
+Лучшим решением, если у Вас нету прав root, будет установить ее в домашнем
+каталоге. Тут дело личных предпочтений. У меня это ~/usr.
+
+Если программа в бинарном виде - просто распаковываем:
+
+  $ cd /your/temp/dir
+  $ gzip -d -c prog.tar.gz | tar xf -
+  $ mv prog/* ~/usr
+
+Если программу придестя собирать из исходников,
+почти всегда можно указать ключ --prefix:
+
+  $ configure --prefix=$HOME/usr
+  $ make
+  $ make install
+
+Обычно run-инсталляторы разархивируют содержимое в $PWD/<prog-name>.
+В любом случае
+
+  $ ./nvidia-driver-1.2.9.run --help
+
+** С правами root.
+
+Если вы root то по Linux FHS ставим в /opt.
+
+Смотри:
+
+  http://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard
+
+Не забываем обновить переменную окружения PATH!