Utilitats i trucs
|
Index
|
- Sistemes operatius
-
- Maquinari
-
- Programari
-
- Oficina
-
- Ciències
-
- Bibliografia
-
- Biblioteques XML
-
- CRM
-
- Text
-
- Gràfics
-
- Imatge / Image
- Sincronització
-
- Gestió del temps
-
- Calendaris
-
- Bases de dades
-
- DirectFB
- SCM (source control management)
-
- Seguretat / Security
-
- OpenSSL
-
- Claus / Keys
- CA
- Certificats / Certificates
- Revocació / Revocation
- Gestió de parcs d'ordinadors
-
- Tasques / Tasks
-
|
- Desenvolupament
-
- Àudio / Vídeo
-
- TV
-
- WWW
-
- Correu electrònic / E-mail
-
- Xarxes
-
- Flameproject
|
|
|
- A la instal·lació de Linux: posar el Lilo a
la partició principal de Linux (NO al Master Boot Record). Si
teniu problemes perquè la vostra partició comença en un cilindre
més gran que 1024, proveu a afegir l'opció
lba32
(una línia sola, cap al principi) al fitxer /etc/llilo.conf .
- Des de Linux: si la partició principal és, per exemple
/dev/hda7 :
dd if=/dev/hda7 of=/root/bootsec.lin bs=512
count=1
- Des de Linux: moure el fitxer creat a la partició MSWindows:
cp /root/bootsec.lin /mnt/<partició de
MSWindows>
Si no podem muntar el disc de MSWindows (perquè sigui NTFS i no
VFAT, per exemple), podem gravar el fitxer en un disquet (cp
/root/bootsec.lin /mnt/floppy ) i copiar-lo a c:\bootsec.lin
des de MSWindows.
- Des de Windows 2000: afegir al fitxer
c:\boot.ini
la línia
c:\bootsec.lin = "Linux"
- Si tot ha anat bé, quan arrenquem l'ordinador, el loader
de W2000 ens demanarà si volem arrencar des de Linux o des de
W2000.
|
Resin
|
- La variable d'entorn JAVA_HOME ha de
contenir l'adreça de la distribució del JDK:
- csh: en el fitxer .cshrc
setenv JAVA_HOME /usr/local/jdk1.2.2/
- bash: en el fitxer .bashrc
JAVA_HOME=/usr/local/jdk1.2.2/
export JAVA_HOME
|
|
Per a fer servir el Resin amb l'Apache
(assegureu-vos que teniu l'apache-devel) heu de posar aquestes
opcions quan compileu el Resin (tot en una línia):
- ./configure
--with-apache-libexec=/usr/lib/apache
--with-apache-include=/usr/include/apache
--with-apache-conf=/etc/httpd/conf/httpd.conf
|
Resin i MS Internet Information Server
|
En el fitxer resin.conf
una configuració d'aquest tipus no funciona:
<http-server>
<http-port>8888<http-port/>
<app-dir>doc<app-dir/>
<http-server/>
Ha de ser tot en una sola línia:
<http-server port='8888' app-dir='doc'/>
|
|
- Installation
-
- Versions
-
- Config files, service start/stop
|
config
|
modules config
|
vhost config
|
start/stop
|
file
|
default docs
(DocumentRoot ...) |
default cgi-bin
(ScriptAlias /cgi-bin/ ...) |
file
|
file
|
Mageia
|
/etc/httpd/conf/http.conf
|
/var/www/html/index.html
|
/var/www/cgi-bin/
|
|
/etc/httpd/conf/vhosts.d/*.conf
|
# service httpd start
|
CentOS
|
/etc/httpd/conf/http.conf |
/var/www/html/index.html |
|
/etc/httpd/conf.d/*.conf
|
|
- sudo systemctl start httpd.service
- service httpd start
- apachectl start
|
Debian
/Ubuntu
|
/etc/apache2/apache2.conf
|
/var/www/index.html
(Apache 2.2)
/var/www/html/index.html (Apache 2.4)
|
/usr/lib/cgi-bin/
|
/etc/apache2/mods-available/*.conf |
/etc/apache2/sites-available/* |
$ sudo service apache2
start
|
Cygwin
|
/etc/apache2/http.conf
|
/srv/www/htdocs/
|
|
|
|
$ /usr/sbin/apachectl2 -k
start
|
XAMPP
|
c:\xampp\apache\conf\http.conf
|
c:\xampp\htdocs\ |
|
|
|
|
- Estructura de directoris de configuració / Configuration
directory structure
- Utils
-
- a2query
-
- a2ensite
- a2dissite
- a2enmod
- a2...
- Configuració
/
Configuration
-
- Virtual hosts (vhosts.d,
sites-available)
-
- /etc/hosts
-
- VirtualHost
Examples
-
- Name-based
Virtual
Hosts (More than one web site per IP address)
-
- non-secure virtual host
-
- /etc/httpd/conf/vhosts.d/02_tva_vhost.conf
-
NameVirtualHost
*:80
<VirtualHost *:80>
ServerName tva.com
ServerAlias tva.com *.tva.com
DocumentRoot /var/www/html_tva
</VirtualHost>
- accessed from browser as:
-
- secure virtual
host
-
- /etc/httpd/conf/vhosts.d/03_tva_ssl_vhost.conf
-
<VirtualHost
*:443>
ServerName tva.com
ServerAlias tva.com *.tva.com
DocumentRoot /var/www/html_tva
</VirtualHost>
- accessed from browser as:
-
- IP-based
Virtual
Hosts (An IP address for each web site)
- Place MediaWiki inside a Virtual Host
/etc/httpd/conf/vhosts.d/*.conf:
-
<Directory "/var/www/html_2">
Options -Indexes FollowSymLinks
MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
/etc/httpd/conf/httpd.conf or
/etc/apache2/apache2.conf
-
- Rewriting
-
- Scripts
d'instal·lació / Installation scripts
-
- Script
d'instal·lació per a Django / Django installation script
- estructura / structure:
-
webapp_name
-
apache_config
-
install_apache.sh
webapp_name.conf
index.html
js/
css/
...
install_apache.sh
-
#!/bin/bash
EXPECTED_ARGS=1
if [ $# -ne $EXPECTED_ARGS ]
then
cat <<EOF
Usage: `basename $0` webapp_name
Example: `basename $0` hbbtv
Actions:
- copy webapp_name.conf to apache configuration
directory (e.g. /etc/httpd/conf/webapps.d/)
- recursively copy .. (parent directory, except
apache_config) to apache directory (e.g.
/var/www/webapp_name/)
- change the owner and group of the files and
directories to the right ones
The following typical OS are automatically
detected:
- Red Hat, CentOS, Mageia, ...
- Debian, Ubuntu, ...
- MAC OSX (MAMP)
EOF
exit 1
fi
webapp_name=$1
webapp_dir=/var/www/${webapp_name}
# Red Hat, CentOS, Mageia, ...
if [ -f /etc/httpd/conf/httpd.conf ]
then
httpd_config=/etc/httpd/conf/httpd.conf
webapp_conf_dir=/etc/httpd/conf/webapps.d/
grup_httpd=`grep "^Group"
$httpd_config | awk
'{print $2}'`
usuari_httpd=`grep "^User"
$httpd_config | awk '{print $2}'`
fi
# MAC OSX
if [ -f /Applications/MAMP/conf/apache/httpd.conf
]
then
httpd_config=/Applications/MAMP/conf/apache/httpd.conf
webapp_conf_dir=/Applications/MAMP/conf/apache/extra
webapp_dir=~/sites/${webapp_name}
fi
# Debian, Ubuntu, ...
if [ -f /etc/apache2/apache2.conf ]
then
httpd_config=/etc/apache2/apache2.conf
webapp_conf_dir=/etc/apache2/conf.d/
usuari_httpd=`awk -F=
'/APACHE_RUN_USER/ {print $2}'
/etc/apache2/envvars`
grup_httpd=`awk -F=
'/APACHE_RUN_GROUP/ {print $2}'
/etc/apache2/envvars`
fi
# còpia recursiva de la webapp
echo "copying application $webapp_name to
$webapp_dir"
mkdir -p $webapp_dir
rsync -a --exclude='.git'
--exclude='apache_config' .. $webapp_dir
chown ${usuari_httpd}.${grup_httpd} -R $webapp_dir
# webapp config
echo "copying config file ${webapp_name}.conf to
${webapp_conf_dir}"
cp ${webapp_name}.conf ${webapp_conf_dir}
- Start server
-
- Serveis / Service
- apachectl / httpd
-
- compiled in modules
-
- check syntax:
-
- loaded modules
-
- Logs
-
- Apache
Module
mod_log_config
- detailed log in error_log (or name specified by
ErrorLog) file:
-
- httpd.conf / apache2.conf
-
- errors
-
ErrorLog "logs/error_log"
LogLevel debug
- access
-
TransferLog
"logs/access_log"
# CustomLog with
format nickname
LogFormat "%h %l %u %t \"%r\" %>s %b"
common
CustomLog
"logs/access_log" common
# CustomLog with
explicit format string
LogFormat
"logs/access_log" "%h %l %u %t \"%r\" %>s
%b"
# real remote ip when
using AWS
ELB load balancer (%a, %h give ELB ip
address) LogFormat "%v
%A
%{X-FORWARDED-FOR}i
%l %u %t \"%r\" %>s %b \"%{Referer}i\"
\"%{User-agent}i\"" elb-ncsa
CustomLog "logs/access_log" elb-ncsa
- /etc/apache2/conf.d/other-vhosts-access-log
-
CustomLog
${APACHE_LOG_DIR}/other_vhosts_access.log
vhost_combined
cat /etc/httpd/logs/error_log
grep httpd /var/log/messages
systemctl
status httpd.service
httpd -e debug -E /tmp/toto.log
- Problemes / Problems
-
- /var/log/apache2/error.log
-
- "Client
denied
by server configuration" / 403 Forbidden
-
- Apareix al navegador com a: «
Forbidden
You don't have permission to access / on this
server. »
- Si feu servir Apache 2.4, comproveu que feu servir la
directiva "
Require
all
granted " i no "Order deny,allow ",
"Allow
from all "
- Comproveu que el
directori dins de la directiva <Directory
...> és el correcte
- Comproveu els permisos
Unix amb / Check Unix permissions with:
-
namei -m
/ful/path/to/index.html
- ValueError: Unable to
configure handler 'logfile': [Errno 13] Permission
denied: .../logfile
-
- Passa amb el log de Django.
settings.py:
-
LOGGING
=
{
...
'handlers': {
'logfile': {
'filename':
PROJECT_PATH + "/logfile",
- Solució / Solution:
-
- CentOS
/
RHLE
-
- "http dead but subsys locked" / /usr/sbin/httpd:
Symbol lookup error: /usr/lib64/libaprutil-1.so.0:
Undefined symbol: apr_os_uuid_get
-
- Change listen ports
-
- Debian
-
- Mageia
-
- /etc/httpd/conf/httpd.conf
-
Listen 8000 # can be specified in
sites.d/toto.conf instead
- /etc/httpd/conf/sites.d/00_default_vhosts.conf
-
Listen 8000
<VirtualHost _default_:8000>
- open firewall
- RedHat / CentOS
-
- SELinux:
semanage
(to avoid error "
could not bind to address
127.0.0.1:12345 no listening sockets available,
shutting down ")
-
semanage port -l | grep -w
http_port_t
semanage port -a -t http_port_t -p tcp 12345
- Firewall
/
tallafoc
- http.conf
-
- Directory index (per exemple: per a fer que serveixi
index.html i no index.php, per omissió)
-
DirectoryIndex index.html
- Accés des d'una subxarxa especificada / Access from a
specified subnet
-
Allow from 192.168.1
ErrorDocument 403 "Access denied per
/etc/httpd/conf/webapps.d/my_webapp.conf"
- CGI
-
- mod_cgi
- configuració / configuration
-
ScriptLog
logs/cgi_log
ScripAlias /toto /var/www/cgi-bin/toto.cgi
/var/www/cgi-bin/
-
- test_variables.cgi
-
#!/usr/bin/perl
print "Content-type: text/html\n\n";
foreach $key (keys %ENV) {
print "$key --> $ENV{$key}<br>";
}
- http://localhost/cgi-bin/test.cgi
- Directori
addicional / Additional directory (
/home/user1/other_dir
to be accessed as http://server/new_dir/ )
-
- Option 1: in system directory
-
- (cal? només usuari? només grup?) Check
user and
group permissions, according to directives in httpd.conf
-
# Mageia, CentOS, ...
httpd_config=/etc/httpd/conf/httpd.conf
usuari_httpd=`grep "^Group" $httpd_config |
awk '{print $2}'`
grup_httpd=`grep "^User" $httpd_config | awk
'{print $2}'`
chmod ${usuari_httpd}.${grup_httpd} -R ...
# Ubuntu
usuari_httpd=`awk -F= '/APACHE_RUN_USER/ {print
$2}' /etc/apache2/envvars`
grup_httpd=`awk -F= '/APACHE_RUN_GROUP/ {print
$2}' /etc/apache2/envvars` chmod
${usuari_httpd}.${grup_httpd} -R ...
- Option 2: in user directory
-
- Solution
1: symbolic link (no funciona / it does not
work) (caldria
FollowSymLinks? )
-
cd /var/www/html
ln -s /home/user1/parent_dir/other_dir
new_dir
- Solution 2:
http.conf
-
Alias /new_dir
/home/user1/parent_dir/other_dir <Directory
"/home/user1/parent_dir/other_dir">
Options -Indexes
+FollowSymLinks +MultiViews
AllowOverride None
# Apache 2.2:
#Order allow,deny
#Allow from all
# Apache 2.4:
Require all granted
</Directory>
- Note: check the user
permissions and owners of
/home/user1/parent_dir/other_dir
IMPORTANT: els passos següents no són
necessaris si feu servir Apache
2.4 / next steps are not required when using Apache 2.4;
check only that user running Apache has Unix
permissions to read index.html
IMPORTANT: parent directory must have execution
permissions for group apache (or whatever group defined in Group
directive in httpd.conf, or in APACHE_RUN_USER
variable)
-
# usermod
-a -G apache user1
# chgrp apache -R /home/user1/ parent_dir/
# chmod g+x /home/user1/parent_dir/
# chmod
g+rX -R /home/user1/ parent_dir/ other_dir
- Option 3: in some other directory (e.g. a mounted external
disk), owned by a user:
-
- Web
Apps
(webapps.d, sites.d, conf.d)
-
- Exemples / Examples:
-
/var/www/your_app
- /etc/httpd/conf/webapps.d/your_app.conf
-
Alias /your_app
/var/www/your_app
<Directory "/var/www/your_app">
Order allow,deny
Allow from All
</Directory>
- Check user
permissions of
/var/www/your_app:
-
- Place MediaWiki inside a Virtual Host
- Cache
-
- Controlar
cache
con Apache
<FilesMatch "\.(mpd|m4s)$">
Header set Cache-Control "max-age=0, private,
no-store, no-cache, must-revalidate"
</FilesMatch>
- CORS
-
- httpd.conf or available-sites/default, ...:
-
#CORS
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Credentials "true"
Header set Access-Control-Allow-Methods
"POST,PUT,DELETE,GET, OPTIONS"
Header set Access-Control-Allow-Headers "Content-Type"
Header set Access-Control-Expose-Headers "Location"
- HTTPS (see
also: Seguretat en
WWW / WWW security)
-
- Apache modules installation:
-
- Autenticació de servidor amb
certificat autosignat / Server authentication with
self-signed certificate
-
- Mageia:
-
- [cd /etc/httpd/conf/vhosts.d; cp
01_default_ssl_vhost.conf 02_hostname_ssl_vhost.conf]
- canvi de port
443 -> 8443:
-
- httpd.conf (diu quins ports obre per a
escoltar)
-
- 01_default_ssl_vhost.conf (diu a quin dels
ports on està escoltant fa referència)
-
<VirtualHost _default_:8443>
- Ubuntu:
-
cd /etc/apache2/sites-enabled; sudo ln -s
../sites-available/default-ssl 001-default-ssl
cd /etc/apache2/mods-enabled; sudo ln -s
../mods-available/ssl.conf .; sudo ln -s
../mods-available/ssl.load .
- canvi de port
443 -> 8443:
-
- ports.conf (diu quins ports obre per a
escoltar)
- default-ssl (diu a quin dels ports on està
escoltant fa referència)
<VirtualHost _default_:8443>
sudo service apache2 restart
- Autenticació
de servidor / Server authentication:
-
- Info
-
- Passos / Steps:
-
- Creeu una CA
amb OpenSSL / Create
a
CA with OpenSSL
- Creeu
un certificat de servidor amb OpenSSL i / Create a
server certificate with OpenSSL and:
mv /etc/pki/tls/ newcert.pem
/etc/pki/tls/certs/hostname_server.crt
mv /etc/pki/tls/ newkey.pem
/etc/pki/tls/private/tva_server.key
- Configuració del servidor Apache / Apache server
configuration:
- /etc/hosts
-
- /etc/httpd/conf/httpd.conf
-
LoadModule ssl_module
modules/mod_ssl.so
- cp /etc/httpd/conf/vhosts.d/01_default_ssl_vhost.conf
/etc/httpd/conf/vhosts.d/02_hostname_ssl_vhost.conf
- /etc/httpd/conf/vhosts.d/02_hostname_ssl_vhost.conf
-
- to
avoid entering the passphrase every boot,
create an unsecure version of your key file:
-
cd /etc/pki/tls/private; cp
hostname.key hostname.key.orig; openssl
rsa -in hostname.key.orig -out
hostname.key; chmod 700 hostname.key
- Configuració del client / Client configuration
- import CA
- connect to server:
-
- Si la resposta és sec_error_inadequate_key_usage:
-
- Si sec_error_reused_issuer_and_serial:
-
- Netegeu la memòria cau del navegador /
Clean the cache on the browser
- Si sec_error_unknown_issuer:
-
- Descarregueu el certificat de la CA i
doneu-li permís per a identificar servidors
www: "Confia en aquesta CA per identificar
llocs web"
- ssl_error_rx_record_too_long
-
- check /var/log/httpd/ssl_error_log
- Accés des de client / Access from client:
- ...
-
mv
newcert.pem hostnameCert.prm; cp
/etc/pki/tls/hostnameCert.prm
/etc/pki/tls/certs/hostname_server.crt
mv
newkey.pem hostnameKey.pem; cp
/etc/pki/tls/hostnameKey.pem
/etc/pki/tls/private/hostname _server .key
- Autenticació
de client amb certificat / Client authentication with
certificate
-
- Info:
-
- Passos / Steps:
-
- Creeu
un certificat de client amb OpenSSL / Create a
client certificate with OpenSSL (client.crt)
- Encapsuleu el
certificat de client en un fitxer PKCS12 /
Encapsulate client certificate into a PKCS12 file
(client.p12)
- Configuració del servidor
Apache / Apache server configuration:
- import CA certificate
-
- creat per nosaltres / created by us
-
- altres / others (e.g. for DNIe)
-
cd /etc/pki/tls/certs/
wget
http://www.dnielectronico.es/ZIP/ACRAIZ-SHA1.zip
unzip ACRAIZ-SHA1.zip
- conversion
from DER to PEM:
-
openssl x509 -in
ACRAIZ-SHA1.crt -inform DER -out
ACRAIZ-SHA1.crt -outform PEM
- Host based:
-
- /etc/httpd/conf/vhosts.d/01_default_ssl_vhost.conf
-
SSLEngine on
#CA certificate (PEM encoded) whose
client certificates the server is
prepared to accept
SSLCACertificateFile
/etc/pki/tls/certs/ACRAIZ-SHA1.crt
SSLVerifyClient require
SSLVerifyDepth 10
- el navegador presentarà una llista dels
certificats de client disponibles, però
només aquells que hagin estat emesos per la
CA especificada a SSLCACertificateFile (TLS:
RFC
4336 7.4.4 "Certificate request")
- Directory-based:
Authentication
with a certificate:
-
- Install mod_auth_certificate
(*)
-
- urpmi apache-mod_auth_certificate
- /usr/share/doc/apache-mod_auth_certificate/README
- config
Apache ssl to require client certificate
- /etc/httpd/conf/httpd.conf:
-
- LoadModule
auth_certificate_module
/usr/lib/apache-extramodules/mod_auth_certificate.so
<Directory
"/var/www/html/protegit_c">
CertAuthEnabled on
AuthType Cert
AuthName "Zona protegida
(cert)"
Require valid-user
</Directory>
- Problems
-
- Configuració de client
/ Client configuration:
- Si el client es connecta amb un navegador
/ If the clients connects from a web
browser:
-
- Si el client es connecta per línia
de comanda / If the client connects
from command
line:
-
- la CA li ha de passar el certificat de
client (client_pem.crt), la clau de client
(client_pem.key) i el certifcat de la CA
(root_ca_pem.crt)
- el client es connecta de forma segura:
-
wget
--certificate=client_pem.crt
--private-key=client_pem.key
--ca-certificate=root_ca_pem.crt
https://...
- Perquè el navegador oblidi el certificat de
client amb què s'ha connectat:
-
- Eines -> Neteja l'historial recent
-> Sessions actives
- Si quan el client es connecta apareix un error
del tipus ssl_error_handshake_failure_alert,
pot ser que:
-
- el client no tingui instal·lat cap
certificat de client (per exemple, el DNIe)
- (el servidor no tingui el SSLCACertificate
adequat)
- Si ssl_error_unknown_ca_alert
-
- el servidor no té el SSLCACertificate
adequat
- Autenticació de client sense
certificat / Client authentication without
certificate (basic authentication)
-
- Info:
-
- Passos / Steps:
-
- Configuració del servidor Apache / Apache server
configuration:
- Install mod_auth_basic, mod_auth_digest
(mod_auth_cert?)
-
mkdir
/var/www/passwd
htpasswd -c /var/www/passwd/passwords
user_name
- /etc/httpd/conf/httpd.conf
-
<Directory
"/var/www/html/protegit">
AuthType Basic
AuthName "Zona protegida"
# (Following line optional)
AuthBasicProvider file
AuthUserFile
/var/www/passwd/passwords
Require valid-user
</Directory>
- http://server/protegit/
- Certificate
Revocation
List (CRL)
-
- WebDAV
-
urpmi apache-mod_dav
- httpd.conf:
-
Listen 8080 (optional)
LoadModule dav_module
modules/mod_dav.so
LoadModule dav_fs_module
modules/mod_dav_fs.so
LoadModule dav_lock_module
modules/mod_dav_lock.so
DAVLockDB
/var/lock/apache2/DAVLock
Alias /toto /var/www/toto
<Location /toto>
Dav on
</Location>
<Directory "/var/www/toto">
Options -Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
- client
- Llengües / Languages
-
- Balanceig
de càrrega / Load balancing
|
|
|
- Installation from
packages
-
- CentOS
-
nginx -V
-
nginx version: nginx/1.10.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4)
(GCC)
built with OpenSSL 1.0.1e-fips 11 Feb 2013
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx
--sbin-path=/usr/sbin/nginx
--modules-path=/usr/lib64/nginx/modules
--conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--http-client-body-temp-path=/var/lib/nginx/tmp/client_body
--http-proxy-temp-path=/var/lib/nginx/tmp/proxy
--http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi
--http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi
--http-scgi-temp-path=/var/lib/nginx/tmp/scgi
--pid-path=/run/nginx.pid
--lock-path=/run/lock/subsys/nginx --user=nginx
--group=nginx --with-file-aio --with-ipv6
--with-http_ssl_module --with-http_v2_module
--with-http_realip_module
--with-http_addition_module
--with-http_xslt_module=dynamic
--with-http_image_filter_module=dynamic
--with-http_geoip_module=dynamic
--with-http_sub_module --with-http_dav_module
--with-http_flv_module --with-http_mp4_module
--with-http_gunzip_module
--with-http_gzip_static_module
--with-http_random_index_module
--with-http_secure_link_module
--with-http_degradation_module
--with-http_slice_module
--with-http_stub_status_module
--with-http_perl_module=dynamic
--with-mail=dynamic --with-mail_ssl_module
--with-pcre --with-pcre-jit --with-stream=dynamic
--with-stream_ssl_module
--with-google_perftools_module --with-debug
--with-cc-opt='-O2 -g -pipe -Wall
-Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4
-grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1
-m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld
-Wl,-E'
- Installation from source
-
- Add user nginx
-
- CentOS, Mageia
-
sudo adduser --system --no-create-home
--user-group -s /sbin/nologin nginx
- Ubuntu
-
sudo adduser --system --no-create-home
--disabled-login --disabled-password --group nginx
- Dependències / Dependencies
-
-
module
|
Mageia
|
CentOS
|
--with-http_xslt_module |
lib64xslt-devel
|
libxslt-devel |
--with-http_ssl_module |
|
|
- Modules
-
- Compilació / Compilation (Building
nginx from Sources) ():
-
nginx_version=1.26.1
- option 1: from tar
wget http://nginx.org/download/nginx-${nginx_version}.tar.gz
tar xvzf nginx-${nginx_version}.tar.gz
cd nginx-${nginx_version}
- option 2: from git
git clone https://github.com/nginx/nginx.git
cd nginx
git checkout release-${nginx_version}
- additional modules
- arut
git
clone
git://github.com/arut/nginx-rtmp-module.git
- cd
nginx-rtmp-module
nginx_rtmp_module_version=v1.2.1
- git
checkout ${
nginx_rtmp_module_version }
- cd ..
- bbc (solves problem with Wirecast)
git
clone
git://github.com/bbc/nginx-rtmp-module.git
- sed
-i.bak '/#define NGINX_RTMP_VERSION/
c\#define NGINX_RTMP_VERSION
"1.2.1.bbc"'
nginx-rtmp-module/ngx_rtmp_version.h
- kaltura / nginx-vod-module
nginx_vod_module_version=1.33
git clone https://github.com/kaltura/ nginx-vod-module.git
git checkout ${ nginx_vod_module_version }
- nginx-upload-module
-
wget -O nginx-upload-module-2.2.tar.gz
https://github.com/vkholodkov/nginx-upload-module/archive/2.2.tar.gz
tar xvzf nginx-upload-module-2.2.tar.gz
- if you are installing from git:
./configure [--with-debug]
--prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--pid-path=/run/nginx.pid --user=nginx
[--with-http_ssl_module] [--with-http_xslt_module]
[--add-module=./nginx-rtmp-module]
[--add-module=./nginx-upload-module-2.2] --with-cc-opt="-Wimplicit-fallthrough=0"
make
su; make install
- verify:
- Problemes / Problems
ngx_rtmp_eval.c:160:17: error: this statement
may fall through [-Werror=implicit-fallthrough=]
- Nginx init
scripts
-
- CentOS
-
- Systemd
-
- nginx.service
[Unit]
Description=The NGINX HTTP and reverse proxy
server
After=syslog.target network.target
remote-fs.target nss-lookup.target
cloud-init.target
DefaultDependencies=no
[Service]
Type=forking
PIDFile=/run/nginx.pid
TimeoutStartSec=200s
ExecStartPre=/usr/sbin/nginx -t
PrivateTmp=true
# other exectartpre scripts
ExecStartPre=/bin/bash -c 'for script in
/etc/nginx/execstartpre.d/*; do $script;
done'
ExecStart=/usr/sbin/nginx
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
[Install]
WantedBy=multi-user.target
- save it to:
-
- /usr/lib/systemd/system/nginx.service
- Ubuntu
-
- Starting,
Stopping, and Restarting Nginx
-
/usr/local/nginx/sbin/nginx
- Open port 1935 (?)
- Start
-
/usr/local/nginx/sbin/nginx
- Stop
-
/usr/local/nginx/sbin/nginx -s stop
- Reload config
-
/usr/local/nginx/sbin/nginx -s reload
- Test
-
cd nginx-1.9.2 /nginx-rtmp-module/test/
- edit nginx.conf
-
- cp nginx.conf /usr/local/nginx/conf/
/usr/local/nginx/sbin/nginx
- publish:
-
./ffstream.sh
- with ffmpeg
-
ffmpeg -loglevel verbose -re -i
sintel-1024-stereo.mp4 -c copy -f flv
rtmp://localhost/myapp/mystream
- play:
-
./play.sh
ffplay -loglevel verbose
"rtmp://localhost/myapp/mystream"
- statistics:
-
- Config
-
- Django wsgi
- /usr/local/nginx/conf/
-
- nginx.conf
-
- ...
location
/stat.xsl {
# you can move stat.xsl to a different
location
#root
/usr/build/nginx-rtmp-module;
root
/home/cesc/src/nginx-1.7.0/nginx-rtmp-module;
}
- Debug
and logs
-
- Publish to server
-
ffmpeg -re -i sintel-1024-stereo.mp4 -c copy -f
flv rtmp://localhost/myapp/mystream
- Play from server:
-
ffplay rtmp://localhost/myapp/mystream
- Status
-
|
|
- Instal·lació / Installation
-
- Mageia
-
urpmi memcached
systemctl start memcached@11211
- CentOS
-
- Configuració / Setup
-
- /etc/sysconfig/memcached
-
- tcp port
-
PORT="11211"
USER="memcached"
MAXCONN="1024"
CACHESIZE="64"
OPTIONS=""
- unix socket
-
...
OPTIONS="-s '/var/run/memcached/memcached.sock' -a
0766"
- Ús / Usage
-
- Django
- Stats
-
memcached-tool 127.0.0.1:11211
memcached-tool 127.0.0.1:11211
stats
echo stats | nc localhost 11211
|
XAMPP
|
- XAMPP
- To be accessible from outside (and on port 8080)
http://192.168.1.15:8080
-
- <install_dir>\xampp\apache\conf\httpd.conf
-
- Listen 8080
- ServerName 192.168.1.15
- <install_dir>\xampp\apache\conf\extra\httpd-xampp.conf
-
# Close XAMPP security section
here
<LocationMatch "^/(?i:(?:security))">
Order deny,allow
#Deny from all
#Allow from ::1 127.0.0.0/8
ErrorDocument 403
/error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
# Close XAMPP sites here
<LocationMatch
"^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
#Deny from all
#Allow from ::1 127.0.0.0/8
ErrorDocument 403
/error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
- ...
|
Tomcat
|
- Per a instal·lar-lo en MS Windows, falta el fitxer:
-
- Axis2: name of the host behind a NAT (wdsl file) (*)
-
- WEB-INF/conf/axis2.xml
-
<axisconfig
name="AxisJava2.0">
...
<!-- Following parameter will
set the host name for the epr-->
<parameter name="hostname"
locked="true">myhost.com</parameter>
|
|
Squid (HTTP Proxy)
|
- Info
- Server
- Install
- Setup
- /etc/squid/squid.conf
acl localnet src <client_ip>/32
http_access allow localnet
- Start
sudo systemctl start squid.service
- Client (<client_ip>)
- export http_proxy='http://<server_ip>:3128'
export https_proxy='http://<server_ip>:3128'
export ftp_proxy='http://<server_ip>:3128'
|
|
- Per a canviar el tipus de fitxer de DOS (amb retorns de carro
^M) a UNIX (retorns de carro senzills): dos2unix
- Noms de fitxer de majúscula a minúscula:
-
#! /bin/csh
foreach f ( * )
mv $f `echo $f | tr '[A-Z]' '[a-z]'`
end
#! /bin/bash
for f in *;
do mv $f `echo $f | tr '[A-Z]' '[a-z]'`;
done
|
Canvi de nom
|
#! /usr/bin/bash
comptador=1;
while test $comptador -le $1
do
mv Imatge${comptador}.hist Imatge${comptador}_rgb_256d.hist
let comptador=$comptador+1
done
|
Conversió de MS-Word
a PDF
|
- Des d'OpenOffice:
-
- Obriu el fitxer .doc i feu "Exporta
com a PDF".
- Per a generar vistes prèvies i hiperenllaços: extendedPDF
- Des de MS Word:
-
- Assegureu-vos que a Windows teniu configurada una impressora
PostScript. Si no, aneu a
Inici/Configuració/Impressores i afegiu-ne una altra, del
tipus PostScript (p.ex. qualsevol HP LaserJet, o bé una genèrica).
- Obriu el fitxer amb MS Word.
- Imprimir / A fitxer: toto (assegureu-vos
que a les opcions d'impressora hi ha Opcions de Postscript /
Màxima portabilitat; si està activa l'opció de màxima
velocitat podeu tenir problemes de numeració de les
pàgines en el fitxer PS generat). La impressora seleccionada
ha de ser la de tipus PostScript.
- Des de l'explorador de Windows (o similar) canvieu el nom
de fitxer de toto.prn a toto.ps
- Feu la conversió de Postscript
a
PDF.
- Des de MS Word:
-
|
Conversió de Postscript a PDF
|
- UNIX
- ps2pdf
toto.ps toto.pdf
- MS Windows
- Obriu toto.ps amb el GSView
(assegureu-vos que utilitzi Ghostscript >=6.01; si no,
algunes lletres poden quedar amb quadrets [format bitmap en
lloc del desitjat vectorial])
- Imprimiu-lo a fitxer amb el dispositiu pdfwrite:
toto.pdf
|
Múltiple pàgina en PostScript
|
psnup -2 toto.ps toto.2.ps
|
PDF
|
- Manipulació
-
- pdftk
-
- Manipulación de
ficheros PDF (CRySoL)
- separa en pàgines individuals / split into single
pages:
-
- uneix documents / join documents:
-
pdftk 1.pdf 2.pdf cat output 12.pdf
- afegeix un peu de pàgina / add a footer:
-
pdftk input.pdf multistamp footer.pdf output
input_with_footer.pdf
- compilation (Mandriva)
-
urpmi fastjar gcc-java
- modify Makefile.Base:
-
... -I$(JAVALIBPATH) -I/usr/include/libgcj-4.4.3
...
make -f Makefile.RedHat
- PDF-Xchange
viewer
- Edició
-
|
|
giftoppm face.gif | ppmtopgm |pgmnorm |pnmscale -xy 48
48 |pgmtopbm > face.pbm
pbmmake -white 48 48 |pnmpaste face.pbm 0 0 |pbmtoicon
|tail +3 |compface > face.xface
|
Registre MS Windows
|
Auto login: HKLM\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\WinLogon\
-
AutoAdminLogon REG_SZ 1
DefaultUsername REG_SZ usuari
DefaultPassword REG_SZ contrasenya
DefaultDomainName REG_SZ
- Auto login gràfic:
control userpasswords2
- Execució a l'inici:
HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
|
|
- Xerces
C++ samples
-
- MS
Visual / MFC:
-
- To avoid errors of type "
error LNK2001: unresolved
external symbol " about a function
containing wchar:
-
Project Poperties (All Configurations) /
Configuration Properties / C/C++ / Language / Treat
wchar_t as Built-in type: No
- Ambiguous
DOMDocument
-
XERCES_CPP_NAMESPACE_QUALIFIER DOMDocument
XERCES_CPP_NAMESPACE_QUALIFIER DOMDocumentFragment
#define WIN32_LEAN_AND_MEAN // to vaoid using
MSxml.h
- DOMWriter
-
- delete of object
LocalFileFormatTarget to
close and release the file
- Active-X: to avoid failed registration, copy all xerces .lib
and .dll files into the same directory of .ocx file to be
registered.
- Memory leaks
-
- cal alliberar sempre el resultat d'un transcode (or
better: use std:string instead of char*):
-
char *pStringValorNode;
pStringvalorNode = XMLString::transcode(
nodeAtribut->getNodeValue() );
XMLString::release(&pStringValorNode);
- Avoid loading (downloading) external DTD:
-
- Read from memory (parse a string):
-
string cadena;
const char* gXMLInMemBuf = cadena.c_str();
static const char* gMemBufId = "prodInfo";
MemBufInputSource* memBufIS = new MemBufInputSource(
(const
XMLByte*)gXMLInMemBuf,
strlen(gXMLInMemBuf),
gMemBufId,
false );
XercesDOMParser *parser = new XercesDOMParser;
parser->parse(*memBufIS);
XERCES_CPP_NAMESPACE_QUALIFIER DOMDocument *doc =
parser->getDocument();
- Copy of a node:
-
- same document:
-
nodeA2 = nodeA1->cloneNode( true );
nodeRootA->appendChild( nodeA2 );
- different documents (docA -> docB):
-
nodeB1 = docB->importNode( nodeA1, true );
nodeRootB->appendChild( nodeB1 );
- Moving nodes from one document (docA, containing nodeA1) to
another (docB, containing elB1), using fragments:
-
nodeA1_bis = nodeA1->cloneNode(true);
(true: recursive; false: non recursive)
fragA1 = docA->createDocumentFragment();
nodeAi = fragA1->appendChild(nodeA1_bis);
elB2 = docB->createElement("tag");
nodeB3 = docB->importNode( fragA1, true );
elB2->appendChild(nodeB3);
|
|
- Install RPM:
-
- urpmi kernel-desktop-devel
- Launch config:
-
- /usr/bin/vmware-config.pl
- Resize virtual disk size
-
- vmplayer
- select virtual machine -> Settings -> Utilities
-> Expand disk
- start guest OS (eg Mandriva) in safe mode
- #drakdisk -> resize partition
- reboot
- Resize virtual
disk file (6GB -> 8GB) (NOTA:
les noves versions de vmplayer ja permet el redimensionament
dels discos):
-
- Install needed software
urpmi qemu
urpmi dkms-kqemu (plf) (needed to
activate -kernel-kqemu option)
- resize disk from several parts (option 1, recommended):
-
qemu-img convert
WindowsXP-s001.vmdk -O raw WindowsXP-s001.raw
qemu-img convert
WindowsXP-s002.vmdk -O raw WindowsXP-s002.raw
- qemu-img convert
WindowsXP-s003.vmdk -O raw
WindowsXP-s003.raw
- qemu-img convert
WindowsXP-s004.vmdk -O raw
WindowsXP-s004.raw
- cat
WindowsXP-s001.raw WindowsXP-s002.raw
WindowsXP-s003.raw WindowsXP-s004.raw
>
WindowsXP_8G.raw
dd bs=1 if=/dev/zero of=WindowsXP_8G.raw seek=8G
count=0
qemu-img convert WindowsXP_8G.raw -O vmdk
WindowsXP_8G.vmdk
- resize disk from several parts (option 2):
-
qemu-img convert WindowsXP-s004.vmdk -O raw
WindowsXP-s004.raw
dd bs=1 if=/dev/zero of=WindowsXP-s004.raw
seek=2G count=0
qemu-img convert WindowsXP-s004.raw -O vmdk
WindowsXP-s004.vmdk
- edit WindowsXP-s004.vmdk:
-
RW 6144 SPARSE "WindowsXP-s004.vmdk"
-> RW 4192256 SPARSE "WindowsXP-s004.vmdk"
- resize disk from one part
qemu-img convert WindowsXP_6GB.vmdk -O raw
WindowsXP_8GB.raw
dd bs=1 if=/dev/zero of=WindowsXP_8GB.raw
seek=8G count=0
qemu-img convert WindowsXP_8GB.raw -O vmdk
WindowsXP_8GB.vmdk
- resize partition with Gparted-LiveCD
(select "force Vesa"):
-
- (
modprobe kqemu )
qemu -kernel-kqemu [-no-kvm] -m 512 -k es -cdrom
gparted-livecd-xxx.iso
-boot d -hda WindowsXP_8G.vmdk
cp WindowsXP.vmx WindowsXP_8G.vmx and edit
it:
-
ide0:0.fileName = "WindowsXP_8G.vmdk"
vmplayer WindowsXP_8G.vmx
- serial device on file.vmx:
-
serial0.present = "TRUE"
serial0.fileName = "Auto Detect"
serial0.autodetect = "TRUE"
serial0.hardwareFlowControl = "TRUE"
- Xarxa
/ Network
|
NFS/Samba
|
- server SMBFS
-
urpmi samba-server
- add user
-
-
smbpasswd -a nom_usuari
(nom_usuari
must exist as a UNIX
user)
/etc/samba/smb.conf :
-
load printers = no
[dir_compartit]
browseable = yes
read only = no
comment = Directori compartit
path = /var/export
directory mask =
0744
force create mode = 0660
force directory mode = 0770
- disable printers
(*)
-
load printers = no
(this alone isn't enough)
show add printer wizard = no
printing = none
printcap name = /dev/null
disable spoolss = yes
testparm; service smb restart
- Obrir tallafoc / Open firewall
- Usuaris / Users (
urpmi
tdb-utils )
-
tdbdump /etc/samba/passdb.tdb | grep USER
tdbbackup /etc/samba/passdb.tdb
- Gestió d'usuaris /
User management
-
- Solucions a problemes
/ Problem solutions
-
chcon -R -t samba_share_t /home
- Error -43 when accessing from OSX:
-
- server
NFS (configure with MCC or use the folowing:)
-
- install service
-
- CentOS
-
- Chapter
18.
Network File System (NFS)
- Sharing
files
with NFSv4 on Fedora (Server & Client
configuration)
- Setting
Up
NFS Server And Client On CentOS 7
yum install nfs-utils nfs-utils-lib
- firewalld
-
systemctl start firewalld.service
- NFSv4
-
firewall-cmd --permanent
--add-service=nfs
firewall-cmd --permanent
--add-service=rpc-bind
firewall-cmd --permanent
--add-service=mountd
firewall-cmd --reload
- SELinux
(in server or in client?)
-
- option 1: booleans
-
getsebool -a | grep -i nfs
setsebool -P <someboolean>=1
<someotherbool>=1 ...
- option 2: policy
-
grep rpc.statd
/var/log/audit/audit.log | audit2allow -M
mypol
semodule -i mypol.pp
- NFSv4
-
systemctl enable rpcbind.service
nfs-idmapd.service nfs-server.service
systemctl start rpcbind.service
nfs-idmapd.service nfs-server.service
- Problemes / Problems
-
# systemctl enable nfs-idmap.service
Failed to execute operation: No such file
or directory
-
- Solució / Solution
-
- /usr/lib/systemd/system/nfs-idmapd.service
-
[Install]
WantedBy=multi-user.target
systemctl enable nfs-idmapd.service
- NFSv3
-
systemctl start rpc-statd.service
systemctl start rpcbind nfs-lock
nfs-idmap
- Mageia
-
urpmi nfs-utils
service nfs-server start
- firewall (shorewall) (Réseau
Linux
avec NFS - Mandriva) (Configuring
NFS under Linux for Firewall control)
-
- /etc/sysconfig/nfs-common:
-
- STATD_OPTIONS="--port 4000"
- service nfs-common restart
- /etc/sysconfig/nfs-server:
-
- RPCMOUNTD_OPTIONS="--port 4002"
- service nfs-server restart
- /etc/modprobe.conf:
-
- options lockd nlm_udpport=4001
nlm_tcpport=4001
- reboot computer
- open
ports: 111/tcp 111/udp 2049/tcp 2049/udp
4000:4002/tcp 4000:4002/udp
- check port attibution:
-
- configure idmap
-
- /etc/idmapd.conf
-
[General]
Domain = domain.tld
[Mapping]
Nobody-User = nfsnobody
Nobody-Group = nfsnobody
- configure permissions
-
- /etc/hosts.allow
-
rpcbind:
172.16.11.0/255.255.255.0
- configure export points
-
- /etc/exports
-
/tmp
172.16.11.0/24(no_all_squash,async,secure,no_subtree_check,ro)
# NFSv4 (in client: mount
-t nfs4 server_address:/var/toto)
/var/toto 172.16.11.0/24(rw,sync)
# NFSv4 (in
client: mount -t nfs4 server_address:/)
/var/toto 172.16.11.0/24(rw,sync,fsid=0)
# NFSv4 (in
client: mount -t nfs4 server_address:/)
# exported dir /mnt/vol1 is itself a mounted drive
/mnt/vol1 172.31.0.0/16(rw,async,mountpoint=/mnt/vol1,fsid=0,no_root_squash)
- Options
-
- 21.6
NFS
Server Configuration
- 21.7
The
/etc/exports Configuration File
- Optimizing
performance:
Network File Systems (MythTV)
-
|
|
|
optimized
(suggested by MythTV)
|
general
options |
ro, rw
|
read only,
read and write
|
|
insecure
|
allow
connections from port 1024 and higher
|
|
insecure_locks
|
allow
insecure file locking
|
|
no_subtree_check
|
disable
subtree checking
|
|
sync /
async
|
sync write
operations on request
|
async
|
no_wdelay
|
force sync of
write operations immediately
|
|
nohide
|
do not hide
filesystems beneath
|
|
mountpoint[=/mnt/xxx]
|
export only
if mounted
|
|
fsid=X
|
set explicit
filesystem ID
|
|
tcp /
udp
|
|
udp
|
user
access
|
no_root_squash
|
remove map of
root in client to anonymous in server (use
carefully)
|
|
all_squash
|
map all users
in client to anonymous in server
|
|
anonuid
|
specify uid
of the anonymous user in server
|
|
anongid
|
specify gid
of the anonymous group in server |
|
- manage export points
-
-
- unexport (-u) all (-a) export points
-
- client SAMBA from Unix
(*):
-
urpmi mount-cifs [samba_client]
mount -t [cifs,smbfs] //server/dir /mnt/toto -o
username=usuari_remot,password=contrasenya_remota
mount -t [cifs,smbfs] //server/dir /mnt/toto -o
credentials=/home/usuari_local/.smbpasswd
/home/usuari_local/.smbpasswd
-
username=usuari_remot
password=contrasenya_remota
-
server |
client |
mount |
/etc/fstab |
CIFS |
no UNIX ext |
mount -t cifs //server/dir /mnt/toto -o
credentials=/home/usuari_local/.smbpasswd ,
uid=usuari_local,gid=grup_local |
//server/dir /mnt/toto cifs credentials=/home/usuari_local/.smbpasswd,
uid=usuari_local,gid=grup_local 0
0 |
UNIX ext |
mount -t cifs //server/dir /mnt/toto -o
credentials=/home/usuari_local/.smbpasswd |
//server/dir /mnt/toto cifs credentials=/home/usuari_local/.smbpasswd
0 0 |
Samba |
mount -t smbfs //server/dir /mnt/toto -o
credentials=/home/usuari_local/.smbpasswd ,
uid=usuari_local,gid=grup_local,nounix |
//server/dir /mnt/toto smbfs credentials=/home/usuari_local/.smbpasswd,
uid=usuari_local,gid=grup_local,nounix
0 0 |
- cli
- smbclient
- info
- list
smbclient -L 192.168.1.1 -U ' % '
- connect
smbclient \\\\192.168.1.1\\samba -U
' % '
- ...
- GUI
konqueror/dolphin: smb://usuari_remot@server/dir
- if local computer is using UTF8:
-
... iocharset=utf8,credentials=...
- Explora / Browse
-
findsmb
- Instal·lació / Installation
nmblookup domain_name
smbclient -L192.168.1.100
-
- without password:
-
smbclient -L192.168.1.100 -N
smbclient -L192.168.1.100 -U ' % '
- Exemples / Examples
- 4geek
- ZTE F680 (ONT)
- /root/.smbpasswd
- sudo mkdir /mnt/ont
- sudo mount -v -t cifs //192.168.1.1/samba
/mnt/ont/ -o credentials=/root/.smbpasswd -o
vers=1.0
- Problemes / Problems
-
- check dmesg
Server requested LANMAN password (share-level
security) but 'client lanman auth = no' or 'client
ntlmv2 auth = yes'
tree connect failed: NT_STATUS_ACCESS_DENIED
- Solució / Solution
- a l'ordinador que fa de client:
- /etc/samba/smb.conf
[global]
client lanman auth = yes
client ntlmv2 auth = no
- only first character of filenames or directories is
shown
- No
subject (Re: smbmount from Linux to an AS/400)
- wireshark
- a byte 00 is following any single character:
u 00 s 00 b 00 2 00 _ 00 1 00 _ 00 1
00/7
- ?????????? ?
? ?
?
?
directory
-
- Solution:
umount -l /mnt/directory
- Grups secundaris
/ Supplementary groups
-
- feu servir CIFS / UNIX ext
- a l'ordinador local heu de tenir el mateix user_id que al servidor
- a l'ordinador local heu de pertànyer als mateixos
grups secundaris que al servidor. Si pertanyeu a un grup
secundari de forma local, però no al servidor, això no
us donarà permisos addicionals al servidor! A la màquina
local heu de fer:
-
- creeu els grups amb el mateix GID que al servidor:
# groupadd -g 8001 grup_secundari_1
# groupadd -g 8002 grup_secundari_2
...
- assigneu a l'usuari aquests grups secundaris:
# usermod -a -G grup_secundari_1
grup_secundari_2 nom_usuari
- (opcional) si l'usuari no vol esperar a sortir i
tornar a entrar, pot forçar l'actualització dels
grups:
$ newgrp grup_secundari_1
grup_secundari_2
- client
NFS from Unix:
-
- Mageia
-
urpmi nfs-utils-clients
- needed?
-
service rpcbind start
service nfs-common start
- Browse:
-
- CentOS
-
sudo yum install nfs-utils
- Configure idmap
-
- /etc/idmapd.conf
-
[General]
Domain = domain.tld
[Mapping]
Nobody-User = nfsnobody
Nobody-Group = nfsnobody
mkdir /mnt/toto
- Mount temporarily:
-
mount -t nfs server:/var/toto /mnt/toto
mount -t nfs4 server:/var/toto /mnt/toto
- Mount permanently:
-
- /etc/fstab (see examples of present mounts at:
/etc/mtab )
-
<ip-address-to-server>:/var/toto
/mnt/toto
nfs4 rsize=8192,wsize=8192,timeo=14,soft 0 0
- Example (generated by manual mount in CentOS 7:
mount
-t nfs4 192.168.1.218:/ /mnt/nfs ) in
/etc/mtab
-
192.168.1.218:/
/mnt/nfs nfs4
rw,relatime,vers=4.0,rsize=262144,wsize=262144,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=192.168.1.236,local_lock=none,addr=192.168.1.218
0
0
- Common
NFS
mount options
-
-
|
|
|
optimized
|
general
options
|
hard
/ soft
|
soft: not
recommended when using a very busy server
|
|
timeo=value_seconds
|
default: 600
|
|
actimeo=value_seconds
|
|
actimeo=0 |
sync / async
|
|
async
|
intr
|
Makes I/O to
a NFS mounted filesystem interuptable if the
server is down |
intr
|
nfsvers={2,3}
|
|
|
vers=4.0
|
|
|
nolock
|
|
|
noexec
|
|
|
namlen=255
|
|
|
port=num
|
|
|
rsize=num,wsize=num
|
default for
v2,v3: 8192; default for v4: 32768 (CentOS:
262144)
|
rsize=32768,wsize=32768 |
sec={sys,krb5,krb5i,krb5p}
|
|
|
tcp / udp
|
|
|
proto=tcp
|
|
|
retrans=2
|
|
|
relatime
|
|
|
noatime
|
|
|
user
access
|
nosuid |
|
|
noacl |
|
|
- Check real values:
-
- User permissions
-
- create a dir owned by a user with login:
-
su my_user -c " mkdir
/mnt/nfs/my_dir"
- the following variant cannot be called from
userdata in aws cloudformation because you cannot
use sudo in it (you will have the error "sudo:
sorry, you must have a tty to run sudo"):
-
sudo su - my_user -c "mkdir
/mnt/nfs/my_dir"
- create
a dir owned by a user without login:
-
su nginx -s /bin/bash -c " mkdir
/mnt/nfs/my_dir; chmod 777 /mnt/nfs/my_dir ;
chmod g+s /mnt/nfs/my_dir "
- Utils
-
- List exported dirs in a remote server:
-
showmount -e
<remote_server_ip_address>
|
Compartició de carpetes en MS
Windows / MS Windows sharing folders
|
- Comparteix la carpeta / Share the folder
- Dóna permisos a l'usuari
- Properties / Security / Add / Advanced options / Search
now
- if Security tab is not present:
-
- Tools / Folder options / View / (don't use) Simple
file sharing
|
|
- Configuració / Settings
-
- Línia d'ordres / Command line
- Tipus de lletres
generals / General fonts
-
- Eines -> Opcions -> OpenOffice.org Writer ->
Tipus de lletra bàsic
- Plantilles / Templates
(.ot*)
-
- Camí / Path
-
- Per omissió / Default
-
- Afegir / Add: Eines -> Opcions -> OpenOffice.org
-> Paths -> Plantilles:
-
- Working
with
templates (ooimpress)
- OpenOffice
Templates (repository)
- Creació / Creation
-
- Utilització / Usage
-
- Using
a
template to create a document
Fitxer -> Nou -> Plantilles i documents
- La plantilla utilitzada es mostra a Fitxer ->
Propietats
- Si es modifica la plantilla original, quan es torni a
obrir el document creat amb ella, l'aplicació preguntarà
si volem tornar-li a aplicar la nova plantilla. Si diem
que no, es perd tot el lligam amb la plantilla original!
(Issue 52783)
- Gestió / Management
-
Fitxer -> Plantilles -> Organitza
- Edició / Edition
-
- Associating
a
document with a different template
-
- Method 2: Template
Changer (requires
urpmi
openoffice.org-java-common) (based on Issue 52783)
-
- oowriter:
-
- Assign template (current document)
- Assign template (folder)
- ooimpresss:
-
- Writer
-
- Estils i
formatació / Styles and formatting
-
- Estils -> Gestiona els estils (F11)
- quan us situeu sobre un lloc del document se us
ressaltarà el seu estil a la finestra del estils
- des de qualsevol lloc, si aneu a Estils ->
Edita l'estil..., editareu l'estil que hi ha
aplicat en aquell punt, i totes les modificacions
s'aplicaran automàticament a tots els altres elements
que fan servir aquell estil
- per a recuperar els valors originals d'un estil,
editeu-lo i cliqueu sobre «Reinicialitza els
valors heretats»
- formatació directa
- si voleu modificar puntualment l'estil d'una part
(p.ex. una paraula) podeu fer servir alguna
d'aquestes opcions:
- Format -> ...
- el tipus de lletra o mida des de la barra
d'eines de formatació (apareix amb: Visualitza
-> Barra d'eines -> Formatació)
- per a tornar a l'estil que li tocaria:
- (botó dret) Neteja la formatació directa
- si voleu que l'estil passi a tenir les
característiques puntuals:
- Estils -> Actualitza l'estil seleccionat
- Copying
and
moving styles
-
- Aplicar estils d'una pàgina mestra (ooimpress)
-
- A partir d'una pàgina mestra:
-
- Plafó lateral dret: Pàgines mestres ->
Disponibles per a ser utilitzades (les de
~/.ooo3/user/template/)
- Si heu modificat la pàgina mestra d'una
plantilla disponible, haureu de tancar i tornar
a obrir l'OpenOffice perquè els canvis es
recarreguin.
- Per a tenir més pàgines mestres disponibles, a
partir de plantilles (Load
additional
slide masters):
-
- Format -> Disseny de la diapositiva ->
Carrega -> Les meves plantilles (potser les
que ja surten no són les de
~/.ooo3/user/template/)
- Si es vol importar la pàgina mestra des d'una
altra presentació, primer s'haurà de desar aquesta
altra presentació com a plantilla, i després aplicar
el procediment descrit en el punt anterior.
- Portada
- situeu-vos a la primera pàgina
- Format -> Portada... -> Converteix les pàgines
existents a portades
- Numeració dels
capítols (seccions i subseccions)
-
- Eines -> Numeració de capítols
- A la taula
de continguts, per a afegir un espai entre el
nombre i el títol
- Taula
de continguts / Table of content
-
- Insereix -> Índexs i taules -> Taula de
continguts, índex o bibliografia
- Espai entre la numeració i el títol de secció
-
- Insereix -> Índexs i taules -> Índexs i
taules -> Entrades
-
- A la casella en blanc que hi ha entre «E#» i
«E» poseu-hi un espai (amb el teclat)
- Make
Table of Contents
hyperlink?
-
- (menú contextual) Edita l'índex o la taula ->
Entrades
- a la posició desitjada (casella en blanc), amb el
botó Enllaç, incloure principi d'enllaç (LS); a la
posició final, tornar a prémer el botó Enllaç per a
posar un final d'enllaç (LE). El text així delimitat
serà clicable.
- Removing
line breaks
-
- Tools / AutoCorrect/AutoFormat
- Options: Combine single line paragraphs if length is
greater than 50%
- Select text
- Apply Style: Default
- Format / AutoFormat / Apply
- Peus / capçaleres
-
- Per a distingir entre capçalera i peu per a la primera
pàgina i la resta, assegureu-vos que el format de pàgina
és el que correspon:
-
- Visualitza -> Barra d'eines -> Formatació
- Estils de pàgina -> Primera pàgina / Per
defecte
- Activeu capçalera/peu:
-
- (Estil de pàgina -> Primera pàgina / Per
defecte): menú -> Modifica -> Capçalera/Peu de
pàgina -> Activa
- Editeu-los normalment
- Per a posar text a l'extrem dret i a l'esquerre,
separeu-lo amb tabuladors.
- Una sola pàgina horitzontal
/ One single horizontal
page
-
- Re:
[libreoffice-users]
How do I change page orientation for only ONE page in
Writer?
- On ha de començar la pàgina horitzontal:
- Insereix -> Salt de pàgina
- (click dret sobre el salt de pàgina) Edita el
salt de pàgina
- Flux de text: Salts -> Insereix
-> Amb estil de pàgina: Horitzontal
- On han de començar una altra vegada les pàgines
verticals:
- Insereix -> Salt de pàgina
- (click dret sobre el salt de pàgina) Edita el
salt de pàgina
- Flux de text: Salts -> Insereix ->
Amb estil de pàgina: Estil de pàgina per
defecte
- Per a definir la llengua
del text:
-
- (impress) Format -> Caràcter -> Llengua
- Per a tot el text:
-
- Eines -> Opcions -> Language settings ->
Languages -> Default languages for documents
-> Només per al document actual
- Per a activar la correcció
ortogràfica automàtica:
- Eines -> Opcions -> Configuració de la llengua
-> Opcions: Revisa l'ortografia a mida que
es teclegi
- Per a activar/desactivar la substitució
automàtica de paraules [suposadament] mal escrites:
-
- Activeu el control de
canvis: Edita -> Canvis -> Registra
- L'estructura lògica s'ha de veure reflectida en la visió
de l'estructura del document:
- El cos de text ha
de tenir l'estil "Cos de text".
- Autofit text
(Impress for Linux) equivalent:
-
- Format -> Text -> Fit to frame
- Per a incloure figures
(dibuix fet amb Draw):
-
- [creeu un marc]
- Obriu la vostra figura amb el Draw, seleccioneu-la i
copieu-la
- Posicioneu-vos al lloc on la voleu enganxar (dins del
marc si n'heu creat un)
- Enganxeu la figura
- Per a posar un peu:
-
- [seleccioneu el marc]
- menú contextual: Llegenda...
- Posicionament del marc (marc = imatge+llegenda):
-
- Alineació -> Centrada
- Àncora -> Al paràgraf
- Ajusta -> Sense ajustament (Cap)
- Nota: si la lletra us surt massa grossa, l'haureu de
canviar prèviament al Draw.
- Per a incloure figures
(imatge):
- Insereix -> Imatge...
- Si encara no té llegenda, afegiu-la amb el menú
contextual: Insereix una llegenda...
- Per a properes ocasions, si voleu que cada vegada que
s'insereixi una imatge es posi automàticament una
llegenda:
- Eines -> Opcions -> OpenOffice.org
writer -> Llegenda automàtica
-> Imatge de l'OpenOffice Writer ->
Categoria: Figura
- Posicionament del marc (marc
= imatge+llegenda) (NO de la imatge) amb el menú
contextual:
- Alinea els objectes -> Centrat
- Àncora -> Al paràgraf
- Ajusta -> Cap
- Referència a una figura:
- Insereix -> Referència creuada
- Tipus: Figura
- Consulteu utilitzant: Categoria i número
- Inclusió de fitxers PDF:
-
- si teniu un fitxer EPS, el podeu convertir a PDF amb:
eps2pdf
- Insereix -> Objecte -> Objecte OLE -> Crea'n
un a partir de fitxer
- es veurà bé a la pantalla i s'imprimirà en alta
qualitat
- Inclusió de fitxers EPS:
-
- el fitxer EPS a inserir ha d'haver estat normalitzat
amb
eps2eps.
- des de l'OpenOffice: Insereix -> Imatge -> Des
d'un fitxer
- es veurà bé a la pantalla i s'imprimirà en alta
qualitat
- Taules
- Tipus de numeració:
- Peu automàtic de taules:
- Eines -> Opcions -> OpenOffice.org
writer -> Llegenda automàtica -> Taula de
l'OpenOffice Writer -> Categoria: Taula
- Per a eliminar les modificacions locals de format respecte
el format de l'estil:
- Format -> Formatació per defecte
- Bibliografia
- Base de dades
- Eines -> Base de dades bibliogràfica
- Referència des d'un paràgraf:
- Insereix -> Índexs i taules -> Entrada
bibliogràfica
- Llista de les referències citades des del document
- Insereix -> Índex i taules -> Taula de
continguts, índex o bibliografia -> Tipus:
Bibliografia
- Perquè la secció Bibliografia aparegui a l'índex de
continuguts:
- Bibliografia (botó dret) Edita l'índex ->
Estils
- seleccioneu a l'esquerra: Títol [Encapçalament
de la bibliografia]
- seleccioneu a la dreta: Encapçalament 1
- cliqueu sobre el botó <
- a l'esquerra ara tindreu: Títol
[Encapçalament 1]
- Clipart (png, svg)
-
urpmi clipart-openclipart
- Eines -> Galeria
- Enllaços / Hyperlinks
-
- Using
hyperlinks
- Edita / Edit:
-
- Select hyperlink
- Edit -> Hyperlink
- Exportació a PDF
- Conversió a PDF
-
- Enllaços / Hyperlinks
- Problemes
-
- Si s'han importat fletxes grosses bidireccionals
des d'un MSPowerPoint, l'OpenOffice petarà quan
s'intenti fer una exportació a PDF.
- Okular
-
- no apareixen els enllaços
-
- assegureu-vos que esteu en mode
«Visualització» (i no en «Selecció de text»)
- Signatura digital / Digital
signature
- Eines ->
Opcions -> LibreOffice -> Seguretat -> Camí
del certificat
- assegureu-vos que és el mateix directori que fa
servir Firefox
- p.ex: firefox:default (~/.mozilla/firefox/xxxxxxxx.default/)
- Comproveu que heu afegit els certificats arrel i hi
confieu
- Per a signar un document open document (odt, ...)
- Fitxer > Signatures digitals > Signatures
digitals...
- Signa el document...
- us hauria de sortir una llista dels
certificats disponibles; si us surt una
llista buida, verifiqueu el «Camí del certificat»
- seleccioneu-ne un
- assegureu-vos que és vàlid fent «Mostra el
certificat...»
- si a la pestanya «General» us diu «No
s'ha pogut validar el certificat»:
- «Signa»
- si el cerificat no s'havia pogut
validar, us apareixerà un avís: «Com a
mínim una signatura té problemes: no se
n'ha pogut validar el certificat»
- Per a signar un document PDF generat a partir d'un
open document:
- Fitxer > Exporta com a PDF...
- pestanya: Signatures digitals
- Per a signar un document PDF qualsevol (p.ex. okular)
- Signing
ODF and PDF documents with LibreOffice (Linux
Kamarada)
- Signing an ODF document
- Checking the digital signature of an ODF document
- Modifying a signed ODF document
- Exporting a document as a signed PDF
- Checking the digital signature of a PDF document
- Checking the digital signature of a PDF document
- Setting up LibreOffice to use Chromium
certificates
- ...
- Impress
-
- Pàgines mestres /
Master pages
-
- Visualitza -> Mestra -> Elements mestres...:
data/hora, peu, número de diapositiva (cal tancar la
mestra per a actualitzar)
- Es poden afegir tantes pàgines mestres com calgui (com
si fos una presentació normal): títol, contingut,...
- Número de pàgina
-
- A la diapositiva mestre cal que hi aparegui (Elements
mestres)
- i, a més, cal activar Visualitza -> Capçalera i peu
- Es poden desactivar també amb si trieu Format -
Disseny de la diapositiva i desactiveu la casella de
selecció Objectes al fons.
- Esquema / Outline
-
- Numeració de les
capçaleres / Heading numbering
-
- Eines -> Numeració d'esquemes...
- Nom de la
diapositiva / Slide name
-
- Text al voltant d'una imatge (adapta el text a un
polígon) / Wrap text around an image (adapt text to a
polygon)
- creeu el rectangle principal
- creeu el rectangle on posareu la imatge (es menjarà
una part del rectangle principal)
- seleccioneu: el rectangle principal, maj + rectangle
secundari
- Formes -> Resta
- feu doble clic al polígon principal
- escriviu el text
- seleccioneu tot el text
- menú amb el botó dret: Text...
- per a modificar la forma del polígon:
- seleccioneu-lo
- menú botó dret: activeu Punts
- Draw
-
- Text alineat amb els connectors / Text aligned to the
connectors:
-
- Adjusting
text
to suit the connecting line
- Configuració:
-
- Visualitza -> Barres d'eines -> Formatació
de text
- (clic dret sobre la barra d'eines de
formatació de text) Personalitza la barra
d'eines... -> Categoria: Formata ->
Fontwork -> (fletxa cap a la dreta)
Eines -> Personalitza -> Barres
d'eines -> Barra d'eines: Dibuix -> Afegeix
-> Formata -> Fontwork
- Ús / Usage:
-
- Seleccioneu el connector i cliqueu sobre la icona
que acabeu d'afegir (Fontwork)
- Calc
-
- Congelació de
files i columnes en un full de càlcul / Freeze
rows and columns in a spreadsheet (*):
-
- Seleccioneu la primera fila o columna o cel·la que
volgueu que es pugui moure
Finestra -> Congela / Window -> Freeze
- Entrada automàtica / Auto completion
-
- Amaga i mostra files i columnes
-
Format -> {Fila,Columna,Full} -> {Amaga.
Mostra}
- Ordenació alfabètica / Alphabetic sort
-
- Text a columnes / Text to column
-
- Ordinals
-
- Eines -> Opcions de correcció automàtica... ->
Opcions de llengua -> Formata els sufixos dels
nombres ordinals (1r -> 1^r)
- Funcions
del
full de càlcul
-
CONSULTAV / VLOOKUP
-
- poseu el 4t paràmetre a 0 per a trobar el valor
exacte (no el primer que se li assembli)
- Base de dades
-
- Histograma / Histogram
-
- Impressió / Print
- límit de la pàgina
- Visualitza > Salt de pàgina
- Problemes amb Mandriva
i KDE/Qt:
-
- Bugs
-
- un cop desada una plantilla, la llista de
la diapositiva mestra no s'actualitza (aquesta mestra
inactualitzable seguirà així en els documents creats a
partir d'aquesta plantilla). Però l'estil, que és el que
compta, es modificarà bé i serà el que s'aplica als
documents creats a partir d'aquesta plantilla.
- per a tornar a aplicar la mateixa plantilla un cop
modificada, cal aplicar una altra plantilla, desar el
document, tancar i obrir l'OpenOffice, i aplicar de nou la
plantilla que hem modificat.
|
|
|
Flameproject
|
|
|
|
|
|
|
- UbuntuBootupHowto
- /etc/init.d/toto:
-
#!/bin/sh
#
# Startup script for the toto daemon
#
# chkconfig: 2345 26 59
#
# description: toto daemon
#
### BEGIN INIT INFO
# Provides: toto
# Should-Start: xxxx
# Required-Start: xxx
# Required-Stop: xxx
# Default-Start: 2 3 4 5
# Short-Description: Toto daemon
# Description: Toto daemon
### END INIT INFO
. /etc/init.d/functions
case "$1" in
start)
gprintf
"Starting toto daemon: "
daemon
"/usr/bin/toto -i 172.16.11.5" -d
RETVAL=$?
echo
[ $RETVAL -eq 0
] && touch /var/lock/subsys/toto
;;
stop)
gprintf
"Shutting down toto daemon: "
killproc toto
RETVAL=$?
echo
[ $RETVAL -eq 0
] && rm -f /var/lock/subsys/toto
;;
status)
status toto
RETVAL=$?
;;
restart|reload)
$0 stop
$0 start
;;
condrestart)
[ -f
/var/lock/subsys/toto ] && restart || :
;;
*)
gprintf "Usage:
%s {start|stop|status|restart}\n" "$0"
RETVAL=1
;;
esac
exit $RETVAL
- ln -s /etc/init.d/toto /etc/rc5.d/S99toto
- service toto start
- Configuració / Setup
-
chkconfig
-
- install a service:
-
update-rc.d to make all the links from
/etc/rc?.d/ to /etc/init.d/toto (start: 90, kill: 10)
-
sudo update-rc.d toto defaults 90 10
- uninstall a service:
-
|
Logitech Harmony
|
- concordance
-
- Harmony
700
-
- Codi font / Source code
- old cvs instructions
[cvs
-d:pserver:anonymous@concordance.cvs.sourceforge.net:/cvsroot/concordance
login]
[cvs -z3
-d:pserver:anonymous@concordance.cvs.sourceforge.net:/cvsroot/concordance
co -P concordance]
urpmi autoconf automake make gcc-c++
libtool-base libusb-compat0.1-devel
cd concordance/libconcord
-
autoreconf --install
./configure
make
make install
cd concordance/libconcord/bindings/python
-
urpmi libpython2.6-devel
python setup.py install
cd concordance/concordance
-
autoreconf --install
./configure
make
make install
- Add
/usr/local/lib to the library
path
- congruity
(GUI)
- Instal·lació / Installation
- http://members.harmonyremote.com/
(it will call Congruity)
|
|
|
|
|
|
- Dropbox
- The Unofficial Dropbox
wiki
- Linux installation (Dropbox:
Painless and Free Backup)
-
- from package
-
- Mageia
-
urpmi nautilus-dropbox (will also
install dropbox package)
- from code:
-
- Mageia
-
urpmi gcc make lib64nautilus-devel
python-docutils
wget
https://linux.dropbox.com/packages/nautilus-dropbox-1.6.1.tar.bz2
tar xjf nautilus-dropbox-1.6.1.tar.bz2
cd nautilus-dropbox-1.6.1
./configure; make;
su; make install
- (as user):
dropbox start -i
- nautilus will open
/home/user/Dropbox/ folder
rm -f ~/.dropbox-dist/libz.so.1
dropbox start
- (run
dropbox again and follow the displayed
URL to sync your Dropbox account to your PC)
- Problems:
-
- Plasma / KDE5 (e.g. Mageia
6)
-
- "isn't running"
- Solució provisional / Workaround
-
- CTRL + ALT F2 to open a text console
-
- or use Gnome instead of Plasma
- Dropbox
Not
Syncing On Ubuntu Linux
-
- Solution:
-
- kill the dropbox process
dropbox start
- Website host
-
|
|
- Grive
-
- Installation
[Grive]
-
- Dependències / Dependencies
-
- urpmi cmake lib64json-devel
- yajl
-
- git clone git://github.com/lloyd/yajl yajl
- cd yajl
- ./configure
- cmake .
- make
- su; make install
- grive
-
- git clone https://github.com/Grive/grive.git
- cd grive
- cmake .
- make
- su; make install
- Usage
-
|
|
urpmi mediatomb
- /etc/mediatomb.conf
-
service mediatomb start
- /etc/mediatomb/
-
- config.xml
-
<name>Servidor
MediaTomb</name>
- add supoort for mts (MPEG-2 TS) files:
-
- config.xml
-
<map from="mts"
to="video/mpeg"/>
<map from="ts" to="video/mpeg"/>
<map from="m2ts" to="video/mpeg"/>
- Administració / Administration
-
|
|
- Examples
-
- Download
-
- Compile
-
./configure
make
make install
- Test
-
- Extras
-
- WebKit
-
- Download
-
- Compile
-
urpmi bison flex gperf libjpeg-deve-
libpng-devel libglib2.0-devel libicu-devel
libenchant-devel libgail-devel libsoup-2.4-devel
libxslt-devel libgstreamer0.10-devel
libgstreamer-plugins-base0.10-devel
./autogen.sh
./configure
make
|
|
- Paquets / Packages
-
- Meta
key (
M- )
-
- ESC (and release)
- Alt (and keep)
- xemacs
indent tutorial
c-set-style java
- Modes
- Instal·lació d'un mode / Mode installation
-
- (consider MELPA)
- set ~/.emacs.d as part of load-path
-
- ~/.emacs
-
(add-to-list 'load-path
"~/.emacs.d")
- put your file in:
-
- load it from ~/.emacs
-
- carregar un fitxer .el / load a .el file
-
M-x load-file
- .emacs:
-
(load "~/nxml-mode-200YMMDD/rng-auto.el")
- carregar un mode / load a mode
-
M-x [sh-mode c-mode xml-mode...]
- .emacs:
-
(setq auto-mode-alist
(cons
'("\\.\\(xml\\|xsl\\|rng\\|xhtml\\)\\'" . nxml-mode)
auto-mode-alist))
- informació sobre un mode / information about a mode
-
- newline in replace:
-
- Inverted colours (reverse video):
-
- printf
colors
-
- Ansi
Color (built-in)
-
M-x load-library ansi-color
M-: (ansi-color-apply-on-region (point-min)
(point-max))
- columnes / columns
-
M-x column-number-mode
- .emacs
-
(setq column-number-mode t)
- ratlles verticals / vertical lines
- parèntesis
-
- cerca
-
- tornar al lloc després de la cerca:
-
- Índex a partir d'una cerca:
-
- HTML
tags
- cerca el tag de tancament a partir del tag d'obertura /
search corresponding ending tag
- cerca el tag d'obertura a partir del tag de tancament /
search corresponding opening tag
- elimina el tag / remove tag
- .emacs:
-
- disable bell
-
- font
-
(set-default-font "6x13")
- auto-fill (automatic introduction of newlines for long lines):
-
- mouse-3 button over (Text) at bottom to activate or
deactivate it
- posar bé un paràgraf / fill
paragraph:
-
- eliminar els retorns de carro / join line:
-
- aneu a la darrera línia del paràgraf i aneu fent una de
les següents opcions:
-
M-^ (cal fer un espai, perquè ^
és una tecla morta)
- conflictes / conflicts (text
diff)
-
- envoltar un text seleccionat
-
- wrap-region.el
-
- dependencies
-
cd ~/.emacs.d/
wget
https://raw.githubusercontent.com/rejeep/wrap-region.el/master/wrap-region.el
- i18n in
Smarty
-
(wrap-region-add-wrapper "{t}" "{/t}"
"/") ; hit / then region
-> {t}region{/t}
- .emacs
-
(add-to-list 'load-path
"~/.emacs.d/wrap-region.el")
- usage
-
M-x html-mode
M-x wrap-region-mode
- select text
- type '/'
- Indentation
-
- Macros
- tabs
-
- Show
white
space
-
- WhiteSpace
-
- install
-
- activate
-
C-u 1 M-x whitespace-mode RET
- deactivate
-
C-u 0 M-x whitespace-mode RET
- usage
|
|
only for this session |
permanently, in
~/.emacs |
display
|
|
M-x
set-variable RET tab-witdth RET 4 |
(setq tab-width
4); |
insert
|
CCMode
|
c-basic-offset
|
|
|
perl
|
cperl-indent-level
|
|
|
|
|
|
- inserting
-
(setq default-tab-width 4);
(setq-default indent-tabs-mode t);
- tabs -> spaces
-
- spaces -> tabs
-
|
Fitxers de text / Text files
|
- Codificació de text / Text
encoding
-
- Per a saber en quina codificació
està un fitxer .tex (*):
-
- Per a canviar la codificació
del fitxer (d'iso-8859-1 a UTF-8):
-
iconv
-f iso-8859-1 -t utf8 toto.tex > toto2.tex
recode
UTF-8 toto.tex
- convert_html_encoding.sh
-
#!/bin/bash
# defaults
output_encoding=utf-8
EXPECTED_ARGS=1
if (( $# != $EXPECTED_ARGS ))
then
cat <<EOF
Usage: `basename $0` html_filename
Converts html_filename to ${output_encoding}, by
modifying the file text encoding and setting:
<meta content="text/html;
charset=${output_encoding}"
http-equiv="Content-Type">
EOF
exit 1
fi
# parameters
input_path=$1
input_basename=$(basename ${input_path})
input_name=${input_basename%.*}
input_extension=${input_basename##*.}
input_dirname=$(dirname ${input_path})
output_basename=${input_name}.${output_encoding}.${input_extension}
output_path=${input_dirname}/${output_basename}
# get present mime-type
mime=$(file -bi ${input_path})
echo "file mime: ${mime}"
# get present text encoding charset
charset=${mime##*=}
echo "file charset: ${charset}"
if [[ $charset != $output_encoding ]]
then
echo "converting file to
$output_encoding"
# convert file encoding
iconv -f ${charset} -t
${output_encoding} ${input_path}
>${output_path}
# convert html charset
sed -i "/<meta.*charset/
c\ <meta content=\"text/html;
charset=${output_encoding}\"
http-equiv=\"Content-Type\">" ${output_path}
# rename output file
rm -f ${input_path}
mv ${output_path} ${input_path}
else
echo "file already in
$output_encoding"
fi
exit 0
- Per a canviar la codificació
del nom del fitxer:
-
convmv -f ascii -t utf8 --notest [filename] >
[newfilename]
- Diferències / Differences
-
|
|
- urpmi php-curl php-mbstring php-mcrypt php-mysqli php-sqlite3
php-pdo_mysql php-pdo_sqlite openoffice.org-pyuno
- Download the latest version
- untar it
- /etc/httpd/conf/vhosts.d/eyeos.conf:
Alias /eyeOS /var/www/eyeOS
<Directory "/var/www/eyeOS">
Options -Indexes FollowSymLinks
MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
- Open http://localhost/eyeOS/install
|
LDAP (Lightweight Directory Access Protocol)
|
- Info
-
- Servidor / Server
-
- OpenLDAP
-
- slapd (server)
- modes
-
- slapd-config: OLC (on-line configuration)
-
- slapd.conf (deprecated)
-
- based on /etc/openldap/slapd.conf
- install
-
- config:
-
- OpenLDAP
Software
2.4 Administrator's Guide (openldap.org)
-
- OpenLDAP
server (Ubuntu)
-
- User and group management
-
- sudo apt-get install ldapscripts
-
- ldapadduser
- ldapsetpasswd
- ldapdeleteuser
- ldapaddusertogroup
- ldapdeleteuserfromgroup
- ldapmodifyuser
- Configure
LDAP
server (CentOS)
- LDAP
(OpenLDAP):
instalación y configuración (I)
- schema
-
- /usr/share/openldap/schema/
- passos / steps:
-
- slappasswd
- /etc/openldap/slapd.conf
rootpw {SSHA}xxxx
suffix "dc=example,dc=com"
rootdn "cn=Manager,dc=example,dc=com"
- logs
- /etc/openldap/slapd.conf
-
- /etc/syslog.conf
-
- local4.* /var/log/ldap.log
- service rsyslog restart
- service ldap restart
- migració dels usuaris de sistema
- configuració del sistema perquè comprovi les
contrasenyes des de fitxer i des d'ldap
- urpmi nss_ldap
- /etc/nsswitch.conf
-
passwd: files
ldap
shadow: files ldap
group: files ldap
- /etc/ldap.conf (base must match what is
defined in server: /etc/openldap/slapd.conf)
-
host 127.0.0.1
base dc=example,dc=com
- /etc/ldap.secret
-
- comprovació que la migració s'ha fet bé:
la resposta a aquesta ordre hauria de donar
dues línies idèntiques:
-
# getent passwd | grep
nom_usuari
- comproveu
l'accés
des del client / check access from clients
- ...
- afegir entrades / add entries
-
- ldapadd
-
- -x: simple authentication
- -W: prompt for password
- -D: bind dn
- general:
-
- edit general.ldif:
-
dn:
dc=example,dc=com
dc: example
objectClass: top
objectClass: domain
dn: ou=usuaris,dc=example,dc=com
ou: usuaris
objectClass: top
objectClass: organizationalUnit
dn: ou=grups,dc=example,dc=com
ou: grups
objectClass: top
objectClass: organizationalUnit
ldapadd -x -W -D
"cn=Manager,dc=example,dc=com" -f general.ldif
- grups / groups:
-
- grups.ldif (or generated by a script)
-
dn:
cn=example,ou=grups,dc=example,dc=com
objectClass: posixGroup
cn: grup1
gidNumber: 10000
ldapadd -x -W -D
"cn=Manager,dc=example,dc=com" -f grups.ldif
- persones / people:
-
- usuaris.ldif (or generated by a script)
-
...
objectClass: posixAccount
...
ldapadd -x -W -D
"cn=Manager,dc=example,dc=com" -f usuaris.ldif
- Apache DS
- Clients
-
- command line
-
- openldap client
-
urpmi openldap-clients
- usage:
-
ldapsearch -x -b 'dc=example,dc=com'
'(objectclass=*)'
ldapsearch [-h ldap_server] -xLLL -b
'dc=example,dc=com' '(objectclass=posixGroup)'
cn gidNumber
- shelldap
-
- smbldap-tools
-
urpmi smbldap-tools
/etc/smbldap-tools/smbldap.conf
-
- usage:
-
smbldap-...
smbldap-passwd
- ...
- GUI
tools (Samba & LDAP)
- Apache
Directory Studio
-
- Bind DN or user:
-
- cn=Manager,dc=example,dc=com
- LUMA browser
- Mandriva
Directory
Server - MDS
- Integration with:
-
- Bugzilla
- DHCP
- MMC (Pulse2)
- OpenSSH
-
- /etc/ssh/sshd_config
-
PAMAuthenticationViaKbdInt yes
- PAM (Pluggable
Authentication Module) in Unix
-
- Mageia
-
- drakauth (urpmi drakxtools-curses) (MCC: Sistema
-> Autenticació)
- [urpmi nss_ldap pam_ldap autofs nss_updatedb
pam_ccreds]
- Samba
- Subversion
|
MMC Mandriva Management Console
|
- Mandriva
Management Console
- Packages
-
-
|
MMC
(3.0.4)
|
Pulse2
(1.3.1)
|
Mandriva
Directory Server (2.4.2.2)
|
core
|
plugins
|
|
source
|
mmc-core-3.0.3.2.tar.gz
mmc-core-3.0.3.2.tar.gz
|
pulse2-1.3.1.1.tar.gz |
mds-2.4.2.2.tar.gz |
server
|
MMC
web interface
|
|
- mmc-web-base
- mmc-web-ppolicy
|
- mmc-web-pulse2
- mmc-web-dyngroup
- mmc-web-glpi
- mmc-web-imaging
- mmc-web-inventory
- mmc-web-msc
- mmc-web-pkgs
|
- mmc-web-bulkimport
- mmc-web-mail
- mmc-web-network
- mmc-web-proxy
- mmc-web-samba
- mmc-web-sshlpk
- mmc-web-userquota
|
MMC
agent
|
|
- python-mmc-core
- python-mmc-base
- python-mmc-ppolicy
|
- python-mmc-pulse2
- python-mmc-dyngroup
- python-mmc-glpi
- python-mmc-imaging
- python-mmc-inventory
- python-mmc-msc
- python-mmc-pkgs
/usr/share/doc/python-pulse2-common/
contrib/<PLUGIN>/sql/install.sh
/etc/mmc/plugins/ |
- python-mmc-bulkimport
- python-mmc-mail
- python-mmc-network
- python-mmc-proxy
- python-mmc-samba
- python-mmc-sshlpk
- python-mmc-userquota
|
servers
|
|
|
- pulse2-common
- pulse2-imaging-server
- pulse2-inventory-server
- pulse2-launcher
- pulse2-package-server
- pulse2-scheduler
/etc/mmc/pulse2
|
|
client
|
|
|
|
|
- Pre-install
-
- Get MMC source
-
wget
http://mds.mandriva.org/pub/mmc-core/sources/3.0.2.1/mmc-core-3.0.2.1.tar.gz
tar xvzf mmc-core-3.0.2.1.tar.gz
- Get MMC / Pulse2 packages
-
- Debian Squeeze
-
/etc/apt/sources.list
-
deb
http://pulse2.mandriva.org/pub/pulse2/server/debian
squeeze 1.3.1.1
[deb
http://mds.mandriva.org/pub/mds/debian squeeze
main]
sudo apt-get update
dpkg-reconfigure debconf
-
sudo apt-get install slapd
mysql-server
sudo apt-get install mmc-agent
python-mmc-dyngroup python-mmc-imaging
python-mmc-inventory python-mmc-msc
python-mmc-pkgs python-mmc-pulse2 mmc-web-base
mmc-web-dyngroup mmc-web-imaging mmc-web-inventory
mmc-web-msc mmc-web-pkgs mmc-web-pulse2
- Mandriva / Mageia
-
urpmi php-xmlrpc php-gd python-sqlalchemy
python-mysql python-OpenSSL python-ldap
- Install from source (README,
INSTALL)
-
cd mmc-core-3.0.2.1
./configure --prefix=/usr --sysconfdir=/etc
--localstatedir=/var
make
make install
-
### MMC LDAP schema must be added to your LDAP
directory in order for
### mmc-agent to run.
### If using dynamic backend (from OpenLDAP 2.3),
schema must be converted
### in LDIF format.
### You can use "mmc-add-schema" to convert and add
the schema.
### Schema file is available in:
/usr/share/doc/python-mmc-base/contrib/ldap
- Install from package
-
- Debian:
-
- LDAP and MySQL root
password will be configured after package installation
- Post-install
-
- LDAP
("slapd using LDAP based configuration") (INSTALL)
-
- Debian
-
dpkg-reconfigure slapd
-
- DN:
example.com (must match
baseDN in /etc/mmc/plugins/base.ini)
[slappasswd -s secret]
[sudo debconf-show slapd]
sudo apt-get install ldap-utils
mmc-add-schema
/usr/share/doc/python-mmc-base/contrib/ldap/
/etc/ldap/schema/
sudo /etc/init.d/slapd restart
- Mageia
-
mmc-add-schema
/usr/share/doc/python-mmc-base/contrib/ldap/
/usr/share/openldap/schema/
- service slapd restart
- MMC agent
-
- /etc/mmc/plugins/base.ini
-
- baseDN = dc=example, dc=com
- password = secret
- [computers]
method
= inventory
- mkdir /home/archives
- /etc/default/mmc-agent
-
- /etc/init.d/mmc-agent start
- If you get a "failed", try with debugging:
-
- Apache
-
- Debian
-
ln -s /etc/mmc/apache/mmc.conf
/etc/apache2/conf.d/
- sudo /etc/init.d/apache2 restart
- Mandriva / Mageia
-
ln -s /etc/mmc/apache/mmc.conf
/etc/httpd/conf.d/
service httpd restart
- MMC usage
-
|
|
-
- Architecture
-
- Services
-
- Inventory
- Launcher
- Package
- Scheduler
- MMC (Mandriva Management
Console) plugins
-
- Dyngroup
- Inventory
-
- Fusion
Inventory
agent for Android
-
- "FusionInventory agent for other platforms
(Linux, Windows, ...) can also be used as a
drop-in in replacement of OCSInventory agent for
inventory part."
- GLPI (when Inventory is not used)
- MSC
- Pkgs
- General
-
- Pulse2
Documentation (Previous
documentation)
-
- Documentation
-
- Prerequisites
-
- MMC
urpmi python-sqlalchemy python-mysql
- Installation from package
-
- Info
-
- Debian Lenny (Pulse2 1.3.0)
-
- Steps
-
- ...
- Installation from source (README,
INSTALL)
-
- Info
-
- Compilation and installation
-
wget pulse2-1.3.1.1.tar.gz
tar xvzf pulse2-1.3.1.1.tar.gz; cd
pulse2-1.3.1.1
./configure --disable-nsis --prefix=/usr
--sysconfdir=/etc --localstatedir=/var
make
make install
- Post-install (choose one of the following)
-
pulse2-setup
- manual MySQL
config:
-
- setup
-
mysql -u root -p
create database pulse2;
create database msc;
create database imaging;
create database inventory;
create database dyngroup;
create user 'mmc'@'localhost' identified
by 'mmc';
grant all on pulse2.* to
'mmc'@'localhost';
grant all on msc.* to 'mmc'@'localhost';
grant all on imaging.* to
'mmc'@'localhost';
grant all on inventory.* to
'mmc'@'localhost';
grant all on dyngroup.* to
'mmc'@'localhost';
flush privileges;
- installation
-
cd /usr/share/doc/pulse2-common/contrib/
./pulse2/sql/install.sh
./msc/sql/install.sh
./imaging/sql/install.sh
./inventory/sql/install.sh
./dyngroup/sql/install.sh
- usage
-
|
|
- MCLv3
-
- MAD-FLUTE compilation
-
- wget ...
- urpmi libcurl-devel
- ...
|
DSM-CC
|
- redbutton
-
- Installation
-
urpmi redbutton-download redbutton-browser
- Compilation
-
- Compiling and
using MHEG Engine Redbutton
- rb-download
-
urpmi zlib1-devel
- get it (one of the following):
-
svn checkout
https://redbutton.svn.sourceforge.net/svnroot/redbutton/redbutton-download/trunk/
redbutton-download
wget
http://sourceforge.net/projects/redbutton/files/current/redbutton-download-20090727.tar.gz
make
- usage:
-
- you need a channels.conf
file correctly generated. The last field in each
line corresponds to the service_id
dvbtune -f 658000 -qam 64
-gi 4 -cr AUTO -bw 8 -tm 8 &&
rb-download -vv
dvbtune -f 818000 -qam 64
-gi 4 -cr AUTO -bw 8 -tm 8 &&
rb-download -vv -c 35 490
(TVE La1)
dvbtune -f 650000 -qam 64 -gi 32 -cr
AUTO -bw 8 -tm 8 && rb-download -vv
[-c carousel_id] service_id
- ...
- rb-browser
-
urpmi libexpat1-devel libfreetype6-devel
libffmpeg-devel libxrender1-devel libxft-devel
libpng-devel
- get it:
-
svn checkout
https://redbutton.svn.sourceforge.net/svnroot/redbutton/redbutton-browser/trunk/
redbutton-browser
make
|
|
- Compilació / Compilation
-
- Get the source:
-
- Get and apply patches
- Compile
|
Diccionaris per a Netscape
|
- Aquests són alguns diccionaris:
- Linux: poseu-los a
/usr/lib/netscape/spell
- MS Windows: poseu-los a
...\Netscape\Communicator\Program\SpellChk\
|
Diccionaris per a ispell
|
- Obteniu els diccionaris (de català:
ispell-ca, Softcatalà)
- Modifiqueu [/usr/share/emacs/20.7/lisp/]ispell.el
per a afegir el català i compilar-lo (menú
Emacs-Lisp/Byte-compile this file) Amb això ens funcionarà
ispell-change-disctionary (accessible també des del menú
Edit/Spell/Change dictionary)
- Modifiqueu [/usr/share/emacs/20.7/lisp/]loaddefs.el
per a afegir el català i compilar-lo (menú
Emacs-Lisp/Byte-compile this file) Amb això funcionarà el menú
Edit/Spell/Select Catala.
|
Internacionalització de Netscape
|
Per a tenir el Netscape internacionalitzat
des de UNIX us heu d'instal·lar:
- netscape-communicator
- (algun netscape-llengua)
Després establiu la variable d'entorn LANG al valor desitjat:
- ca -> català
- es -> castellà
I el netscape se us engegarà en aquella llengua. |
Diccionari català per a MS
Word
|
Descarregueu-vos aquest fitxer i seguiu les
instruccions del fitxer HTML:
|
Defunció del ratolí en Linux
|
Si el ratolí se us ha mort mentre utilitzàveu
Linux, proveu el següent:
CTRL+ALT+F1 per anar a una sessió de text.
- Mogueu el ratolí i veureu el cursor (quadrat blanc) que
belluga.
CTRL+ALT+F7 per a tornar allà on éreu. El ratolí
hauria d'anar bé.
|
Ratolí estrany en MSWindows 2000
sota VMWare
|
- Dins de MSWindows: mireu si teniu dues petites icones a baix a
la dreta que siguin "VMWare tools". Elimineu la que té el
martellet i deixeu la del logotip de VMWare.
- Més informació a vmware.for-linux.configuration:
Jumpy
mouse
|
|
- server (
computer_name )
-
urpmi cvs xinetd
cvs -d /usr/local/cvsroot/repository_name init
chown cvs.cvs /usr/local/cvsroot
- sticky group
(els nous fitxers i directoris es crearan amb el grup cvs /
new files and directories are created as group cvs):
-
chmod 2775 /usr/local/cvsroot
- edit
/etc/cvs/cvs.conf :
-
CVS_REPOS="/usr/local/cvsroot/repository_name"
- start cvspserver (as root):
-
- (
urpmi xinetd )
chkconfig cvs on
service xinetd restart
- tallafoc / firewall:
-
- client:
cvs -d
:pserver:usuari@computer_name:/usr/local/cvsroot/repository_name
login
- Per a fer servir el WinCVS:
- La primera vegada
- CVSROOT -> :pserver:username@dev.isoco.com:/usr/local/cvs-repository
- Identification: password on CVS server
- Admin / Login
- Create / Checkout del
projecte que ens interessa:
- Local directory: BackOfficeCVS (o un
altre qualsevol)
- CVS directory: BackOfficeRepository
- Globals / read-only deshabilitada
- Les altres vegades
- per a pujar un fitxer que hem modificat: commit
- per a baixar-nos l'última versió que hi ha al CVS: update
- Si els fitxers es pugen per primera vegada al CVS en mode binary
es baixaran com a tals quan es faci checkout o update.
- L'inconvenient de fer-ho en binari és que si es modifica
localment una versió més antiga que la que hi havia al CVS, no
es fa el merge automàticament quan es puja.
- Les combinacions text/binary són:
PC local |
(commit) |
CVS |
(update) |
PC local |
fitxer final |
paraula^M |
-(bin)-> |
paraula^M |
-(-kb)-> |
paraula^M |
PC |
|
|
|
-(-ko)-> |
paraula^M^M |
Netscape |
paraula^M |
-(text)-> |
paraula |
-(-kb)-> |
paraula |
UNIX |
|
|
|
-(-ko)-> |
paraula^M |
PC |
- Per a eliminar "-kb" d'un fitxer (*):
-
cvs admin -kkv toto.txt
cvs update -A toto.txt (des de lincvs:
"Treure opcions locals (-kx")
- Per a eliminar "-kb" de tots els fitxers d'un directori (*):
-
find . -type f
-maxdepth 1 -print | xargs -n1 cvs admin -kkv
find .
-type f -maxdepth 1 -print | xargs -n1 cvs update -A
- Els finals de línia es fan de les
formes següents, depenent del sistema operatiu (aquesta
nomenclatura és la que fa servir TextPad):
PC |
^M |
\r \n |
CR LF |
UNIX |
|
\n |
LF |
Mac |
^M |
\r |
CR |
Netscape |
^M^M |
\r \r \n |
CR CR LF |
CR: 0D, LF: 0A
- Vigileu que el rellotge del vostre ordinador
estigui ben configurat (GMT+1) i a l'hora. Si no, pot ser que no
es detectin diferències entre els fitxers locals i els
corresponents al CVS.
- Canvi de log en un commit:
-
- crear
nou_log.txt amb els nous comentaris
per a la versió 1.35 de fitxer.cpp (que conté uns comenatris
erronis)
- Linux:
-
cvs admin -m 1.35:"`cat nou_log.txt`" fitxer.cpp
- Cygwin:
-
/cygdrive/c/Archivos\ de\ programa\LinCVS\cvs
admin -m 1.35:"`cat nou_log.txt`" fitxer.cpp
- MS Windows (amb text de comentari simple):
-
"c:\Archivos de programa\LinCVS\cvs.exe" admin
-m 1:35:"canvis de l'actual versió" fitxer.cpp
|
WinCVS -> LinCVS
|
- CVS/Root:
-
- :pserver;username=usuari;hostname=maquina:/cvsroot ->
:pserver:usuari@maquina:/cvsroot
|
|
- servidor
(
maquina )
-
urpmi subversion-server subversion-tools
chown svn.svn -R /var/lib/svn/repositories
(n'hi ha prou amb?: chgrp svn -R /var/lib/svn/repositories )
- sticky group
(els nous rpositoris es crearan amb el grup svn / new
repositories will be created with svn group):
-
chmod 2775 /var/lib/svn/repositories
- svnpserver (
urpmi subversion-server ):
-
- (
urpmi xinetd )
- /etc/xinetd.d/svnserve:
-
server_args = -i -r
/var/lib/svn/repositories (-i: inetd; -r:
repositories as root dir)
chkconfig svnserve on
service xinetd restart
- tallafocs / firewall:
-
- Creation of alias
to be sure that the directories are created with the right umask (Step
6)
- Creació d'un
repositori / Creation
of a repository (Step
8)
-
- cd
/var/lib/svn/repositories
[umask 002]
svnadmin create repo1 (or:
svnadmin create /var/lib/svn/repositories/repo1 )
[chmod -R 770 repo1] (only needed if umask was not used)
chmod g+t repo1/db
- if you want to have a differentiated group for each
repository:
-
- chgrp -R REPO1_USERS_GROUP_NAME repo1
- add users to REPO1_USERS_GROUP_NAME:
- Autenticació / Authentication
-
- option 1: per repository username / clear password (Built-in
Authentication
and Authorization)
-
/var/lib/svn/repositories/repo1/conf/svnserve.conf
-
- password-db = passwd_file
- realm = etiqueta_reialme
/var/lib/svn/repositories/repo1/conf/passwd_file
-
- usuari1 = contrasenya_usuari1
- usuari2 = ...
- to deny anonymous read access:
-
- option 2: SASL
-
- option 3: svn+ssh
-
- access from client
- Per a importar un fitxer dump
(creat a partir de cvs2svn
o bé des de svnadmin dump) (si s'ha fet des de client, s'ha
d'importar des de client):
-
- Info
-
svnadmin create repo3
svnadmin
load
repo3 < toto.dump
chown svn.svn -R repo3
- Per a afegir només el modul_1 que hi ha dins del dump:
-
- cat toto.dump | svndumpfilter3 modul_1 >
modul_1.dump
- svnadmin load repo3 < modul_1.dump
- Problemes:
-
File not found: transaction '...' ...
- Solutions:
-
- Sincronització /
Synchronisation
-
- GUI client
-
- Eclipse
- esvn
-
- File / Options / Other / Authentication / User and
Password
- ~/.qt/esvnrc
- TortoiseSVN
- Client
-
- List of modules:
-
svn list
svn://maquina/repo1 --verbose --non-interactive
~/.subversion
- Creació de directoris / Creation of directories
-
svn mkdir
svn://usuari@maquina/repo1/module_name _remote /
-m "added module_name"
svn mkdir
svn://usuari@maquina/repo1/module_name _remote /trunk/
-m
"added module_name trunk"
svn mkdir
svn://usuari@maquina/repo1/module_name _remote /tags/
-m
"added module_name tags"
svn mkdir
svn://usuari@maquina/repo1/module_name _remote /branches/
-m
"added module_name branches"
svn mkdir
svn:// usuari@ maquina/repo1/ module_name _remote /trunk/ dir1/
-m
"added dir1"
- Pujada de codi per primera vegada / First time upload
-
cd module_name_local_dir_no_svn
svn import
. svn://host/repo1/module_name_remote/trunk/
- Baixada de codi per primera vegada / First time download:
-
svn co
svn://host/repo1/ module_name _remote/ trunk/
/local/dir/module_name_local
- Estat local / Local status
-
- Estat remot / Remote status
-
- Actualització / Update
-
- Afegir / Add
-
svn add file1 file2 ...
svn delete --keep-local file1 file2 ...
- un directori, però sense el seu contingut / a
directory without its contents
-
svn add --depth=empty name_dir
- Pujada / Commit
-
svn commit [fitxer_local] -m "comentari"
- Diferències
locals / Local differences
-
svn diff
svn diff | kompare -on -
meld
.
- Diferències
remotes / Remote differences
-
- Dóna un conflicte
per resolt / Mark a conflict as resolved
-
- Etiquetes
/
Tags
-
svn copy http://svn.example.com/repos/calc/trunk
http://svn.example.com/repos/calc/tags/release-1.0 -m
"Tagging the 1.0 release of the 'calc' project."
- Propietats
/ Properties
-
- Estableix les propietats / Set properties (*)
-
- directament / directly:
-
svn propset svn:ignore dirname
.
- editant-les / editing:
-
- des de fitxer / from file:
-
- Unset
-
- Get properties
-
svn proplist
svn propget svn:ignore
- List of properties
-
- Eclipse
-
- Remote dump:
-
- svnrdump
(v>=1.7)
-
- rsvndump
- Creació del dump:
-
svnrdump dump
http://server_name/repository_name/ >
repository_name.dump
- Recuperació del dump:
-
svnrdump load
http://new_server_name/new_repository_name/
< repository_name.dump
- Problemes / Problems:
-
svnrdump: E165006: Repository has not
been enabled to accept revision propchanges;
- Solució / Solution (*):
-
- al servidor
/ on server
(
new_server_name ):
-
cd /var/lib/svn/repositories
echo '#!/bin/sh' >
new_repository_name/hooks/pre-revprop-change
chmod 755
new_repository_name/hooks/pre-revprop-change
- Canvi de servidor:
-
svn sw --relocate old_url new_url
- svn+ssh
-
- NOTE: if you don't generate the pair of keys, you can
use svn+ssh
schema with login/password, but you need to specify the
absolute path.
ssh-keygen -t rsa -C remoteserver_name
-f ~/.ssh/id_rsa_remoteserver
- edit file
~/.ssh/config
-
Host hostname
HostName hostname
User username
IdentityFile ~/.ssh/id_rsa_remoteserver
chmod 600 ~/.ssh/config
- send ~/.ssh/id_rsa_hostname.pub
to
hostname and
put it under
~username/.ssh/authorized_keys .
All this is done by simply:
-
ssh-copy-id -i .ssh/id_rsa_remoteserver.pub
username@remoteserver
svn list svn+ssh://username@hostname/absolute_path/to/repo1
- if you want to avoid the specification of the absolute
path, edit the file on the server:
-
~username/.ssh/authorized_keys
-
command="/path/to/svnserve -t -r
/virtual/root" ssh-rsa KEY
COMMENT (where /virtual/root
could be, e.g. /var/lib/svn/repositories/ )
- then you can access the repository with:
-
svn list svn+ssh://username@hostname/repo1
- cvs2svn
-
urpmi cvs2svn
- Documentation
- without options file
-
cvs2svn -s /var/lib/svn/repositories/repo2
--encoding
latin_1 /usr/local/cvsroot/repository_name/module_name
(/usr/local/cvsroot/repository_name/CVSROOT exists)
cvs2svn --dumpfile DUMPFILE CVSREPOS
- with options file
-
-
- (cd /home/cvs)
- wget
http://cvs2svn.tigris.org/source/browse/*checkout*/cvs2svn/tags/2.3.0/cvs2svn-example.options
- cp cvs2svn-example.options
your_file.options
your_file.options:
-
- ctx.cvs_author_decoder =
CVSTextDecoder(['latin1',],)
ctx.cvs_log_decoder = CVSTextDecoder(['latin1',],)
ctx.cvs_filename_decoder =
CVSTextDecoder(['latin1',],)
ctx.output_option =
DumpfileOutputOption(
dumpfile_path=r'toto.dump', #
Name of dumpfile to create
)
-
run_options.add_project( 'my/cvsrepo/project_a', trunk_path='project_a/trunk', branches_path='project_a/branches', tags_path='project_a/tags', symbol_transforms=[ #...whatever... ], symbol_strategy_rules=[ #...whatever... ] + global_symbol_strategy_rules, )
-
run_options.add_project( 'my/cvsrepo/project_b', trunk_path='project_a/trunk/dir_b', branches_path='project_a/branches/dir_b', tags_path='project_a/tags/dir_b', symbol_transforms=[ #...whatever... ], symbol_strategy_rules=[ #...whatever... ] + global_symbol_strategy_rules, )
cvs2svn --options=your_file.options
- Importar el fitxer dump.
|
|
- Instal·lació / Installation
-
- CentOS
-
- from official repository: v1.8.3.1
- if you need a newer version (e.g. for Weblate), get it from Ghettoforge:
-
sudo yum install -y
http://mirror.ghettoforge.org/distributions/gf/gf-release-latest.gf.el7.noarch.rpm
sudo yum install -y --enablerepo=gf-plus git
- Git documentation
-
- Tutorial
-
- A
successful Git branching model
- Workflow
-
- Continuous integration
-
- Commit messages
-
- Altres usos / Other usages
-
- Services
-
- Configuració / Configuration
-
- 1.5
Getting
Started - First-Time Git Setup
git config --list [--show-origin]
- to setup global config file (
~/.gitconfig )
-
git config --global user.email user@example.org
git config --global user.name "My Complete Name"
- to setup per-project config file (
/path/to/project/.git/config )
-
git config user.email user@example.org
git config user.name "My Complete
Name"
- Problemes / Problems
-
fatal: unable to access 'https://github.com/...':
Peer reports incompatible or unsupported protocol version.
-
- Check if the problem is the same with curl:
-
- bad response:
-
$ curl -v -I -X GET https://github.com/ meetecho/janus-gateway/
* About to connect() to github.com port
443 (#0)
* Trying 192.30.253.112...
* Connected to github.com (192.30.253.112)
port 443 (#0)
* Initializing NSS with certpath:
sql:/etc/pki/nssdb
* CAfile:
/etc/pki/tls/certs/ca-bundle.crt
CApath: none
* NSS error -12190
(SSL_ERROR_PROTOCOL_VERSION_ALERT)
* Peer reports incompatible or unsupported
protocol version.
* Closing connection 0
curl: (35) Peer reports incompatible or
unsupported protocol version.
- good response:
-
$ curl -v -I -X GET
https://github.com/meetecho/janus-gateway/
* About to connect() to github.com port 443
(#0)
* Trying 192.30.253.112...
* Connected to github.com (192.30.253.112)
port 443 (#0)
* Initializing NSS with certpath:
sql:/etc/pki/nssdb
* CAfile:
/etc/pki/tls/certs/ca-bundle.crt
CApath: none
* SSL connection using
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
* Server certificate:
* subject:
CN=github.com,O="GitHub, Inc.",L=San
Francisco,ST=California,C=US,postalCode=94107,STREET="88
Colin P Kelly, Jr
Street",serialNumber=5157550,incorporationState=Delaware,incorporationCountry=US,businessCategory=Private
Organization
* start
date: Mar 10 00:00:00 2016 GMT
* expire
date: May 17 12:00:00 2018 GMT
* common
name: github.com
* issuer:
CN=DigiCert SHA2 Extended Validation Server
CA,OU=www.digicert.com,O=DigiCert Inc,C=US
> GET /meetecho/janus-gateway/ HTTP/1.1
> User-Agent: curl/7.29.0
> Host: github.com
> Accept: */*
>
< HTTP/1.1 200 OK
...
- Solució / Solution
-
- update nss (3.19 -> 3.28):
-
- Pujar un projecte a un servidor
central / Import a project into a central
server
-
- on server (user
connected via ssh), create the repository:
-
$ cd /opt/git
$ mkdir project.git
$ cd project.git
$ git --bare init [--shared=group]
- shared for group members:
-
git config core.sharedRepository true
chgrp unix_project_group
-R /opt/git/project.git/
find
/opt/git/project.git/ -type d -exec chmod 2770 {} +
find
/opt/git/project.git/ -type f -exec chmod 660
{} +
- on client computer with the original code:
-
$ cd myproject
$ git init
$ echo -e "*.pyc\n*~\n.project\n.pydevproject" > .gitignore
$ git add .
$ git commit -m 'initial commit'
$ git remote add origin
git@gitserver:/opt/git/project.git
$ git push origin master
- on other client computer:
-
$ git clone git@gitserver:/opt/git/project.git
$ cd project
$ vim README
$ git commit -am 'fix for the README file'
$ git push origin master
- backup
-
|
config |
copied all branches to local |
working branch |
usable as local (working) git |
usable as origin git |
sync with original |
size |
typical usage |
git clone remote_repo_url.git local_repo |
[core]
repositoryformatversion = 0
filemode = true
bare =
false
logallrefupdates = true
[remote "origin"]
url =
remote_repo_url.git
fetch =
+refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote
= origin
merge =
refs/heads/master |
all refs (?) |
master (HEAD) |
yes |
|
git fetch |
size of repo (.git) + size of working branch
|
working developer |
git clone --bare
remote_repo_url.git local_repo.git |
[core]
repositoryformatversion = 0
filemode = true
bare =
true
[remote "origin"]
url =
remote_repo_url.git |
all refs
|
|
no
|
yes, but not in sync with the original one
|
(not possible)
|
size of repo |
|
git clone --mirror
remote_repo_url.git local_repo |
[core]
repositoryformatversion = 0
filemode = true
bare =
true
[remote "origin"]
url =
remote_repo_url
fetch =
+refs/*:refs/*
mirror
= true |
all refs
|
|
no
|
when up to date, identical to the original one |
git remote update
-
git --git-dir project.git remote
update
|
size of repo |
to copy an entire repo to a new git server |
git bundle
create local_bundle_file --all |
|
|
|
no
|
no |
-
|
size of repo |
create a single file from a local git repo (--all:
backup) |
git
copy |
|
|
|
|
|
|
|
|
- ...
- Backup
a GitHub repository
- Git
Repository Backup
- Fully
backup a git repo?
- What's
the difference between git clone --mirror and git clone
--bare
git bundle
- create a bundle file (--all: with all heads) from
inside a local git repo
git bundle create reponame.bundle --all
- incremental
- inspect:
git bundle list-heads reponame.bundle
- regenerate a git repo from a bundle file:
-
git clone [-b master] reponame.bundle
reponame_from_bundle
git clone --bare reponame.bundle
reponame_from_bundle
git clone --mirror
- Passos / Steps
- from a computer with access to the origin git
- first time: create a mirror and a bundle file from
it
git clone --mirror
git@some.origin/reponame.git
/path/to/reponame.git
cd /path/to/reponame.git
git bundle create
/path/to/backups/reponame.bundle --all
- next times (periodically): update the mirror and
create a bundle file from it
git --git-dir /path/to/reponame.git
remote update
cd /path/to/reponame.git
git bundle create
/path/to/backups/reponame.bundle --all
- bare
- pujar des de local a servidor remot (p.ex. GitLab)
- Git global setup:
git config --global user.name "My Name"
git config --global user.email
"myusername@toto.org"
- Create a new repository:
git clone git@gitlab.com:mygroup/myproject.git
cd myproject
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
- Push an existing folder:
cd existing_folder
git init
git remote add origin
git@gitlab.com:mygroup/myproject.git
git add .
git commit -m "Initial commit"
git push -u origin master
- Push an existing Git repository:
cd existing_repo
git remote rename origin old-origin
git remote add origin
git@gitlab.com:mygroup/myproject.git
git push -u origin --all
git push -u origin --tags
- GitHub / GitLab
- GUI
-
- info
-
git status
-
- do not show untracked files:
-
git remote
-v
-
project_name=$(git remote -v | head -n1 | awk
'{print $2}' | sed -e 's,.*:\(.*/\)\?,,' -e
's/\.git$//')
git remote show [remote-name]
git show
-
git describe --tags --long --abbrev=7 | xargs
git show -s --format=format:"%C(yellow)%h|%C(red)%ai|%C(blue)%an|%C(green)%d
%C(reset)%s"
git describe --tags --long --abbrev=7 | xargs
git show -s --format=format:"%h | %ai | %an | %d %s"
git_date=$(git describe --tags --long --abbrev=7
| xargs git show -s --format=format:"%aI")
git show-ref
git describe
-
git describe --tags --long --abbrev=7
git branch
-a
-
git_branch=$(git branch | grep \* | awk '{print
$2}' | tr -d '(')
git log
-
- options
-
--oneline : one line per commit
--decorate : add HEAD, branch, tag
information
--graph : print as a graph
--all : print all commits (not only
until HEAD)
- examples
-
- logs until HEAD:
-
git log --oneline --decorate --graph
git log --pretty=oneline
- all logs:
-
git log --oneline --decorate --graph
--all
- with dates and authors:
-
git log --pretty=format:'%C(yellow)%h|%C ( red ) %ad|%C ( blue ) %an|%C ( green ) %d
%C ( reset ) %s'
--date=short
--graph --all
git reflog
- Inclusió de la informació del git en el codi font /
Include git info in source files:
-
- list files
-
git ls-files
- list ignored files or dirs:
-
git -C <path_to_local_repo_dir>
ls-files --exclude-standard -oi --directory
- list only untracked files
-
git
blame <filename>
-
- show who modified lines in filename
git
bisect
-
- Use binary search to find the commit that introduced a
bug
- Change log
-
- build a local repository
(fetch) and a working copy (...) from a remote repository:
-
git clone
[--depth=...]
nom_usuari@origin_server:/full/path/to/repository.git
git clone
[--depth=...]
nom_usuari@origin_server:/full/path/to/repository.git
<local_repository_name>
- des d'un git en un altre directori local:
git clone /full/path/to/repository.git
git clone /full/path/to/repository
- branca específica (branch_name) en un directori diferent
(repository-branch_name):
-
git clone -b
branch_name
nom_usuari@origin_server:/full/path/to/repository.git
repository-branch_name
- Problemes / Problems
-
fatal: '/home/git/toto.git' does not appear to
be a git repository
fatal: The remote end hung up unexpectedly
-
- Solució / Solution
-
- make sure that user/group has the right permissions for all
the subdirectories. For instance, if all the
users from a given group must have write access
to the origin repository:
-
chmod g+wX -R /home/git/toto.git
- only a specific directory (dir_in_project) inside a
project:
-
git init ~/my_dir
cd ~/my_dir
git remote add -m branch_name origin
https://github.com/user/project.git
git config core.sparsecheckout true
echo dir_in_project >>
.git/info/sparse-checkout
git pull origin branch_name
git checkout branch_name
- commit to local
repository
-
- option 1:
-
- add selected modified files to stage:
- commit files that are on stage:
git commit
-m "comentari"
- option 2:
-
- add all modified files to satge ans commit them in a
single step:
git commit -a
-m "comentari"
- modify comment:
-
- diferències /
differences
-
- entre les modificacions locals i el repositori (per
exemple, abans de fer l'add) / between local modifications
and repo (e.g. before making add)
-
git diff
toto_file | kompare -
git difftool
-d -t kompare
git difftool
-d -t meld
- entre dues branques / between two branches:
-
- entre dues versions del mateix fitxer:
-
- entre dues version de dos fitxers diferents:
-
git diff
<revision_1>:<file_1>
<revision_2>:<file_2>
git difftool
revision_1:file_1 revision_2:file_2
- sync with remote
-
- 3.5
Git Branching - Remote Branches
- Syncing
a fork (GitHub)
- How
to keep two Git repositories in sync
- setup
- if your primary_repo is not bare, you may want to
checkout every remote branch to convert them to
local
git clone --mirror
https://primary_repo_url/primary_repo.git
cd primary_repo.git
git remote add --mirror=fetch secondary
https://secondary_repo_url/secondary_repo.git
- sync primary -> secondary
git fetch origin
git push secondary --all
- sync secondary -> primary
git fetch secondary
git push origin
- sync primary <-> secondary
mkdir ../workdir
git fetch origin
git --work-tree=../workdir/ checkout
branch_name file_name1
git fetch secondary
git --work-tree=../workdir/ checkout
branch_name file_name2
git push secondary
git push origin
- show the remotes:
-
- remove the remote "origin"
-
git remote
remove origin
- git remote
remove <remote_name>
- add a new remote (default to "origin"):
-
git remote
add origin
remote_user@remote_server.org:/home/user/toto.git
git remote
add <remote_name>
remote_user@remote_server.org:/home/user/toto.git
- check remote changes:
-
- get the remote (default to "origin") changes into the
local repository (e.g. to get new branches), without
merging:
-
git fetch
git fetch <remote_name>
- all remotes:
- pull (=
git fetch + git merge FETCH_HEAD )
the remote changes to local repository:
-
git pull origin
master
- git pull
<remote_name> <branch>
- Problemes / Problems
- Your
configuration specifies to merge with the ref
'refs/heads/mybranch'
from the remote, but no such ref was fetched.
- discard local changes
- push the local repository to a remote (default to
"origin"):
-
git push
git push <remote_name>
- push only a branch
git push origin +<branch_name>
git push <remote_name> <branch>
git push <remote_name>
<local_branch>:<remote_branch>
- replace a remote branch by local version of the branch
(e.g. after a squash)
git push --force origin <branch_name>
- alternative:
git push origin :<branch_name> #
to delete remote branch
git push origin <branch_name> # to
push the local branch
- Problemes / Problems
-
"insufficient permission for adding an object to
repository database"
-
- change the remote origin
(e.g. to GitLab):
-
git remote -v
git remote remove origin
git remote add origin
git@gitlab.com:<your_group>/<your_project>.git
git branch --set-upstream-to=origin/master master
git pull
- get a given branch or commit
-
git checkout master
git checkout remotes/git-svn
git checkout c8a1
- ignore
-
- gitignore
- gitignore.io
(create .gitignore file for a lot of languages/frameworks)
- user
-
- repository
-
- exemples / examples:
-
- submodules
- 7.11
Git Tools - Submodules
- list submodules
- addició d'un submòdul / add submodule
cd some_main_project
git submodule add
git@gitlab.com:account_name/some_needed_project.git
- crearà un fitxer
.gitmodules , que conté
la informació dels submòduls
- clonació d'un projecte que ja conté
.gitmodules
:
- en tres passos
git clone
git@gitlab.com:account_name/some_main_project.git
- us crearà un subdirectori
some_needed_project ,
però estarà buit
git submodule init
git submodule update
- en dos passos
git clone
git@gitlab.com:account_name/some_main_project.git
- us crearà un subdirectori
some_needed_project ,
però estarà buit
git submodule update --init
- en un sol pas
git clone --recurse-submodules
git@gitlab.com:account_name/some_main_project.git
- actualització del submòdul:
git submodule update --remote some_needed_project
- només un subdirectori com a submòdul
- revert / reset
-
- revert will add new commits
- reset will not add new commits
- Undo commit
-
- reset (no new commits) not pushed yet (all local
commits will be discarded):
-
git reset
--hard origin/<branch_name>
- reset (no new commits) already pushed:
git reset --hard
<last_working_commit_sha>
git push -f origin <branch_name>
- revert (new commits) already pushed:
-
git revert
...
- only last commit:
-
- last two commits:
-
git revert HEAD~1
git push
- ...
- Undoing
Merges
-
- local:
-
git reset --hard
<hash_of_commit_previous_to_merge>
- local and remote:
-
git revert -m 1 <hash_of_merge_commit>
git revert <hash_of_first_revert>
- Rolling
back
changes with revert
- reset remote branch
- to the same commit as in local
- Resetting
remote to a certain commit
- steps
- you may need to temporarily configure repo to
accept forced push:
- GitLab
- Settings -> Repository ->
Protected Branches
- master: Allowed to force push
- then, from local at the commit of your branch
(e.g. master) you want the remote (e.g. origin)
to be reset to:
git push --force origin
<commit_sha>:master
- branch
-
- Git
-
Branches in a nutshell
- clone a given branch
-
git clone -b branch_name
nom_usuari@origin_server:/full/path/to/repository.git
repository-branch_name
- list all local branches
-
- list all available (local and remote) branches
-
- sort by date
-
git branch -v --sort=committerdate
git branch -a -v --sort=committerdate
--no-merged
git for-each-ref
--sort=-committerdate refs/heads/
- get current branch
-
git rev-parse --abbrev-ref HEAD
git symbolic-ref --short HEAD
- branch
management
-
git branch
git branch -v
git branch --merged
git branch --no-merged
git branch -v --sort=committerdate --no-merged
- create a new branch:
-
- switch to the new branch:
-
git checkout <branch_name>
- create a new branch and switch
to it:
-
git checkout -b <branch_name>
- create a local branch based on a remote
one (a previous fetch was done) and switch
to it:
git checkout <branch_name>
- git checkout
--track
<remote_name>/<branch_name>
git checkout -b <local_branch_name>
<remote_name>/<remote_branch_name>
- rename a local branch (*)
-
git branch
-m <old_branch_name>
<new_branch_name>
- rename a remote branch (*)
-
git branch
-m <old_branch_name>
<new_branch_name>
git push origin : <old_branch_name>
git push --set-upstream origin
<new_branch_name>
- other users:
-
- upstream (connect to/track a remote
branch)
- set the upstream:
git branch -u
<remote_name>/<remote_branch_name>
git branch
--set-upstream-to=<remote_name>/<remote_branch_name>
- get the upstream:
- delete the upstream:
- push a local branch
-
git push origin <branch_name>
- undo a push (recently done)
git reset --hard HEAD~1
git push --force
- get new branches from origin
-
- merge master into your branch
-
git checkout <branch_name>
git merge --no-ff master
- Abort merge
-
- merge your branch into master
-
git checkout master
git merge --no-ff <branch_name>
- discard local merge, not pushed yet
-
- dry-run merge (Is
there a git-merge --dry-run option?)
git merge --no-commit --no-ff
<branch_name>
git status -uno
git merge --abort
- revert / undo a
merge
- conflicts
-
- solve conflicts
-
- manually, or
git mergetool
git add <file_with_resolved_conflicts>
git status
git commit -m ...
- delete branch
git branch -d <branch_name>
- to force deletion:
git branch -D <branch_name>
- delete branch in origin
-
- rebase branch (sense canviar-ne el nom /
without changing name)
git checkout my_branch
git rebase master
git push --force-with-lease origin my_branch
- other users should remove their local versions of the
branch and checkout the rebased one:
git branch -D my_branch
- git fetch
git checkout my_branch
- rebase branch (canviant-ne el nom /
changing name)
git checkout my_branch
git rebase master
- git branch -m
my_branch my_branch_rebased
- git branch
--unset-upstream my_branch_rebased
- git push
--set-upstream origin my_branch_rebased
- other users
- abort rebase (local)
- squash
- tag
-
- Git
-
Tagging
- Semantic versioning 2.0.0
- crea una etiqueta / create a tag:
-
git tag -a nom_tag [-m "my
comments"]
- lightweight
-
git push origin nom_tag
- etiqueta un commit anterior / tag a previous commit:
-
git log --pretty=oneline
-
git tag -a v1.2 9fceb02
- llista d'etiquetes / list of tags:
-
git tag
- amb els comentaris:
- detalls sobre una etiqueta / details about a tag
-
- puja a origin
-
- una etiqueta
-
- totes les etiquetes
-
- afegeix un comentari a una etiqueta existent / add a
comment to an existing tag:
-
git tag -f existing_tag existing_tag -m "my
comments"
- esborra una etiqueta / delete a tag:
-
- origin
-
git push --delete origin old_tag
- reanomena una etiqueta / rename old_tag -> new_tag:
-
git tag new_tag old_tag
git tag -d old_tag
git push --delete origin old_tag
git push origin new_tag
- get
-
- cherry-pick
- Aplicar
un commit a otra rama con git cherry-pick
- apply changes from a hotfix to preproduction branch:
git checkout branch_with_hotfix
git log --pretty=oneline
note the commit_id of the commit you want to
apply to preproduction branch
git checkout preproduction
git cherry-pick <commit_id>
- patch
-
- 5.3
Distributed
Git - Maintaining a Project
- Option 1: to be applied with classical patch
- Creació / Creation
git diff -p v1.0.0 >0001.patch
- Aplicació / Application
- Option 2: to be applied to a git repo
- Creació / Creation
-
- diferències entre el git local (amb els commits
fets) i l'origin:
-
- Aplicació / Application
-
git apply 0001-toto-description.patch
git am ...
- Desfer l'aplicació / Undo application
-
git apply -R 0001-toto-description.patch
-
- archive
-
- git -
svn
-
- 9.1
Git
and Other Systems - Git as a Client
- Git and
Subversion
- git-svn(1)
- Howto
Use
Git and Svn Together
- git-svn
tutorial
- Git Diff between HEAD and SVN
Master
- Bitbucket
-
- Exemples / Examples
-
- rèplica de tot
el repositori (s'hi pot estar una bona estona):
-
git svn clone
svn://svn.code.sf.net/p/gpac/code/ [-T trunk -b
branches -t tags] [local_name]
- you can replace "-T trunk -b branches -t tags" by
the equivalent, shorter one "-s"
- només una part de la història:
-
git svn clone -s -r 4000:HEAD
svn://svn.code.sf.net/p/gpac/code/
- baixa només la darrera versió de trunk:
-
- primera vegada / first time
-
cd /path/to/; mkdir gpac; cd gpac
git
svn
init svn://svn.code.sf.net/p/gpac/code/trunk/gpac
git
svn
fetch -rHEAD (or specific revision,
obtained with "svn log svn://svn.code.sf.net/p/gpac/code/trunk/gpac ")
git svn clone -rHEAD svn://svn.code.sf.net/p/gpac/code/trunk/gpac
- or a range of revisions (from r4000 to HEAD)
-
git svn clone -r 4000:HEAD svn://svn.code.sf.net/p/gpac/code/trunk/gpac
- actualitza el
git a partir de l'svn / update git from svn:
-
- des d'un altre ordinador, sincronitza
cap a aquest nou git creat / attach another client
computer to this newly created git
-
git clone user@server:/path/to/gpac.git
- o bé, des del matiex ordinador, en un altre
directori / or, from the same computer, on another
directory:
-
- a l'ordinador que sincronitza l'svn, mira les diferències
que hi ha entre el git local (
master ) (amb
els commits fets) i la versió que s'ha baixat de l'svn
remot (remotes/git-svn ):
-
- comprova les branques existents
-
git diff remotes/git-svn..
- crea un patch amb aquestes diferències:
-
git format-patch remotes/git-svn
- Migració / Migration svn ->
git
-
- 8.2
Git
and Other Systems - Migrating to Git
-
- Passos / Steps
-
- Optional: get the authors from svn history, and
edit the resulting users.txt file:
svn log --xml | grep -P "^<author" |
sort -u | perl -pe
's/<author>(.*?)<\/author>/$1 = /'
> users.txt
- Clone the remote svn to a local git (as before):
git svn clone
svn://server/remote_project_name
[--authors-file=users.txt] --no-metadata
local_project_name
- post-import cleanup (for branches and tags)
- Add a remote server:
git remote add origin
your_login_name@remote_git_server:/path/to/project_name.git
- On
the remote server, create the repository
- from your local computer push to it:
|
|
- Instal·lació / Installation
- Dependències / Dependencies
- Get Grafana
- tar
wget
https://dl.grafana.com/oss/release/grafana-6.5.3.linux-amd64.tar.gz
tar -zxvf grafana-6.5.3.linux-amd64.tar.gz
- rpm
wget
https://dl.grafana.com/oss/release/grafana-6.5.3-1.x86_64.rpm
- Mageia (not working: needs freetype)
urpmi grafana-6.5.3-1.x86_64.rpm
- ...
- Start server
sudo ... grafana-6.5.3 /bin/grafana-server
- Ús / Usage
- http://localhost:3000/
- admin / admin (només la primera vegada / only the first
time)
-
Data Source |
Dashboard |
|
|
InfluxDB
- URL: http://localhost:8086
- Database: home_db
|
Query: InfluxDB
- A
- FROM default temperature WHERE machine =
unit42
- SELECT field(external) mean()
- GROUP BY time($_interval) fill(null)
- FORMAT AS Time series
- ALIAS BY unit42_external
- B
- FROM default temperature WHERE machine =
unit42
- SELECT field(internal) mean()
- GROUP BY time($_interval) fill(null)
- FORMAT AS Time series
- ALIAS BY unit42_internal
|
|
|
InfluxDB
- URL: http://localhost:8086
- Database: sensors
|
|
|
|
|
Calendaris / Calendars
|
- plan to iCalendar
-
plan2vcs
dayplan dayplan.vcs
recode
l1..utf-8 dayplan.vcs , to convert from Latin-1
(plan) to utf-8 (kde). (based on KDE
Unicode
How-to)
- open dayplan.vcs with Korganizer and export it as
iCalendar: dayplan.ics
- Google calendar synchronisation
-
|
apropos
|
|
|
gcf = figure( 'Position', [0 0 mida_x
mida_y] );
...
axis( [0 255 0 Inf] );
set( gcf, 'PaperPositionMode', 'auto' );
print( '-r72', '-dtiff', 'toto.tif' );
|
|
- Temps / Time
-
include <time.h>
time_t tHoraActualUTC;
time( &tHoraActualUTC ); // get present time
-> |
time_t |
tm |
str |
time_t
(sec from 1 jan 1970) |
- |
gmtime |
|
localtime |
ctime |
tm
(struct) |
timegm
(gnu
c)
_mkgmtime
(ms visual) |
- |
asctime |
mktime (ansi)
timelocal
(gnu
c) |
|
str |
|
getdate
strptime
strftime |
- |
NO fa la conversió a hora local
fa la conversió a hora local
- Estàndards per a la notació del temps / Standards for time
notation
-
|
|
- Info
-
- Instal·lació desatesa / Batch installation:
-
- Re:
cygwin installation batch file?
- only download (no installation):
-
setup.exe
--download
--quite-mode --root c:\cygwin --local-package-dir
c:\tmp --site ftp://ftp.rediris.es/mirror/cygwin
- basic installation from scratch
-
setup.exe
--quite-mode --root c:\cygwin --local-package-dir
c:\tmp --site ftp://ftp.rediris.es/mirror/cygwin
[--no-shortcuts --no-desktop]
- personalised installation from scratch
-
setup.exe --quite-mode --root c:\cygwin
--local-package-dir c:\tmp --site
ftp://ftp.rediris.es/mirror/cygwin --packages
package1,package2
- add some packages (not previously downloaded to c:\tmp)
-
setup.exe --quite-mode [--root c:\cygwin
--local-package-dir c:\tmp --site
ftp://ftp.rediris.es/mirror/cygwin] --packages
package1,package2
- Usuaris i grups / Users and groups
-
mkpasswd -d DOMINI | grep
nom_usuari >> /etc/passwd
mkgroup -d DOMINI | grep
grup_usuari >> /etc/group
- Paquets / Packages
-
cygcheck [-f -l -c]
- Mirrors
-
- Utilitats / Utils
-
- Compilation without cygwin.dll (or use MinGW
instead):
-
- Access from DOS terminal
-
- Serveis / Services
-
cygrunsrv
-
-L : list
-S service_name :
register service_name
-R service_name :
unregister service_name
-Q service_name :
query status for service_name
- Drivers
-
|
|
- Instal·lació / Installation
-
- Configuració / Configuration
-
-
MSA
Mail
Submission
Agent
|
MTA
Mail
Transfer
Agent
|
MDA
Mail
Delivery Agent
|
Postfix smtpd
(server) |
Postfix smtpd
(SMTP server: receiving)
|
Postfix smtp
(SMTP+LMTP client: sending) |
dovecot, cyrus
|
/etc/postfix/master.cf
|
/etc/postfix/main.cf
(sudo postconf -e ...) |
/etc/postfix/main.cf
(sudo postconf -e ...) |
|
Enable port 587:
submission inet
n
-
n
-
- smtpd
-o syslog_name=postfix/submission
-o smtpd_tls_security_level=encrypt
-o smtpd_sasl_auth_enable=yes
-o smtpd_reject_unlisted_recipient=no
-o
smtpd_client_restrictions=$mua_client_restrictions
-o
smtpd_helo_restrictions=$mua_helo_restrictions
-o
smtpd_sender_restrictions=$mua_sender_restrictions
-o
smtpd_recipient_restrictions=permit_sasl_authenticated,reject
-o milter_macro_daemon_name=ORIGINATING
|
# network interfaces that listen
inet_interfaces = localhost,
192.168.1.100
# trusted networks that can send
messages
mynetworks = 192.168.1.0/24, 127.0.0.0/8
|
# domain name for this email server
mydomain = example.org
# host name of the system
myhostname = mail.example.org
# domain for locally-posted email
myorigin = $mydomain
# this server is destination for emails
with this domain
mydestination = $myhostname,
localhost.$mydomain, localhost, $mydomain
# destination domains this server can
relay to
relay_domains =
home_mailbox = Maildir/
|
|
|
SASL: cyrus
SASL: dovecot
smtpd_sasl_auth_enable = yes
broken_sasl_auth_clients = yes
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_security_options =
noanonymous
smtpd_sasl_local_domain =
smtpd_recipient_restrictions =
permit_mynetworks,permit_sasl_authenticated,reject_unauth_destination
|
SASL (when relaying:
connection to a remote STMP for submission):
smtp_sasl_auth_enable = yes
smtp_tls_security_level = encrypt
smtp_sasl_tls_security_options =
noanonymous
relayhost = [mail.isp.example]
# Alternative form:
# relayhost = [mail.isp.example]:submission
smtp_sasl_password_maps =
hash:/etc/postfix/sasl_passwd
|
|
|
certificates
(server):
- self signed test certificates (including key)
can be created with OpenSSL:
"
cd /etc/postfix/; make -f /etc/pki/tls/certs/Makefile
mail.example.org.pem "
-
smtpd_tls_cert_file =
/etc/postfix/mail.example.org.pem
smtpd_tls_key_file = $ smtpd_tls_cert_file
- Let's
Encrypt certificates:
-
smtpd_tls_cert_file = /etc/letsencrypt /live/mail.example.org/fullchain.pem
smtpd_tls_key_file = /etc/ letsencrypt /live/mail.example.org/privkey.pem
STARTTLS:
smtpd_tls_security_level = may
TLS (server):
smtpd_use_tls = yes
smtpd_tls_loglevel = 1
smtpd_tls_received_header = yes
#smtpd_tls_CAfile =
/etc/pki/tls/certs/ca-bundle.crt
smtpd_recipient_restrictions =
permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination
|
TLS (client)
(connection to destination MTA; e.g. if not secure,
Gmail will mark message as non secure):
smtp_use_tls
(obsolete since Postfix 2.3)
smtp_tls_security_level = may
smtp_tls_note_starttls_offer = yes
smtp_tls_CAfile =
/etc/pki/tls/certs/ca-bundle.crt # see also:
ca-root-nss.crt
|
|
|
|
Virtual maps
virtual_alias_domains = $mydomain
virtual_alias_maps =
hash:/etc/postfix/virtual
|
|
|
|
/etc/postfix/virtual
postmaster@example.org
root
root@example.org root
info@exampe.org info
sudo postmap /etc/postfix/virtual
|
|
- Postfix
Standard
Configuration Examples
- Test configuration
-
- Django +
Postfix
- Postfix
rate limiting – Politeness goes a long way
- CentOS 5
-
- Port
-
- Enable port 587 (
submission ),
that
will enable STARTTLS on 250 responses to EHLO request
-
- /etc/postfix/master.cf
-
submission inet
n
-
n
-
- smtpd
-o syslog_name=postfix/submission
-o smtpd_tls_security_level=encrypt
-o smtpd_sasl_auth_enable=yes
-o smtpd_reject_unlisted_recipient=no
-o
smtpd_client_restrictions=$mua_client_restrictions
-o
smtpd_helo_restrictions=$mua_helo_restrictions
-o
smtpd_sender_restrictions=$mua_sender_restrictions
-o
smtpd_recipient_restrictions=permit_sasl_authenticated,reject
-o milter_macro_daemon_name=ORIGINATING
- Seguretat
/ Security
-
- Info
-
- Let's
Encrypt
-
- STARTTLS
-
- Problemes / Problems
-
warning: TLS library problem:
5294:error:140760FC:SSL
routines:SSL23_GET_CLIENT_HELLO:unknown
protocol:s23_srvr.c:647:
-
- Solució / Solution
-
- telnet/nc does not allow sending
non-encrypted text once STARTTLS has
been invoked
- use openssl
s_client instead
- Autenticació / Authentication
-
- SASL - Simple Authentication
and Security Layer
-
- Postfix
SASL Howto
- supported SASL implementations:
-
- Cyrus SASL
-
- Instal·lació / Installation
-
- CentOS
-
sudo yum install cyrus-sasl
systemctl enable
saslauthd.service
systemctl start
saslauthd.service
- Dovecot SASL
-
- Instal·lació / Installation
-
- Configuració / Configuration
-
- Basic
configuration
-
- Authentication
(users and passwords)
-
- Example from real user, with
password stored as plain text
(do not use it in real
deployments):
-
$ echo
"$USER:{PLAIN}password:$UID:$(id
-g)::$HOME"
> users
sudo mv users
/etc/dovecot/
- Add non-system users with
encrypted passwords
-
- Password
Schemes (How
To Safely Store A Password)
- check availability of
encryption schemes:
-
- encrypt with SHA256-CRYPT:
-
$ doveadm pw -s
SHA256-CRYPT -p
my_password
{SHA512-CRYPT}$6$...
echo "$USER: {SHA512-CRYPT}$6$... :$UID:$(id
-g)::$HOME"
> /etc/dovecot/users
sudo chown root.root
/etc/dovecot/users; sudo chmod
600 /etc/dovecot/users
- /etc/dovecot/conf.d/10-auth.conf
-
#
Remove '#' to use
passwd-file:
!include
auth-passwdfile.conf.ext
- check:
-
doveconf -n passdb
userdb
- /etc/dovecot/conf.d/10-master.conf (or
under directory included by file
specified when running:
doveconf
-n | head -n1 )
-
-
service auth { ... # Postfix smtp-auth unix_listener /var/spool/postfix/private/auth { mode = 0660 # Assuming the default Postfix user and group user = postfix group = postfix } ... }
# Outlook Express and Windows Mail works only with LOGIN mechanism, not the standard PLAIN: auth_mechanisms = plain login
- Prova / Test
-
- Testing
SASL
authentication in the Postfix SMTP
Server (postfix.org)
- encode username and password in base64
(if password starts with a digit, and
bash version >=2.3, check that you
are using four
zeros):
-
$ echo -ne '\0000username\0000password'
| base64
<username_and_password_in_base64>
- check decoding:
-
$ echo -ne <username_and_password_in_base64>
| base64 -d username password
$ openssl s_client
-connect mail.example.org:587
-starttls smtp
...
250 DSN
AUTH PLAIN
<username_and_password_in_base64>
- Problemes / Problems
-
- dovecot: auth-worker(5017): Error:
passwd-file:
open(/etc/dovecot/users) failed:
Permission denied
-
- non-relayed (local Postfix acts as a server:
smtpd_... )
-
- (feu servir el fitxer
/etc/postfix/main.cf
predeterminat / use the default /etc/postfix/main.cf
file)
- el camp "from" es crearà a partir de:
-
- seguretat
/ security
- usuaris / users
-
- accessible des de fora / accessible from outside
-
- relayed (local Postfix acts as a client:
smtp_... )
-
- What
delivery
method: direct or indirect
- Postfix
relayhost
- Configuring
SASL
authentication in the Postfix SMTP/LMTP client
- passos / steps
-
- remote smtp credentials
- /etc/postfix/sasl_passwd
smtp.example.org
remote_smtp_user:contrasenya
chown root:root
/etc/postfix/sasl_passwd; chmod 600
/etc/postfix/sasl_passwd
postmap /etc/postfix/sasl_passwd
- if smtp user (e.g. remote_smtp_user) is different
from local user (e.g. apache), masquerading is
needed:
- info
-
- passos / steps
-
-
/etc/postfix/generic
postmap /etc/postfix/generic
-
/etc/postfix/main.cf
mydomain = example.org
myorigin = $mydomain
relayhost
= [smtp.example.org]
smtp_sasl_auth_enable
= yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options =
smtp_generic_maps = hash:/etc/postfix/generic
# for a detailed (+1) debug only for specified
(debug_peer_list) peers:
debug_peer_level = 1
debug_peer_list = smtp.example.org
- Debug
-
telnet
localhost 25
-
mailq
/var/log/maillog
- Client
|
Dovecot (servidor IMAP)
|
|
|
- Instal·lació /
Iinstallation
-
- Mageia
-
urpmi
mysql mysql-MariaDB
# urpmi mariadb
- Ubuntu
-
- CentOS
-
yum install mariadb-server
#
TMPDIR=/var/tmp mysql_install_db
# chmod 755
-R /var/lib/mysql
- check that:
-
- installation is ok (no errors about mysql user or
group)
- start the service
-
- Mageia
-
systemctl enable mysqld.service
systemctl start mysqld.service
- old way
-
- Ubuntu
-
- CentOS
-
systemctl enable mariadb.service
systemctl start mariadb.service
- (cal?) # mysql_upgrade
- check that it is working:
-
mysql [-h localhost -u root]
- Note: "
mysql -h 127.0.0.1 -u root " will
not work
- Establiu
la contrasenya de root / Set the root password
- Problemes / Problems
-
- només s'hi pot connectar des de superusuari. Des
d'usuari, apareix l'error "
ERROR 2002 (HY000):
Can't connect to local MySQL server through socket
'/var/lib/mysql/mysql.sock' (13) "
-
- Solució / Solution:
-
# chmod 755 -R /var/lib/mysql
- Set the root
password (How
to
reset the root password) by using one
of the following methods:
-
mysql_secure_installation
- Command line (recommended by MariaDB after running
mysql_install_db):
# /usr/bin/mysqladmin -u root password ['new-password']
# /usr/bin/mysqladmin -u root -p -h localhost
password ['new-password']
# service mysqld restart
- Check that it is working when logged as a regular
user:
-
- Use mysql-workbench
- Use mysql-administrator
- $ mysql -u root
mysql> UPDATE mysql.user SET password =
password('new_password')
WHERE user = 'root';
mysql> FLUSH PRIVILEGES;
- Afegir
usuaris
/ Add users
-
- Adding
users
mysql -u root -p -h localhost mysql
-
CREATE USER 'monty'@'localhost' IDENTIFIED BY
'some_pass';
- Creació d'una base de dades i un usuari:
-
mysql -u root -p -h localhost
-
CREATE DATABASE IF NOT
EXISTS toto_db;
GRANT ALL ON toto_db.* TO 'usuari'@'localhost'
IDENTIFIED
BY 'contrasenya';
FLUSH PRIVILEGES;
exit;
CREATE DATABASE IF NOT
EXISTS toto_db;
GRANT ALL ON toto_db.* TO 'usuari'@'%'
IDENTIFIED
BY 'contrasenya';
FLUSH PRIVILEGES;
exit;
- Bolcat des d'un fitxer
/ Dump from file
-
- Execució de comandes SQL en línia (o
des d'un script) /
Execution of on-lin SQL commands (or inside a script):
-
- How to feed mysql queries from
bash
- Opció 1: using EOF:
-
mysql -u root -p mysql
<<EOF
CREATE USER 'usuari'@'localhost' IDENTIFIED BY
'contrasenya';
EOF
mysql -u root -p > toto.txt
<<EOF
use toto_db;
select * from toto_table;
EOF
- Opció 2: auxiliary file
-
mysql --host=localhost --user=user --password=password [database_name] <
commands.sql
- Opcions / Options
-
-s / --silent
-N / --skip-column-names
- Time
Zone Tables
-
- Admin (GUI)
-
- mysql-workbench
-
urpmi mysql-workbench
- Set the root password:
-
- New connection:
-
- Connection Name:
your_label
- Connection Method:
Local Socket/Pipe
- Socket/Pipe Path: (leave empty)
- Username:
root
- Password / Store in Keychain...:
your_password
- Default Schema: (leave empty)
- Problemes / Problems
-
- "pure virtual method called"
-
- phpMyAdmin
-
- mysql-administrator
-
urpmi mysql-administrator
- Set the root password:
-
mysql-administrator
- Stored connection / Save this connection...: your_label
- Server hostname: localhost
- Username: root
- Password: (empty)
- Connect
- User Administration / root : New password / Apply
changes
- Accés remot
/ Remote access
-
- server (IP address: server_ip_address):
-
-
- comment "skip-networking"
- ? bind-address
- grant privileges for a user (user_with_remote_privileges)
from a remote location:
-
- from command line (user_with_remote_privileges
is mythtv):
-
mysql -u root -p
mysql> grant all on mythconverg.* to
mythtv@"%" identified by "mythtv";
mysql> flush privileges;
- (?) from mysql-workbench:
-
- Server administration:
-
- Security / Users and privileges
-
- Server Access Management
-
- Select user: user_with_remote_privileges
- Login name: user_with_remote_privileges
- Limit connectivity to hosts
matching: % (for any host)
- Schema Privileges
-
- Select user: user_with_remote_privileges
- Add entry...
service mysqld restart
- client (IP address: client_ip_address):
-
mysql -h server_ip_address
-u user_with_remote_privileges
-p
- Logs
-
- Problemes / Problems
-
- Esborrar totes les
bases de dades i eliminar la contrasenya de root:
-
rm -rf /var/lib/mysql
service mysqld restart
- Esborrar mysql /
Removing mysql
-
urpme mysql
mariadb
- this will not remove all the data (root password...). To
completely remove mysql:
-
- Causes
of
Access denied Errors
- Configuration for:
-
- Client
(GUI)
-
- sqlgui
-
urpmi sqlgui libsqlguimysql
ln -s /usr/lib/libsqlguimysql-0.1.1.so
/usr/lib/libsqlguimysql.so
- Backup
-
mysqldump database_name
-u root -p > database_name.sql
mysqldump --all-databases -u root -p >
all_databases.sql
- cron
backup
-
/var/spool/cron
-
0 23 * * * /root/backup_base_dades.sh
/root/backup_base_dades.sh
-
#!/bin/bash
DB_BACKUP_DIR="/var/export/backup"
DB_USER="root"
DB_PASSWD="******"
DATE="`date '+%Y%m%d_%H%M'`"
mysqldump -u$DB_USER -p$DB_PASSWD timetracker >
$DB_BACKUP_DIR/backup_timetracker_$DATE.sql
mysqldump -u$DB_USER -p$DB_PASSWD wikidb >
$DB_BACKUP_DIR/backup_wikidb_$DATE.sql
echo "$DATE: Backup done" >
/tmp/backup_base_dades.txt
mail -s
"[backup] Backup base de dades" $EMAIL <
/tmp/backup_base_dades.txt
- backup from mysql-administrator
(mabackup)
- backup from mysql-workbench
- Restore
-
|
|
- MySQL
-
- Instal·lació / Installation
-
- Mageia
-
urpmi apache-mpm-prefork postfix perl-DBD-mysql
[urpmi bugzilla-contrib eclipse-bugzilla]
[urpmi apache-mod_perl perl-GDGraph
perl-Template-GD perl-Chart perl-PatchReader
perl-Image-Magick perl-HTML-Scrubber perl-Apache-DBI
perl-DBD-Pg perl-MIME-tools
perl-Email-MIME-Attachment-Stripper perl-Email-Reply
interdiff]
[urpmi 'perl(Authen::Radius)' 'perl(SOAP::Lite)'
'perl(JSON::RPC)' 'perl(JSON::XS)' 'perl(Test::Taint)'
'perl(TheSchwartz)' 'perl(Daemon::Generic)'
'perl(Math::Random::Secure)']
urpmi bugzilla
- Ubuntu
-
sudo apt-get install liblist-moreutils-perl
libdatetime-perl
libtemplate-perl
libemail-send-perl
libemail-mime-perl
liburi-perl
libmath-random-isaac-perl
- optional:
-
apt-get install lib...-perl
wget
http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-4.4.4.tar.gz
sudo tar --directory /usr/local -xvzf
bugzilla-4.4.4.tar.gz
- Configuració / Configuration
-
- Option 1: new bugzilla
-
- run config:
-
- Mageia
-
/usr/share/bugzilla/bin/checksetup.pl
- Ubuntu
-
sudo /usr/local/bugzilla-4.4.4/ checksetup.pl
- configure
mysql
for bugzilla
-
- add
user 'bugs' with password xxxxx (specified
with $db_pass in localconfig):
-
mysql -u root -p
mysql> GRANT
SELECT, INSERT,
UPDATE, DELETE, INDEX, ALTER, CREATE, LOCK
TABLES,
CREATE TEMPORARY TABLES, DROP, REFERENCES ON
bugs.*
TO bugs@localhost IDENTIFIED BY 'xxxxx';
mysql> FLUSH PRIVILEGES;
- edit config file:
-
- Mageia
-
/etc/bugzilla/localconfig
-
- Ubuntu
-
- /usr/local/bugzilla-4.4.4
/localconfig
-
set $db_pass
xxxxx
$webservergroup = 'www-data';
- run config again:
-
- Mageia
-
/usr/share/bugzilla/bin/checksetup.pl
- Ubuntu
-
sudo /usr/local/bugzilla-4.4.4/ checksetup.pl
- Option 2: from existing bugzilla
-
- On previous machine: backup
-
mysqldump bugs -u root -p > bugs_$( date
'+%Y%m%d_%H%M') .sql
- On new machine: restore
-
- Apache configuration
-
- Bugzilla
using
Apache
- Mageia (Apache 2.4)
-
- (config file /etc/httpd/conf/sites.d/bugzilla.conf
already supplied by rpm package):
-
# Bugzilla Apache
configuration
Alias /bugzilla/data /var/lib/bugzilla/
Alias /bugzilla /usr/share/bugzilla/www
<Directory /usr/share/bugzilla/www>
Require all granted
Options ExecCGI
DirectoryIndex index.cgi
AddHandler cgi-script .cgi
.pl
</Directory>
# The dot files must be accessible to the
public webdot server
# The png files locally created locally must
be accessible
<Directory /var/lib/bugzilla/webdot>
<FilesMatch \.dot$>
Require host research.att.com
</FilesMatch>
<FilesMatch \.png$>
Require all granted
</FilesMatch>
</Directory>
- Ubuntu (Apache 2.4)
-
- /etc/apache2/sites-available/bugzilla.conf
-
Alias /bugzilla
/usr/local/bugzilla-4.4.4
<Directory /usr/local/bugzilla-4.4.4 >
Require all
granted
Options ExecCGI
DirectoryIndex index.cgi
AddHandler cgi-script .cgi
.pl
</Directory>
sudo a2ensite
bugzilla
sudo a2enmod
cgi
sudo service apache2 reload
- Problemes / Problems
-
- Service Unavailable. The server is temporarily
unable to service your request due to maintenance
downtime or capacity problems. Please try again
later.
-
- Solution
-
sudo service apache2 restart
- Mail server configuration
-
- LDAP
configuration
- Usage:
-
|
|
- CVS
- Bugzilla
- Scmbug
-
- instal·lació dels paquets necessaris (exemple per a MandrivaLinux):
-
urpmi docbook-style-dsssl-doc perl-XML-Simple
perl-Mail-Sendmail
- correspondència entre usuaris de cvs i usuaris de
bugzilla:
-
userlist => {enabled => 1, values =>
{'usuari' => 'usuari@domini.org'}}
- inici del servei:
-
- temporalment:
service scmbug-server restart
- permanentment:
chkconfig scmbug-server on
- enganxa l'scmbug entre cvs i bugzilla:
-
scm_install_glue --scm=CVS --product=nom_modul
--repository=/usr/local/cvsroot --bug=1
--daemon=127.0.0.1 --binary-paths=/usr/bin
- edita algunes preferències:
-
chmod 644 /usr/local/cvsroot/CVSROOT/etc/scmbug/glue.conf
/usr/local/cvsroot/CVSROOT/etc/scmbug/glue.conf
presence_of_bugs_ids => {value =>
'optional' }
valid_bug_owner => {enabled => 0}
log_regex => '[Bb][Uu][Gg].*?:(.*)'
|
|
|
|
- Execució MSI:
-
[Run]
Filename "msiexec.exe";
Parameters:
"/qb+ /i ""{pf}\toto.msi"""; Flags: runascurrentserver
shellexec waituntilterminated;
|
NTP
(Network Time Protocol)
|
- UNIX / Linux
-
- Data / Date
- Quick HOWTO : Ch24 : The NTP Server
- client (no funcionarà si el servei ntpd està
funcionant, perquè ocupa el port) (maybe you need to open the NTP port: 123)
-
- force set time:
sudo systemctl stop ntpd.service sudo
ntpd -gq sudo systemctl start
ntpd.service
sudo service ntp stop
sudo ntpd -gq
sudo service ntp start
- ntpdate
(deprecated: use
ntpd -gq instead)
- Installation:
- urpmi ntpdate
- apt-get install ...
- Usage
ntpdate -u europe.pool.ntp.org
(amb l'opció -u sí que funcionarà quan el servei
ntpd està en marxa / use -u option to force
update when ntpd service is running)
ntpdate -q europe.pool.ntp.org
(just query)
- KDE adjust time: automatically
- CentOS
8
dnf install chrony
sudo systemctl status
chronyd.service
- Check clock sync:
sudo dnf install ntpstat
ntpstat
- client / server (nom_servidor)
-
/etc/ntp.conf (/etc/chrony.conf)
-
server nom_servidor
iburst (ex: aries.salle.url.edu)
service ntpd start / systemctl start
ntpd.service
systemctl enable ntpd.service
- comproveu
que el port és accessible des dels clients / check
that port is accessible from clients
-
- [solved]
ntp reachable but rejected
-
- Open port 123 (udp, tcp):
-
iptables -I INPUT -p tcp -m
multiport --dports 123 -m comment
--comment "ntp incoming (tcp)" -j ACCEPT
iptables -I INPUT -p udp -m multiport
--dports 123 -m comment --comment "ntp
incoming (udp)" -j ACCEPT
- ntpq
(standard NTP query program)
- list of peers:
- interactive format command (-c)
- list of peers and their status:
- list of association identifiers:
- nom_servidor
no serà vàlid fins que no surti un * quan se'l
pregunta amb
ntpq -p nom_servidor
/ nom_servidor will not be valid until a * appears
before it when calling ntpq -p nom_servidor
- MS Windows XP, 2003
-
- client / server
-
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters]
"NtpServer"="aries.salle.url.edu,0x1"
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient]
"SpecialPollInterval"=dword:00000708
(cada 1800s es connecta al servidor / connected to
server every 1800s)
- server
-
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer]
|
UUID
|
- UNIX
-
urpmi libext2fs-devel (libuuid-devel)
(libossp_uuid-devel)
uuid_generate( uu );
- needed lib:
-luuid
- MS Windows
-
#inlcude <rpc.h>
UuidCreate(&uu);
- needed lib:
Rpcrt4.lib
|
Microsoft
IIS (Internet Information Server)
|
|
|
- Check that your web service is running:
-
- http://localhost/<your_web_service>/<your_web_service>.asmx
- "Server Application Unavailable" (when trying to access web
services with .net 2.0):
-
- "Failed to access iis metabase". Solution:
-
- WINDOWS\Microsoft.NET\Framework\vX.X.XXXXX\aspnet_regiis
-i
- "The
process
account used to run ASP.NET must have read access to the IIS
metabase"
-
- aspnet_regiis -ga <WindowsUserAccount>
- Others:
-
- aspnet_regiis -ua
- aspnet_regiis -i -enable
- "Parser Error Message: Unrecognized configuration section
'connectionStrings'" / "Server Error in
'/<your_web_service>' Application, Configuration Error"
-
- Check that your web service is using the right ASP
version:
- Start / Control Panel / Administrative Tools / Computer
Management / Services and Applications / Internet
Information Services / Web sites / Default Web Site
- <your_web_service>: Properties / ASP.NET tab / ASP.NET
version: <the_needed_version_for_your_web_service>
- To install NET framework from
Microsoft:
-
- Verify that the ASPNET user
have writing permissions in the wanted directories:
-
- Properties / Security / Add / Advanced options / Search
now
- if Security tab is not present:
-
- Tools / Folder options / View / (don't use) Simple
file sharing
- ASP tab not present
-
- Virtual
units (subst) do not work for user ASPNET.
- Needed files for deployment of a web
service in a computer without MS Visual installed (to be put
under C:\Inetpub\wwwroot\<your_web_service>\bin\):
-
- developed with MS Visual 2005:
-
- Release
-
- ...\Microsoft Visual Studio
8\VC\redist\x86\Microsoft.VC80.CRT\
-
- msvcp80.dll
- msvcr80.dll
- Microsoft.VC80.CRT.manifest
- ...\Microsoft Visual Studio
8\VC\redist\x86\Microsoft.VC80.MFC\
-
- mfc80.dll
- Microsoft.VC80.MFC.manifest
- Debug
-
- ...\Microsoft Visual Studio
8\VC\redist\Debug_NonRedist\x86\Microsoft.VC80.DebugCRT\
-
- msvcp80d.dll
- msvcr80d.dll
- Microsoft.VC80.DebugCRT.manifest
- ...\Microsoft Visual Studio
8\VC\redist\Debug_NonRedist\x86\Microsoft.VC80.DebugMFC\
-
- mfc80d.dll
- Microsoft.VC80.DebugMFC.manifest
- Security issues (accessing
network drives)
-
|
Toggle keybord layout in MS Windows
|
- Control Panel / Regional and Language Options / Languages /
Details
- select the language and then Add
- add a keyboard
- Language bar: select all options
|
KDE
|
- Font antialiasing
-
- KDE control centre: Fonts / Use anti-aliasing / Enabled /
Style: Complete
- Menú / Menu
-
kmenuedit
/etc/xdg/menus/
/etc/xdg/kde4/menus/
- Auto start of
applications/scripts:
-
- Configure desktop -> Advanced -> Autostart
- applications
-
~/.config/autostart/*.desktop
- scripts
-
~/.kde4/Autostart/*.desktop
- Netbook / HTPC
-
|
Escriptori remot / Remote dektop
|
- rdesktop
rdesktop -g 1024x768 -k es remote_server -r disk:C=/
- Per a accedir a la sessió remota ja iniciada ("
-0" ):
-
rdesktop -0
-g 1024x768 -k es remote_server -r disk:C=/
- Citrix
- Citrix Workspace App
- Download
Citrix Workspace App
- Instal·lació / Install
- Dependències / Dependencies
- Mageia 9
- Mageia 7
urpmi libxpm4 libsm6 libxmu6
libxext6
- From rpm (ICAClient, ctxusb)
sudo rpm -ivh --nodeps
ICAClientWeb-rhel-20.9.0.15-0.x86_64.rpm
ctxusb-20.9.0.15-1.x86_64.rpm
- it will be installed in:
- From tar
tar xvf linuxx64-20.9.0.15.tar.gz
./setupwfc
- by default, it will be installed in:
- Ús / Usage
- Citrix
Workspace app for Linux Command Reference
- serveis / services
- ICAClientWeb
sudo
systemctl status ctxlogd.service
sudo systemctl status
ctxcwalogd.service
- Problemes / Problems
ctxlogd.service: Start operation
timed out. Terminating.
- Solució / Solution
- modify /etc/rc.d/init.d/ctxlogd so
as it does not use start_daemon,
which, in Mageia 7, does not support
-p option:
# If
/lib/lsb/init-functions is
present use the LSB init
fuctions.
if [ -r "$LSB_INIT_FUNCTIONS"
]; then
.
"$LSB_INIT_FUNCTIONS"
INITLIB="$LSB_INIT_FUNCTIONS"
fi
INITLIB="NOT_FOUND"
- or manually call:
- /opt/Citrix/ICAClient/util/ctxlogd
- ctxusb
sudo systemctl status
ctxusbd.service
- config
- /opt/Citrix/ICAClient/usb.conf
# DENY: class=0b #
Smartcard
- ...
~/ICAClient/linuxx64/wfica -icaroot
~/ICAClient/linuxx64 toto.ica /opt/Citrix/ICAClient/wfica
-icaroot /opt/Citrix/ICAClient toto.ica
- Problemes / Problems
- corrupted double-linked list
Avortat (s'ha bolcat la memòria)
- malloc_consolidate(): invalid chunk size
Avortat (s'ha bolcat la memòria)
- Navegador / Browser
- Firefox
- Chrome
- uses (one-time) ica files
- Problemes / Problems
You have not chosen to trust
"...", the issuer of the server's
security certificate (SSL error 61)
|
rsync
|
- setup an rsync server (to be used as rsync daemon):
-
- syntax (
man rsync )
|
remote
shell (one :)
|
rsync daemon (two ::)
|
pull
|
rsync [OPTION...]
[USER@]HOST:SRC...
[DEST]
|
rsync [OPTION...]
[USER@]HOST::SRC...
[DEST]
|
push
|
rsync [OPTION...]
SRC... [USER@]HOST:DEST
|
rsync [OPTION...]
SRC... [USER@]HOST::DEST
|
- src/dest
(-r) |
SRC |
DEST |
sense barra final/ without trailing bar |
si és un directori, agafarà el directori i els
fitxers que conté |
si el directori existeix, ho posarà tot a dins; si no
existeix, el crearà i ho posarà tot a dins |
amb barra final / with trailing bar |
si és un directori, agafarà els fitxers que conté |
si el directori existeix, ho posarà tot a dins; si no
existeix, el crearà i ho posarà tot a dins |
- Exemples
rsync -avvr toto
cesc@synologynas.local::homes/cesc/titi
rsync -avvr toto/
cesc@synologynas.local::homes/cesc/titi
- Problemes amb l'horari d'estiu / Problems with
daylight-savings time (DST)
-
- examples:
-
- opcions
--dry-run
-a archive mode; equals -rlptgoD (no -H,-A,-X)
-r, --recursive recurse
into directories
-l,
--links
copy symlinks as symlinks
-p,
--perms
preserve permissions
-t,
--times
preserve modification times
-g,
--group
preserve group
-o,
--owner
preserve owner (super-user only)
-D
same as --devices --specials
- -A
- -H
- -X
--delete
delete extraneous files from dest dirs
- els fitxers que hi ha a dest però no a src
s'esborraran de dest; però aquesta opció cal
posar-la explícitament
- sembla que Synology Shared Folder Sync l'activa
sempre
- ...
- list of shared
modules (rsync daemon):
-
rsync cesc@diskstation.local::
- només apareixeran els directoris compartits des de
Control Panel -> Shared Folders
rsync cesc@synologynas.local::
rsync cesc@diskstation.local::photo
rsync cesc@synologynas.local::photo
- list of remote own
(/home/cesc/) directories (remote shell):
-
rsync cesc@diskstation.local:
- from smartphone
(mounted at /media/6636-3133) to local directory:
-
rsync -avvr /media/6636-3133/DCIM/
~/Imatges/HTC_Magic/
rsync -avvr /media/.../DCIM/
~/Imatges/HTC_One_X/
- from video camera
(mounted at /media/disk or
/run/media/cesc/disk/ ,
vfat) to local directory:
-
rsync [--modify-window=3601]
-avvr /media/disk/ ~/Vídeos/Sony/
rsync --modify-window=3601 -avvr
/run/media/cesc/disk/ ~/Vídeos/Sony2/
- from SD card
(mounted at /run/media/cesc/9016-4EF8) to local directory:
-
rsync --modify-window=3601 -avvr
/run/media/cesc/9016-4EF8/ ~/Imatges/Nikon_S31/
- from SD card
(mounted at /run/media/cesc/9016-4EF8) to Synology NAS:
-
- DSM 7
rsync --modify-window=3601 -avvr
/run/media/cesc/6636-6561/ cesc@synologynas.local ::photo/Cesc_Pare/sd4/
- DSM 4
rsync --modify-window=3601 -avvr
/run/media/cesc/9016-4EF8/ admin@diskstation.home ::photo/album_1/sd1/
- from local directory to Synology
NAS
(diskstation.local, 192.168.0.50):
-
rsync -avvr ~/Imatges/HTC_Magic
admin@diskstation.local ::photo
rsync -avvr ~/Imatges/ admin@diskstation.local ::photo
rsync -avvr ~/Vídeos/ admin@diskstation.local ::video
rsync -avvr ~/Vídeos/Sony2/
admin@diskstation.local ::video/Sony2/
rsync -avvr /home/cesc/Documents/
cesc@diskstation.local ::homes/cesc/Documents/
- from local directory to external
drive:
-
rsync -avvr /home/cesc/Documents
/media/disc/copia_seguretat/
- exclusió de
fitxers / exclusion of files:
-
rsync --exclude='*.o'
...
- exclusió de
directoris / exclusion of directories:
-
rsync --exclude='bin'
...
- preserva els enllaços / preserve links:
-
- llistat de fitxers modificats
-
- ssh en un port
específic / on a specific remote ssh port
8023:
-
rsync -avvr dir_local --rsh='ssh -p8023'
usuari_remot@adreca_servidor:/dir_remot_pare/
- per a fer-ho sempre
-
- ~/.ssh/config
-
Host
etiqueta_per_a_servidor
HostName adreca_servidor
Port 8023
rsync -avvr dir_local usuari_remot@ etiqueta_per_a_servidor :/dir_remot_pare/
- ssh amb un certificat (-e, --rsh són equivalents) (nota:
el camí cap al certificat .pem ha de ser absolut)
-
rsync -avvr -e 'ssh -i
/home/cesc/.ssh/keys/my_key.pem' dir_local
usuari_remot@adreca_servidor:/dir_remot .
- rsync amb sudo remot
-
- Getting files from remote server that need sudo
- Pulling
Read
restricted files from a remote system with rsync and
sudo
- Server
-
- /etc/sudoers.d/usuari_remot
-
usuari_remot ALL=(ALL)
NOPASSWD:ALL
# no need for "-t" when accessing via ssh
Defaults:usuari_remot !requiretty
- Client
-
rsync -avvr -e 'ssh -i
/home/cesc/.ssh/keys/my_key.pem'
--rsync-path='sudo rsync' usuari_remot@adreca_servidor:/etc/dir_remot
.
|
|
- Instal·lació / Installation
- Features
-
-list format
-list interlace
- Info (-format)
-
identify -format '%wx%h' filename
identify -format '%[exif:orientation]'
filename
identify -verbose filename
- Python
- Resize
-
convert input_filename -scale 120x90 output_filename
- YUV
- Reduce the number of colours (useful, e.g. for images from a
scanner):
-
convert toto.pnm -colors 4 toto.png
- Convert alpha transparency in png (generate an RGBA image,
suitable e.g. for Snowmix)
- Convert to pdf
-
convert toto.png toto.pdf
- they can then be joined with pdftk
- Create a BGRA image (e.g. for Snowmix)
which convert && convert -depth 8 -size
1280x720 canvas:black black_1280x720.bgra
convert -depth 8 -size 1280x720 canvas:green
green_1280x720.bgra
- Convert to raw BGRA (e.g. for Snowmix)
-
convert toto.png toto.bgra
- Display a BGRA image:
display -size 1280x720 -depth 8
BGRA:green_1280x720.bgra
- ...
- PNG
-
|
|
|
|
convert to this format using: |
|
create using: |
|
|
file |
gimp channels |
convert (ImageMagick) |
gimp |
python PIL |
PNG8
|
no transparency |
PNG image data, 320 x 180, 8-bit colormap,
non-interlaced |
Indexat |
-alpha remove PNG8:image_wot_png8.png |
- Imatge -> Mode -> Indexat...
|
# pip install pillow
from PIL import Image, ImageDraw
image = Image.new('P',
size=(320, 180), color=(155, 0, 0))
d = ImageDraw.Draw(image)
d.ellipse((20, 20, 160, 160), fill=(255, 255,
255))
image.save("imatge_png8.png", format='png') |
1 indexed colour is transparent |
PNG image data, 320 x 180, 8-bit colormap,
non-interlaced |
Indexat, Alfa |
-transparent '#FFFFFF'
PNG8:image_wt_png8.png |
- Imatge -> Mode -> Indexat...
- Capes -> Transparència -> Afegeix canal
alfa
- Capes -> Transparència -> Color a alfa
|
# pip install pillow
from PIL import Image, ImageDraw
image = Image.new('P', size=(320, 180),
color=(155, 0, 0))
d = ImageDraw.Draw(image)
d.ellipse((20, 20, 160, 160), fill=(255, 255,
255))
#image = image.convert('P',
palette=Image.ADAPTIVE, colors=2)
# index 0 will be transparent
# save palette with 1 bit (2 colours)
image.save("imatge_png8a.png", format='png',
transparency=0, bits=1) |
PNG24
|
no transparency |
PNG image data, 320 x 180, 8-bit/color RGB,
non-interlaced |
Vermell, Verd, Blau |
-alpha remove PNG24:image_wot_png24.png |
|
# pip install pillow
from PIL import Image, ImageDraw
image = Image.new('RGB', size=(320, 180),
color=(155, 0, 0))
d = ImageDraw.Draw(image)
d.ellipse((20, 20, 160, 160), fill=(255, 255,
255))
image.save("imatge_png24.png", format='png')
|
1 RGB colour is transparent |
PNG image data, 320 x 180, 8-bit/color RGB,
non-interlaced |
Vermell, Verd, Blau, Alfa |
-transparent '#FFFFFF'
PNG24:image_wt_png24.png |
- Imatge -> Mode -> RGB
- Capes -> Transparència -> Afegeix canal
alfa
- Capes -> Transparència -> Color a alfa
|
# pip install pillow
from PIL import Image, ImageDraw
image = Image.new('RGB', size=(320, 180),
color=(155, 0, 0))
d = ImageDraw.Draw(image)
d.ellipse((20, 20, 160, 160), fill=(255, 255,
255))
# colour (155,0,0) will be transparent
image.save("imatge_png24a.png", format='png',
transparency=(155,0,0)) |
PNG32 |
gradual transparency |
PNG image data, 320 x 180, 8-bit/color RGBA,
non-interlaced |
Vermell, Verd, Blau, Alfa |
... -compose
copy-opacity -composite
PNG32:image_png32.png |
- Imatge -> Mode -> RGB
- Capes -> Transparència -> Afegeix canal
alfa
|
# pip install pillow
from PIL import Image, ImageDraw
image = Image.new('RGBA', size=(320, 180),
color=(155, 0, 0, 128))
d = ImageDraw.Draw(image)
d.ellipse((20, 20, 160, 160), fill=(255, 255,
255))
image.save("imatge_png32.png", format='png') |
|
|
- Python
-
- BeautifulSoup 4
-
urpmi python-beautifulsoup4
- Documentation
from bs4 import BeautifulSoup
- Problemes / Problems
-
- Solució / Solution
-
- don't use (implicit) lxml parser; use
"html.parser" or "html5lib" instead:
-
soup =
BeautifulSoup(open("www.html"),"html.parser")
- html5lib
-
easy_install html5lib
soup =
BeautifulSoup(open("www.html"),"html5lib")
- BeautifulSoup 3
-
urpmi python-beautifulsoup
import BeautifulSoup
#
To get everything
from BeautifulSoup import
BeautifulSoup
# For processing HTML
import urllib
url="http://xxx/toto.html"
txt = urllib.urlopen(url).read() #Pull in the
url
soup = BeautifulSoup(txt)
allTags = soup.findAll('h3')
for node in allTags:
print node.string
- PHP
-
|
Expresions regulars / Regular
expressions
|
- Perl
regular expressions
- Regular
expressions in bash
- Regular
expression (wp)
- Regular
Expression
Flavor Comparison
- Online regex tester and
debugger: PHP, PCRE, Python and JavaScript (101)
- Python
regular
expressions
- Literal character
- Exemples / Examples
-
- awk
- Java
- Parsing URLs
-
- RFC 3986
Appendix B
- Faster
and
cleaner way to parse Parameters from URL in
javascript/jQuery?
-
- http://usuari:contrasenya@example.com:8080/path/to/file;parameters?a=b&c=d#section
^(?:([^:/?#.]+):)?(?://(?:([^/?#]*)@)?([\\w\\d\\-\\u0100-\\uffff.%]*)(?::([0-9]+))?)?([^?#]+)?(?:\\?([^#]*))?(?:#(.*))?$
-
example
|
RFC 3986
regex
|
regular
expression
|
regexp group
name
|
javascript:
location.
|
Python
urllib.parse
|
bash
|
|
^
|
^ |
|
|
|
|
|
|
http:
|
(([^:/?#]+):)?
|
(?:([^:/?#.]+):)? |
protocol |
protocol
(includes ":")
|
|
scheme
|
|
scheme=${url%//*}
|
|
|
(?: |
|
|
|
|
|
|
//usuari
|
(//([^/?#]*))?
|
//(?:([^/?#]*)@)? |
user
|
|
|
netloc
|
username
|
url_wo_scheme=${url#*//}
domain=${url_wo_scheme%%/*}
|
:contrasenya@ |
|
|
|
|
password
|
example.com
|
([\\w\\d\\-\\u0100-\\uffff.%]*)
|
hostname |
hostname
|
host
|
hostname
|
:8080
|
(?::([0-9]+))? |
port
|
|
port
|
|
|
)? |
|
|
|
|
|
|
/path/to/file
|
([^?#]*)
|
([^?#]+)? |
pathname |
pathname
|
|
path
|
|
path=${url_wo_scheme##$domain}
|
;parameters
|
|
|
|
|
|
params
|
|
|
?a=b&c=d
|
(\?([^#]*))?
|
(?:\\?([^#]*))? |
search |
search
|
|
query
|
|
|
#section
|
(#(.*))?
|
(?:#(.*))? |
hash |
hash
|
|
fragment
|
|
|
|
$ |
$ |
|
|
|
|
|
|
- dvbsnoop
- Character classes
[abc]
|
any one character between
brackets
|
[^abc]
|
any one character not
between brackets |
.
|
any character except
newline
|
\w
|
word character
|
\W
|
non word character |
\s
|
whitespace character
|
\S
|
non whitespace character |
\d
|
digit
|
\D
|
non digit
|
- Anchors
-
- Repetition (specified aftter the character)
-
-
-
-
??
|
non-greedy
(stops at first occurrence)
|
*? |
+?
|
{}? |
- Grouping
(...)
|
all characters in
specified order must match. Use (?:...) if
you only want to match a group of characters but you do
not want to keep them
|
|
|
separator between groups
of characters. E.g.: (dev|pre|pro)
|
\n
|
|
- Extended regular expressions (Regex
lookahead, lookbehind and atomic groups)
(?#...)
|
|
|
(?:...) |
matches, but does not
return the content ("...")
|
|
(?=...) |
positive lookahead
|
|
(?!...) |
negative lookahead
|
grep -P 'echo.*date(?!.*log_path)' toto.sh |
(?<=...) |
positive lookbehind |
|
(?<!...) |
negative lookbehind |
|
(?>...) |
atomic group |
|
|
|
- variables
- sed
- tr: substitució de caràcters
individuals -> caràcters individuals / replacement of
individual characters -> individual characters:
-
tr '<input_characters>'
'<output_characters>'
- elimina les comes i cometes / delete comma and quotes:
-
- url safe
-
- sponge
- kfilereplace
(KDE)
-
- canvi de nom de fitxers / file name change
-
|
|
|
|
bash |
openssl |
Python |
Javascript |
encoding |
non url safe |
echo -n "toto" | base64 |
echo -n "toto" | openssl enc -base64 |
base64.b64encode(b"toto") |
|
url safe |
echo -n "toto" | base64 | tr '+' '-' | tr '/' '_' |
echo -n "toto" | openssl enc -base64 | tr '-_' '+/' |
base64.urlsafe_b64encode(b"toto") |
|
decoding |
non url safe |
echo -n "dG90bw==" | base64 -d |
|
base64.b64decode( b"dG90bw==") |
|
url safe |
echo -n "dG90bw==" | tr '-' '+' | tr '_' '/' |
base64 -d |
|
base64.urlsafe_b64decode(b"dG90bw==") |
|
|
Tasques / Tasks
|
- crontab
-
- incron(incrond, incrontab)
-
- config
-
tasca
-
/path/to/be/watched/
IN_CLOSE_WRITE /path/to/tasca.sh $@ $# $%
...
- script
-
tasca.sh
-
#!/bin/bash
...
directori=$1
nom_fitxer=$2
esdeveniment=$3
...
- start service
-
#echo root >
/etc/incron.deny
#service incrond start
$incrontab tasca
|
Data / Date
|
- General
-
- datefudge (fake the system date)
|
Telnet
|
- See also: nc /
netcat
- Instal·lació / Installation
-
- Utilització / Usage
-
- escape characters:
-
- Exemple / Example: RadioDNS
- Automate interactive session
-
- Automating telnet session using
bash scripts
-
- /usr/bin/expect
-
urpmi expect expect-examples
-
- /usr/share/doc/expect-examples/
- telnet.sh
-
#!/usr/bin/expect
set timeout 20
set hostName [lindex $argv 0]
set port [lindex $argv 1]
set password [lindex $argv 2]
spawn telnet $hostName $port
expect "Password:"
send "$password\r";
send "...\r";
sleep 2
send "logout\r";
telnet.sh host_name
port password
{echo "command1"; echo "command2"; sleep 2; } |
telnet localhost 4212
|
|
- Instal·lació / Installation
-
-
|
server
|
client
|
|
installation
|
service |
firewall |
|
CentOS
|
yum install
openssh-server |
systemctl
[enable,start,status,stop] sshd.service
|
|
|
Cygwin |
|
|
|
|
Mageia |
dnf install
openssh-server |
systemctl
[enable,start,status,stop] sshd.service |
/etc/shorewall/rules.drakx
|
|
Ubuntu |
sudo apt-get
install openssh-server |
|
|
|
- Default port: 22
- Especificació dels usuaris
autoritzats / Specify allowed users
(Step 5):
-
- Change port
(from default 22 to 10022)
-
- server
-
- sshd
-
- sshd-xinetd
-
/etc/xinetd.d/sshd-xinetd
-
- obrir
el port 10022 al tallafoc
- client
-
ssh -p 10022 username@server
- Muntatge d'un sistema
de fitxers remot en un directori local / Mount
remote filesystem in a local directory:
-
urpmi sshfs-fuse
mkdir /mnt/local_dir/
sshfs remote_user@remote_address:/remote_dir
/mnt/local_dir/
-o uid=local_user_numerical_id
-o gid=local_group_numerical_id
- Cyphers
- SSH:
How to disable weak ciphers?
sshd -T | grep ciphers | sed -e
"s/\(3des-cbc\|aes128-cbc\|aes192-cbc\|aes256-cbc\|arcfour\|arcfour128\|arcfour256\|blowfish-cbc\|cast128-cbc\|rijndael-cbc@lysator.liu.se\)\,\?//g"
>>/etc/ssh/sshd_config
- echo "ciphers
chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com"
>>/etc/ssh/sshd_config
- OpenSSL
-
- Parell de claus / Key pairs:
|
|
storage
|
|
generation |
server
|
client
|
server pair
|
(ssh-server) |
/etc/ssh/ssh_host_rsa_key
|
~/.ssh/known_hosts
|
[client pair] |
ssh-keygen |
via ssh-copy-id:
- ~username/.ssh/authorized_keys
|
- ~/.ssh/id_rsa
- any other location specified by
ssh-keygen
-f filename
|
- Autenticació sense
contrasenya / Password-less
authentication (optional):
-
- server:
-
- install
ssh server
- /etc/ssh/sshd_config
-
PubkeyAuthentication yes
# only pair of keys is
allowed:
PasswordAuthentication no
- setup from client:
-
- if you do not have the pair of keys, generate them:
ssh-keygen -t rsa -C
id_for_remote_server_name -f ~/.ssh/keys/ id_for_ remote_server_name.pem
- this will generate:
~/.ssh/keys/ id_for_ remote_server_name.pem
~/.ssh/keys/ id_for_ remote_server_name.pem.pub
- if you generared the pair with openssl (
remote_server.pem ),
extract
the public key and convert it to pub (PKCS8) format
(id_rsa_remote_server.pub ):
-
openssl rsa -in remote_server_name.pem
-out remote_server_name.public.pem -outform
PEM -pubout
ssh-keygen -i -f
remote_server_name.public.pem -m PKCS8 > id_rsa_remote_server_name.pub
-
-
- copy the public part (
id_for_remote_server_name.pem.pub )
to the remote server. Use one of the following:
- Option A:
- on remote server, enable password
authentication:
- /etc/ssh/sshd_config
PasswordAuthentication yes
- sudo
systemctl restart sshd.service
- on local server:
ssh-copy-id -i ~/.ssh/keys/ id_for_ remote_server_name.pem.pub
username@remoteserver
- on remote server, disable password
authentication:
- /etc/ssh/sshd_config
PasswordAuthentication no
- sudo
systemctl restart sshd.service
- Option B:
- from remote server, manually paste the content
of
remote_server_name.pem.pub to
the authorized keys file of the user you will
use in further ssh connections:
- /home/myuser/.ssh/authorized_keys
ssh-rsa ...
id_for_remote_server_name
- this will create a line in the remotehost file
~username/.ssh/authorized_keys ,
with
the following content:
-
ssh-rsa AAA... id_for_remote_server_name
- but it can be completed as (SSH
configuration
tricks):
-
command="program" ssh-dsa AAAABtce9euch…
user@example.com
- connection from client:
-
- connexió al servidor utilitzant la clau privada /
connection to the server using the private key:
-
ssh -i
~/.ssh/keys/id_for_remote_server_name.pem username@remoteserver
- or, if you generated your key pair with openssl:
-
ssh -i ~/.ssh/keys/ remoteserver.pem
username@remoteserver
- per a evitar l'opció -i , i no haver de posar username
/ to avoid -i option and specification of username:
-
- ~/.ssh/config
-
Host etiqueta_ remoteserver
HostName remoteserver
User username
IdentityFile ~/.ssh/id_rsa _remoteserver
chmod 600 ~/.ssh/config (si altres
usuaris tenent permisos, ssh no funcionarà / if
others than user have write permissions, ssh will
not work)
ssh etiqueta_ remoteserver
- timeout
-
ssh -o ConnectTimeout=6000 ...
- execució remota / remote execution:
-
-
ssh username@remoteserver
my_command
ssh username@remoteserver
'bash -s' < local_script.sh
- root / sudo
(to avoid error:
sudo:
sorry, you must have a tty to run sudo )
-
- copy file from remote to local
-
scp -i ~/.ssh/keys/parell_claus.pem
usuari@adreca_ip:/tmp/remote_file .
- Tanca la sessió / End session
-
- Mantenir la sessió oberta (alguns encaminadors
desconnecten les sessions inactives al cap d'uns minuts)
/ Keep the session open (some routers disconnect
inactive sessions after some minutes)
-
- Problemes / Problems
- Control version with SSH
-
- Subversion with
SSH
- Bitbucket
/ GitLab
(git) with SSH
-
- Use
the
SSH protocol with Bitbucket Cloud
- Set
up
SSH for Git and Mercurial on Mac OSX/Linux
- Configure
multiple
SSH identities for GitBash, Mac OSX, & Linux
- Simple setup
-
- Create a
key pair (or get the one generated by e.g. weblate)
-
ssh-keygen -f
~/.ssh/keys/gitlab-user_i-id_from_work -t
ed25519
- ~/.ssh/config
-
# GitLab.com server
Host gitlab.com
RSAAuthentication yes
IdentityFile ~/.ssh/keys/gitlab-user _i-id_from_work
git clone git@gitlab.com:accountname_i/repo_a.git
- Complete setup
-
-
identity
|
Bitbucket
account / GitLab user
|
git remote |
name
|
.ssh/config |
account |
account can
access to repositories
|
|
each
identity has a key pair;
an identity replaces accountname/password,
and must be unique in Bitbucket/GitLab;
an account can have several identities |
must register
the identity keys |
non-own
repositories (e.g. a team) must grant
permissions to the account, but should not
register key pairs
|
|
bitbucket-account_i-id_from_home
|
Host bb-aci-id1
HostName
bitbucket.org
IdentityFile
~/.ssh/keys/bitbucket-account_i-id_from_home |
accountname_i |
accountname_i/repo_a.git
accountname_j/repo_d.git
teamname_k/repo_m.git
|
git@bb -aci -id1:accountname_i/repo_a.git
git@bb -aci -id1:accountname_j/repo_d.git
git@bb -aci -id1:teamname_k/repo_m.git
|
bitbucket-account_i-id_from_work |
Host bb-aci-id2
HostName
bitbucket.org
IdentityFile
~/.ssh/keys/bitbucket-account_i-id_from_work |
git@bb -aci -id2:accountname_i/repo_a.git
git@bb -aci -id2:accountname_j/repo_d.git
git@bb -aci -id2:teamname_k/repo_m.git |
bitbucket-account_ii-id_from_home |
Host bb-0acii-id1
HostName
bitbucket.org
IdentityFile
~/.ssh/keys/bitbucket-account_ii-id_from_home |
accountname_i i |
accountname_ii/repo_b.git
accountname_jj/repo_e.git
teamname_kk/repo_n.git |
git@bb -acii -id1:accountname_ii/repo_b.git
git@bb -acii -id1:accountname_jj/repo_e.git
git@bb -acii -id1:teamname_kk/repo_n.git |
bitbucket-account_ii-id_from_production_server |
Host bb-acii-id2
HostName
bitbucket.org
IdentityFile
~/.ssh/keys/bitbucket-account_ii-id_from_production_server |
git@bb -acii -id2:accountname_ii/repo_b.git
git@bb -acii -id2:accountname_jj/repo_e.git
git@bb -acii -id2:teamname_kk/repo_m.git |
- Steps
-
- Create
key pairs (maybe several for each account
in Bitbucket; you don't need to create a key
pair to access to a team account: just use one
of your key pair):
- Bitbucket
-
ssh-keygen -f
~/.ssh/keys/bitbucket-account_i-id_from_home -t ed25519 -C
"Bitbucket: identity to login as
accountname_i, from home "
ssh-keygen -f
~/.ssh/keys/bitbucket-account_i-id_from_work -t ed25519 -C
"Bitbucket: identity to
login as accountname_i,
from work "
ssh-keygen -f
~/.ssh/keys/bitbucket-account_ii-id_from_home -t ed25519 -C
"Bitbucket: identity to login as
accountname_ii, from home "
ssh-keygen -f
~/.ssh/keys/bitbucket-account_ii-id_from_production_server -t
ed25519 -C "Bitbucket:
identity to login as
accountname_ii, from work "
- GitHub
ssh-keygen -f
gitlab- account_i-id_from_home
-t ed25519 -C
"your_email@example.com"
ssh-keygen -f
gitlab- account_i-id_from_home
-t rsa -b 4096 -C
"your_email@example.com"
- GitLab
-
ssh-keygen -f gitlab- account_i-id_from_home
-t
ed25519 -C "user@example.org" -b 4096
- ...
- ~/.ssh/config
- Bitbucket
-
Host bb-aci-id1
HostName
bitbucket.org
IdentityFile
~/.ssh/keys/bitbucket-account_i-id_from_home
Host bb-aci-id2
HostName
bitbucket.org
IdentityFile
~/.ssh/keys/bitbucket-account_i-id_from_work
Host bb-acii-id1
HostName
bitbucket.org
IdentityFile
~/.ssh/keys/bitbucket-account_ii-id_from_home
Host bb-acii-id2
HostName
bitbucket.org
IdentityFile
~/.ssh/keys/bitbucket-account_ii-id_from_production_server
- GitHub
Host gh-aci-id1
HostName
github.com
IdentityFile~/.ssh/keys/github-account_i-id_from_home
Host gh-aci-id2
HostName
github.com
IdentityFile~/.ssh/keys/github-account_i-id_from_work
- GitLab
-
Host gl-aci-id1
HostName
gitlab.com
IdentityFile
~/.ssh/keys/gitlab-account_i-id_from_home
Host gl-aci-id2
HostName
gitlab.com
IdentityFile~/.ssh/keys/gitlab-account_i-id_from_work
- ...
- Add public keys to accounts:
- Bitbucket
(web interface Settings: SECURITY / SSH
Keys):
-
xclip -selection clipboard <
~/.ssh/keys/...:
-
- into accountname_i:
-
bitbucket-account_i-id_from_home. pub
bitbucket-account_i-id_from_work .pub
- into accountname_ii:
-
bitbucket-account_ii-id_from_home .pub
bitbucket-account_ii-id_from_production_server .pub
- GitHub
- User -> Settings -> SSH
and PGP keys
- Title:
github-account_i-id_from_home
- Key: (
xclip -selection clipboard
< ~/.ssh/keys/ github-account_i-id_from_home.pub )
- GitLab
(Group -> Members)
-
- Profile settings -> SSH
Keys
xclip -selection clipboard <
~/.ssh/ keys/gitlab-account_i-id_from_home.pub
-
- into accountname_i:
-
gitlab-account_i-id_from_home.pub
gitlab-account_i-id_from_work.pub
- into accountname_ii:
gitlab-account_ii-id_from_home.pub
gitlab-account_ii-id_from_work.pub
- Clone repo:
git clone
git@gl-aci-id1:accountname_i/repo_a.git
- Change repository configuration
- ~/src/repo_a/.git/config
-
url = git@ bb-aci-id1 :accountname_i/repo_a.git
- ~/src/repo_b/.git/config
-
url = git@ bb-acii-id1 :accountname_ii/repo_b.git
- Shh!
OpenSSH
Secrets Here
-
- ssh-agent (ssh password caching)
-
- X11 forwarding (abans
DISPLAY / fomerly DISPLAY )
-
- How to forward X over SSH from
Ubuntu machine?
- servidor ssh / ssh server (remote)
-
- CentOS
-
sudo yum install xorg-x11-xauth
- /etc/ssh/sshd_config
-
- client ssh (local)
-
ssh -X nom_servidor_ssh
- No cal establir la variable d'entorn
DISPLAY / No need to
specify environment variable DISPLAY
- Resolució de problemes / Problem resolution
-
- al servidor / in server
-
ssh
-X nom_servidor_ssh
X11 forwarding request failed on
channel 0
- Solució / Solution
ssh -v
-X nom_servidor_ssh
-
debug1: Requesting X11
forwarding with authentication
spoofing.
debug1: Remote: No xauth program;
cannot forward with spoofing.
- Install xauth:
- CentOS
sudo yum install
xorg-x11-xauth
- al client / in client
-
- (run a program with gui, e.g. xterm)
-
X11 forwarding is disabled to avoid
man-in-the-middle attacks.
libGL error: unable to load driver:
swrast_dri.so
libGL error: failed to load driver: swrast
-
- Solució / Solution
-
export LIBGL_DEBUG=verbose;
xterm
-
libGL: OpenDriver:
trying
/usr/lib64/dri/tls/swrast_dri.so
...
- CentOS
-
sudo yum provides
/usr/lib64/dri/tls/swrast_dri.so
sudo yum install
mesa-dri-drivers
- Redireccionament
d'àudio / Audio forwarding
- How
to
carry audio over SSH?
- PulseAudio
- PulseAudio
over
network
- Network
audio
with PulseAudio made (somewhat) easy
- X11
forwarding
over SSH & Pulseaudio
-
|
local sink (has
audio hardware)
|
remote source
(does not have audio hardware)
|
dependencies
|
sudo urpmi ...
|
- sudo yum install pulseaudio-utils
- if you are going to use gstreamer, it must
contain pulseaudio:
- gst-inspect-1.0 | grep pulse
|
configure
PulseAudio (/etc/pulse/default.pa)
|
load-module
module-native-protocol-tcp
auth-ip-acl=127.0.0.1;192.168.0.0/24
auth-anonymous=1
|
|
restart
PulseAudio |
systemctl --user
restart pulseaudio.socket pulseaudio.service |
|
check that tcp
module is loaded
|
pacmd
list-modules | grep module-native-protocol-tcp
|
|
set
PulseAudio remote server |
pax11publish -e
-S <sink_ip_address> |
|
connect to remote
|
ssh -X
<remote_user>@<remote_source_ip_address>
|
|
check audio
server
|
- pavucontrol (urpmi pavucontrol)
|
- xprop -root PULSE_SERVER (yum install
xorg-x11-utils)
- pavucontrol (yum install pavucontrol)
|
play file
containing audio
|
|
- ffplay ...
- gst-launch-1.0 -v audiotestsrc wave=5 !
audioconvert ! volume volume=0.2 ! pulsesink
- gst-launch-1.0
playbin
uri=file:/path/to/bbb.mp4
- mplayer ...
|
- NOTE: if using VirtualBox, do not activate audio
device in remote virtual machine
- (needed?) al servidor / on server
paprefs
- Servidor de xarxa: Habilita l'accés a la xarxa
per als dispositius de so locals
- sembla que no funciona; editeu
/etc/pulse/default.pa i afegiu-hi:
load-module
module-native-protocol-tcp auth-ip-acl...
- Enabling audio in VirtualBox and using Alsa (has lipsync
issues)
- al client / on client (vm)
- CentOS
sudo yum install alsa-utils
alsa-firmware alsa-lib alsa-oss
sudo usermod -a -G audio my_user_in_vm
alsamixer
- LDAP
-
- Problemes / Problems
-
|
|
- syslog
-
- logger and syslog
-
- Exemples / Examples
-
logrotate
-
- logtop
-
- logger (command interface to syslog)
-
- #! /bin/bash
logger ...
- also to a file
-
- server
-
|
|
Iomega NAS
|
- Iomega Storage Manager
-
urpmi libjpeg62 libupnp3
export LD_LIBRARY_PATH=/usr/bin/Iomega\ Storage\
Manager/lib/
|
Xiaomi Band
|
- Temes / Themes
- Descàrrega / Download
- Change
Mi Band 4 Theme!
- Download
- AmazfitBipTools_Mi4_0.0.2.zip
- WINEPREFIX=~/.win_32 WINEARCH=win32 wine
WatchFace.exe
- WatchFace.exe unpacks and packs Amazfit
Bip downloadable watch faces and resource
files.
Usage examples:
WatchFace.exe
watchface.bin - unpacks
watchface images and config
WatchFace.exe watchface.json -
packs config and referenced images to bin
file
WatchFace.exe mili_chaohu.res -
unpacks resource file images
WatchFace.exe
mili_chaohu - packs
folder content to res file
- template.bin
- Passos / Steps
- Descarregueu-vos el fitxer de les utilitats:
- si no el teniu, creeu un directori:
mkdir
~/src
- des del navegador, aneu a: https://fwd.duc1607.ooo/mi-band-4-theme,
i descarregueu-vos AmazfitBipTools_Mi4_0.0.2.zip
a ~/src
- aneu al directori on l'heu desat i
descomprimiu-lo:
cd ~/src
unzip AmazfitBipTools_Mi4_0.0.2.zip
cd AmazfitBipTools_Mi4_0.0.2
- Descarregueu-vos
un fitxer .bin que servirà com a base (p.ex. mario_odyssey_06-37039-e65bd5a5ee.bin),
a ~/src/
AmazfitBipTools_Mi4_0.0.2/mario_odyssey_06-37039-e65bd5a5ee.bin
- Descomprimiu-lo:
WINEPREFIX=~/.win_32 WINEARCH=win32 wine
WatchFace.exe
mario_odyssey_06-37039-e65bd5a5ee.bin
- Aneu a la nova carpeta
mario_odyssey_06-37039-e65bd5a5ee:
cd mario_odyssey_06-37039-e65bd5a5ee
- Modifiqueu les imatges que vulgueu, per exemple la
imatge de fons, 0000.png (PNG image data,
8-bit/color RGBA, non-interlaced)
- Gimp
- Fitxer / Obre...
- la nova imatge que voleu posar al
rellotge
- Imatge / Escala la imatge...
- Amplada: 120
- Alçada: 240
- Resolució X: 96 píxels/in
- Resolució Y: 96 píxels/in
- Capa / Transparència / Afegeix canal alfa
- Imatge / Mode / Indexat
- Fitxer / Exporta com a...
- Dimensions
- Opcionalment, modifiqueu el fitxer json:
~/src/AmazfitBipTools_Mi4_0.0.2/mario_odyssey_06-37039-e65bd5a5ee/mario_odyssey_06-37039-e65bd5a5ee.json
- Empaqueteu de nou el directori:
cd ~/src/AmazfitBipTools_Mi4_0.0.2
WINEPREFIX=~/.win_32 WINEARCH=win32 wine
WatchFace.exe
mario_odyssey_06-37039-e65bd5a5ee/mario_odyssey_06-37039-e65bd5a5ee.json
- us generarà un nou fitxer:
mario_odyssey_06-37039-e65bd5a5ee/mario_odyssey_06-37039-e65bd5a5ee_packed.bin
- Connecteu el telèfon Android a l'ordinador, amb un
cable USB (haureu de donar permís des del telèfon a
la connexió per USB per a desenvolupadors)
- Trobeu quin directori de l'aplicació MiFit voldreu
sobreescriure amb el nou bin, fent servir l'eina
adb :
~/Android/Sdk/platform-tools/adb
devices
~/Android/Sdk/platform-tools/ adb shell
cd /storage/sdcard0/Android/data/com.xiaomi.hm.health/files/watch_skin_local/
ls -l
- trieu algun d'aquests directoris, per
exemple:
mrrfZikKuBb7MXFrNKu8VyHE0lLXKRcnO0xCyJ0w
exit
- Poseu aquest fitxer, fent servir ADB, dins d'un
directori de MiFit al vostre dispositiu
Android (
/storage/sdcard0/Android/data/com.xiaomi.hm.health/files/watch_skin_local/ ):
- cd
~/src/AmazfitBipTools_Mi4_0.0.2/
mario_odyssey_06-37039-e65bd5a5ee
~/Android/Sdk/platform-tools/ adb push mario_odyssey_06-37039-e65bd5a5ee_packed.bin
/storage/sdcard0/Android/data/com.xiaomi.hm.health/files/watch_skin_local/ mrrfZikKuBb7MXFrNKu8VyHE0lLXKRcnO0xCyJ0w
- Des de MiFit, instal·leu el tema com faríeu
habitualment
- ...
- amazfitbip/tools
|
|
- User
guide
- Installation
(Installation
instuctions, Upgrade
instructions, Ubuntu
installation)
-
- Dependencies
-
- Install MySQL and
set the
root password
urpmi task-lamp-php
urpmi apache-mod_php php-pear php-pear-DB
php-mbstring [php-smarty php-mysql
php-pear-MDB2_Driver_mysql]
- download:
-
unzip -d /var/www anuko_time_tracker.zip
- Information about version, changelog, troubleshooting:
-
chmod 777
WEB-INF/templates_c
- Configure Timetracker:
-
cd /var/www/timetracker/WEB-INF/; cp
config.php.dist config.php
- /var/www/timetracker/WEB-INF/config.php
-
define("DSN",'mysql://tt_user:tt_password@localhost/timetracker');
define("APP_NAME",'timetracker');
define('MAIL_SMTP_HOST',
'smtp.your_server.com');
- Configure Apache
(may not be needed for Ubuntu):
-
- /etc/httpd/conf/webapps.d/timetracker.conf
-
Alias /timetracker /var/www/timetracker
<Directory "/var/www/timetracker">
Order allow,deny
Allow from All
</Directory>
- /etc/httpd/conf/httpd.conf
-
<Directory "/var/www/timetracker">
Options -Indexes FollowSymLinks
MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
- For a first time
installation:
-
mysql -u root -p
-
CREATE DATABASE timetracker;
GRANT ALL ON timetracker.* TO 'tt_user'@'localhost'
IDENTIFIED BY 'tt_password';
FLUSH PRIVILEGES;
exit;
mysql -u
root -p -D timetracker < mysql.sql
- Check that database is working
-
mysql -u tt_user
-p
-
- > password:
tt_password
> use timetracker;
> show tables;
- http://localhost/timetracker/dbinstall.php
-
- For an upgrade
(and restore from backup):
-
mysql -u root -p
-
GRANT ALL ON timetracker.* TO 'tt_user'@'localhost'
IDENTIFIED BY 'tt_password';
FLUSH PRIVILEGES;
exit;
mysql -v -v -v -u root -p <
backup_timetracker.sql
- Check that database is working
-
mysql -u tt_user
-p
-
- > password:
tt_password
> use timetracker;
> show tables;
- http://localhost/timetracker/dbinstall.php
-
- Update:
-
- sequentially click all Update buttons, from your_old_version
up to 1.3.3
- if you are not sure about what your_old_version
is, click on ALL
Update buttons, starting from the very first
Update button
- Upgrade
-
- Timeout
-
- /etc/php.ini
-
- session.gc_maxlifetime=28800
- /usr/lib/php/maxlifetime (used in /etc/cron.d/php)
-
- Problems
-
- Activate PHP
display errors
- Check readme.txt: BLANK PAGES IN ANUKO TIME TRACKER
- "The server encountered an internal error and was unable
to complete your request. Error message:
The server encountered an internal error and was unable to
complete your request. Either the server is overloaded or
there was an error in a CGI script."
-
|
Kimai
|
- Install
-
- urpmi php-pdo_mysql
- mysql -u root -p
-
- /etc/httpd/conf/webapps.d/kimai.conf
-
- Alias /kimai /var/www/kimai_0.9.0.1082
<Directory "/var/www/kimai_0.9.0.1082">
Order allow,deny
Allow from All
</Directory>
- chown apache.apache -R /var/www/kimai_0.9.0.1082/compile
- chown apache.apache -R /var/www/kimai_0.9.0.1082/extensions
- chown apache.apache -R /var/www/kimai_0.9.0.1082/temporary
- open browser:
-
- default user: admin/changeme
|
|
- Descàrrega / Download
-
- Quick
setup guide
-
- Serving
static
files
- Weblate
with
GitLab as OAuth provider
- Django
-
- Dependències / Dependencies
-
- Mageia
-
- CentOS
-
sudo yum install gcc libxml2-devel
libxslt-devel libjpeg-devel
- Pip
-
virtualenv env
source env/bin/activate
pip install psycopg2 uwsgi
pip install python-social-auth
-
- to avoid error "
No module named
social.apps.django_apps "
pip install -r requirements.txt
pip install --upgrade pip
pip install -r requirements-optional.txt
-
- Additional dependencies:
-
- for tesserocr
-
- CentOS
-
sudo yum install
tesserocr-devel
- Download
-
git clone https://github.com/nijel/weblate.git
- Setup
-
cd weblate
cp weblate/settings_example.py
weblate/settings.py
- settings.py
-
./manage.py migrate
./manage.py createsuperuser
./scripts/generate-locales
-
- Problemes / Problems
-
*** Git <https://git-scm.com/> is
too old! ***
Installed version 1.8.3.1, required 1.8.5
-
- Solució / Solution
-
- Install a newer version of git (CentOS)
./manage.py runserver 0.0.0.0:8000
- Problemes / Problems
-
- Git conflicts
-
ssh ...
cd
/var/lib/weblate/data/vcs/<my_project>/<my_component>/
sudo su django
git status
- Web GUI:
-
- Fresh
installation:
ERROR: accounts.VerifiedEmail.social: (fields.E300) #1405
-
accounts.VerifiedEmail.social: (fields.E300)
Field defines a relation with model 'UserSocialAuth',
which is either not installed, or is abstract.
- Error
500
- When creating a component:
-
- admin:
-
fatal: There is no merge to abort
(MERGE_HEAD missing). (128)
- /var/log/messages
-
ERROR my_project/my_component: failed merge
on repo: fatal: ambiguous argument '@': unknown
revision or path not in the working tree.
Use '--' to separate paths from revisions, like
this:
'git <command> [<revision>...] --
[<file>...]' (128)
-
- Produced by:
-
cd my_project/my_component
git log -n 1 --format=format:%H @
- e.g. with CentOS and git 1.8.3.1
- working fine with git 2.7.4 (Mageia)
- Solution. One of the following
-
- upgrade git
sed -i "s/'log', '-n', '1',
'--format=format:%H', '@'/'log', '-n',
'1', '--format=format:%H', 'HEAD'/"
weblate/weblate/trans/vcs.py
- (when debugging from Eclipse) OperationalError: no such
table: trans_project
-
- "Android String Resource" not present in File Format list
-
- Hierachical JSON files are flattened
-
- Weblate
and
i18next json files
-
- Solució / Solution
-
cd /var/lib/weblate/scripts/
wget
https://gist.githubusercontent.com/saily/f8a9f72c6b064d51f09040d66e981240/raw/5bcb059b5ff0339584745b7bfc707d6adc79e2a8/json_restore_hierarchy
chmod +x json_restore_hierarchy
- settings.py
-
PRE_COMMIT_SCRIPTS
= (
'/var/lib/weblate/scripts/json_restore_hierarchy',
)
sudo systemctl restart
emperor.uwsgi.service
- Admin -> Components -> MyComponent
-
- Pre-commit script:
json_restore_hierarchy
- Usage
-
- admin
-
- SSH
(http://<weblate>/admin/ssh/)
-
- Public SSH key
-
- stored in .../weblate/data/ssh/
-
- this is the id that will be used in git
transactions; you need to add id_rsa.pub as a
valid public key (identity) associated to your
account in your git origin (e.g. GitLab)
- Server key
-
- stored in .../weblate/data/ssh/known-hosts
- Add server key: gitlab.com
- Project (http://<weblate>/admin/trans/)
-
- Component
-
- Repository URL:
git@gitlab.com:my_group/my_project.git
- Push repository URL:
git@gitlab.com:my_group/my_project.git
-
|
|
Django
|
AngularJS
2
|
Android
|
Source
code repository:
|
git@gitlab.com:my_group/my_project.git |
|
|
|
Repository
push
URL:
|
git@gitlab.com:my_group/my_project.git |
|
|
|
Repository
branch:
|
master
|
|
|
|
File
mask:
|
|
locale/*/LC_MESSAGES/django.po
|
src/locale/messages.*.xlf
|
app/src/main/res/values-*/strings.xml
|
Monolingual
base
language file:
|
|
|
src/messages.xlf |
app/src/main/res/values/strings.xml
|
File
format:
|
|
Gettext
PO file
|
XLIFF
translation file
|
Android
String
Resource
|
New
translation:
|
|
|
|
|
- Weblate and GitLab
-
|
DNS server
|
- Info
-
- Eines / Tools
- Prerequisites
-
- make sure the hostname
contains a full name and domain
- Firewall
-
- port 53
- [port 953 for rndc]
-
- Bind
-
- Installation
-
- Mageia
-
- Option 1: Mageia MCC
-
urpmi drakwizard
- MCC: Serveis de xarxa -> Configura DNS
-
wizard
action
|
wizard
field |
affected
|
Servidor
DNS mestre
|
DNS
extern
|
/etc/resolv.conf: nameserver
|
nom de
domini per a la cerca
|
|
(domain
guessed from hostname)
|
|
Afegeix
ordinador al DNS
|
|
/var/lib/named/var/named/zone/db.your.domain.hosts |
# service named start
- Option 2: Config files
-
urpmi bind
- /etc/named.conf
-
file references are relative
to /var/lib/named/var/named/
- CentOS
-
- Configuration
-
- /etc/named.conf
-
zone "." IN {
type
hint;
file
"named.ca";
};
- caching-nameserver
-
- /etc/named.rfc1912.zones
-
zone "localhost" IN {
type master;
file "named.localhost";
allow-update { none; };
};
...
- /var/named/
-
- named.ca
- named.localhost
- ...
- rdnc
-
- Key generation:
-
dnssec-keygen -a hmac-md5 -b
<bit-length> -n HOST
<key-file-name>
- configuration
/etc/named.conf
|
/etc/rndc.conf |
key
"rndc-key" {
algorithm hmac-md5;
secret "...";
}; |
controls {
inet
127.0.0.1 port 953
allow
{ 127.0.0.1; } keys { "rndc-key"; };
};
|
options {
default-key "rndc-key";
default-server 127.0.0.1;
default-port 953;
};
|
- command
line
options
-
rndc rndc -s 127.0.0.1 -p 953 addzone
toto.org '{ type slave; masters { 127.0.0.1
port 5354;}; };'
- Problems
-
- rndc: 'addzone' failed: permission denied
-
- Check
-
dig
@localhost localhost
dig
@localhost toto.org
|
|
- Servidor / Server
-
- OpenVPN
-
- Steps (static key)
- Steps (X509 PKI)
-
- Create CA, server and client certificates:
-
cp -pr
/usr/share/openvpn/easy-rsa/2.0/* /etc/openvpn
cd /etc/openvpn
. ./vars
./clean-all
./build-ca
./build-key-server
server
./build-key client1
./build-dh
- Copy the needed files to the
server:
-
- ca.crt
- server.crt
- server.key
- Copy the needed files to the
client:
-
- ca.crt
- client1.crt
- client1.key
- server.conf
-
cp
/usr/share/openvpn/sample-config-files/server.conf
/etc/openvpn/
- certificates
-
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem
- bridging option (you
previoulsy need to make a bridge between tap and
ethx)
-
server-bridge ...
dev tap
- routing option
-
- Open port 1194 on the firewall
- Client
-
-
|
command |
setting file |
|
|
vpn-start ... |
/etc/sysconfig/network-scripts/vpn.d/ |
|
SSL |
openvpn nom_openvpn |
openvpn/nom_openvpn.conf |
|
IPSec |
vpnc nom_vpnc |
vpnc/nom_vpnc.conf |
|
- MCC (Mageia)
-
- Xarxa i Internet -> Configura una connexió VPN per
a l'accés a una xarxa segura
-
- Cisco VPN Concentrator
- OpenVPN
- vpn-start (part of initscripts package)
-
- openvpn (for connection to OpenVPN servers)
- vpnc (for connection to Cisco servers)
- PPTP
-
- L2TP over IPsec (Cisco)
-
/etc/sysconfig/network-scripts/vpn.d/vpnc/nom_vpn_cisco.conf
-
IPSec gateway x.x.x.x
IPSec ID nom_grup
IPSec secret contrasenya_grup
Xauth username nom_usuari
Xauth password contrasenya_usuari
- Note: it may be necessary to put the same value on
nom_grup
and nom_usuari;
contrasenya_grup
and contrasenya_usuari
# vpn-start vpnc nom_vpn_cisco
- it calls vpnc
- to debug:
-
/usr/sbin/vpnc
/etc/sysconfig/network-scripts/vpn.d/vpnc/toto.conf
--pid-file /var/run/vpnc-toto.pid --debug 2
--no-detach
- Problemes / Problems:
-
vpnc[xxxx]: HMAC mismatch in ESP mode
-
- Solució / Solution
-
- use the latest svn version:
-
- urpmi libgnutls-devel
lib64gcrypt-devel
- svn checkout
http://svn.unix-ag.uni-kl.de/vpnc/trunk/
vpnc
- cd vpnc
- make
- # make install
- Solució / Solution
-
- OpenVPN (SSL)
-
urpmi openvpn
/etc/sysconfig/network-scripts/vpn.d/openvpn/nom_openvpn.conf
- client
remote myremote.example.org 443
capath /etc/pki/tls/rootcerts
auth-user-pass nom_openvpn.txt
ns-cert-type server
/etc/sysconfig/network-scripts/vpn.d/openvpn/nom_openvpn.txt
chmod 400 /etc/sysconfig/network-scripts/vpn.d/openvpn/credentials.txt
# vpn-start openvpn nom_openvpn
- it calls openvpn
- to debug:
openvpn --config
/etc/sysconfig/network-scripts/vpn.d/openvpn/nom_openvpn.conf
...
- Problemes / Problems
-
- PPP + SSL
- openfortivpn
- Instal·lació des de codi font / Installation from
source code
- Dependències / Dependencies
- Mageia
sudo urpmi git gcc automake
autoconf openssl-devel make pkg-config
ppp
- Passos / Steps
cd ~src
git clone
https://github.com/adrienverge/openfortivpn.git
cd openfortivpn
./autogen.sh
./configure --sysconfdir=/etc
make
sudo make install
- Ús / Usage
- sense fitxer de configuració
openfortivpn -v vpn-gateway:10443
--username=foo --password=bar
--trusted-cert xxx
- amb fitxer de configuració
- /etc/openfortivpn/myconfig
host =
vpn-gateway
port = 10443
username = foo
password = bar
# the value of xxx will be given as an
advice the first time you run
openfortivpn without it
trusted-cert = xxx
openfortivpn -v -c
/etc/openfortivpn/myconfig
- Problemes / Problems
- no es troben les pàgines web (perquè es fa
servir el servidor DNS habitual, i no el nou,
subministrat pel servidor VPN)
- Solució / Solution
- cal obrir el navegador després d'haver
establert la VPN; no abans
- cal canviar l'ordre en l'escriptura al
fitxer /etc/resolv.conf, per a donar
preferència als nous valors (la
interfície
ppp* ha de
tenir preferència sobre les altres):
- /etc/resolvconf/interface-order
#
interface-order(5)
lo.inet6
lo.inet
lo.@(dnsmasq|pdnsd)
lo.!(pdns|pdns-recursor)
lo
tun*
tap*
ppp*
em+([0-9])?(_+([0-9]))*
p+([0-9])p+([0-9])?(_+([0-9]))*
*
- Cal deshabilitar el tallafoc
- quins ports? De moment: tot, sense
tallafoc
- openfortigui
- Instal·lació / Installation
- Dependències / Dependencies
- Mageia
sudo urpmi git gcc automake
autoconf openssl-devel make pkg-config
ppp
- Passos / Steps
cd ~src
git clone
https://github.com/theinvisible/openfortigui.git
cd openfortigui && git
submodule init && git submodule
update
qmake && make -j4
- sudo
./openfortigui
- Ús / Usage
|
|
urpmi dhcp-server
urpmi drakwizard-base drakwizard
(MCC)
- Manpage
of
dhcp.conf (fr)
- MCC:
Serveis de xarxa -> Configura DHCP
/etc/dhcpd.conf
-
DHCPD_INTERFACE = "eth1";
ddns-update-style none;
subnet 192.168.0.0 netmask 255.255.255.0 {
# default
gateway
option routers
192.168.0.1;
option
subnet-mask 255.255.255.0;
option
domain-name "domain.org";
# Seting up an
ip address is better here
option
domain-name-servers ns.domain.org;
option
nis-domain "domain.org";
range
dynamic-bootp 192.168.0.128 192.168.0.254;
default-lease-time 21600;
max-lease-time
43200;
# we want the
nameserver to appear at a fixed address
host ns {
next-server
fixed.domain.org;
hardware
ethernet 12:34:56:78:AB:CD;
fixed-address
192.168.0.10;
}
}
- service dhcpd start
- LDAP
-
- PXE
|
PXE
|
|
gPXE
|
|
iPXE
|
|
|
- Installation
with
LAMP
-
- Cómo
instalar
y configurar vtiger CRM 5.0.x.
- Install Apache
-
- Download and deploy VTiger (or checkout
svn version)
-
- Config PHP
-
urpmi apache-mod_php php-gd php-imap php-openssl
php-curl php-mysql php-iconv
/etc/php.ini
-
allow_call_time_pass_reference
=
On
error_reporting = ... E_WARNING & ~E_NOTICE
safe_mode = Off
display_errors = On
file_uploads = On
max_execution_time = 600
memory_limit = 64M
log_errors = Off
output_buffering = On
register_globals = Off
short_open_tag = On
- Config Apache
-
cd /var/www
chmod -R 775 vtigercrm
chown -R apache.apache vtigercrm
- Create
/etc/httpd/conf/webapps.d/vtigercrm.conf
-
Alias /vtigercrm
/var/www/vtigercrm
<Directory "/var/www/vtigercrm">
Order allow,deny
Allow from All
</Directory>
<Directory
"/var/www/vtigercrm/bin">
Order
allow,deny
Deny
from All
</Directory>
service httpd restart
- Config MySQL
-
- Assegureu-vos que heu establert
la contrasenya de root / Make sure that root password has
been set
- Add database (
vtigercrm540 ) and user (vtigeradmin ):
-
mysql -u root -p
mysql> create database vtigercrm540;
mysql> grant all privileges on
vtigercrm540.* to vtigeradmin@"localhost"
identified by "some_password";
- Config VTiger
-
- Open http://localhost/vtigercrm
-
- Database information:
-
- Host name:
localhost
- User name:
vtigeradmin
- Database name:
vtigercrm540
- (disable) Create database
- (?) Populate database with demo data
- Espereu uns minuts... / Wait for some minutes...
- Installation from SVN
-
- latest
-
- 6.0.0
-
svn checkout
http://trac.vtiger.com/svn/vtiger/vtigercrm/branches/6.0.0/6.0.0/
vtigercrm6
- Utilització / Usage
-
- Problemes / Problems
-
- Lead import blank page
-
PHP Warning: Unknown: 1 result set(s) not
freed. Use mysql_free_result to free result sets which
were requested using mysql_query() in Unknown on line 0
-
- Solució / Solution
-
- make sure that on /etc/php.ini you have the
mysql.trace_mode set to off (not on):
-
- SMTP mail not working (5.4)
-
|
|
- Apache WebDAV
configuration
- How
To
Set Up WebDAV With Apache2 On Mandriva 2009.1
- How
to
set up WebDAV with Apache2 on Debian Etch
- Servidor / Server
-
- urpmi apache-mod_dav
- mkdir -p /var/www/toto
- chown apache:apache /var/www/toto
- Add user
test_user :
-
htpasswd -c /var/www/passwd.dav test_user
- httpd.conf:
-
-
LoadModule dav_module modules/mod_dav.so LoadModule dav_fs_module modules/mod_dav_fs.so LoadModule dav_lock_module modules/mod_dav_lock.so Alias /toto /var/www/toto <Location /toto> Dav on AuthType Basic AuthName "toto_webdav" AuthUserFile /var/www/passwd.dav Require valid-user </Location> <Directory "/var/www/toto"> Options -Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory>
service httpd restart
- Client
-
- cadaver
-
- urpmi cadaver
- cadaver http://webdav_server/toto/
- Nautilus
-
- dav://webdav_server/toto/
- Dolphin
-
- webdav://server[:8080]/toto
- Windows browser
-
- davfs2
-
- Instal·lació / Installation
-
- Mageia
-
- Ubuntu
-
sudo apt-get install davfs2
- /etc/fstab
-
# from Mageia
http://webdav_server/toto/ /mnt/http davfs2
defaults 0 0
# from Ubuntu
http://webdav_server/toto/ /mnt/http davfs
defaults 0 0
- /etc/davfs2/davfs2.conf
-
- /etc/davfs2/secrets
-
/mnt/http nom_ususari
contrasenya
- Problemes / Problems
-
- File exists
-
- cache not synced often enough
-
- fusedav
-
|
Wiki (mediawiki)
|
- WikiMatrix
- Instal·lació de
Mediawiki 1.16.5 (
/usr/share/doc/mediawiki-1.16.5/INSTALL ):
-
- urpmi mediawiki (
/usr/share/doc/mediawiki/README.urpmi )
mediawiki-create /var/www/mediawiki
ln -s /usr/share/mediawiki/skins /var/www/mediawiki
/etc/httpd/conf/webapps.d/mediawiki.conf:
-
Alias /mediawiki /var/www/mediawiki
<Directory "/var/www/mediawiki">
Order allow,deny
Allow from All
</Directory>
<Directory "/var/www/mediawiki/bin">
Order allow,deny
Deny from All
</Directory>
/etc/httpd/conf/httpd.conf
-
<Directory "/var/www/mediawiki">
Options -Indexes FollowSymLinks
MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
- Check that MySQL is
running
service httpd restart
- open
http://server_address/mediawiki/
-
- Use superuser account: yes
- prefix: mw_
cd /var/www/mediawiki/config; mv LocalSettings.php
..
- Logo:
-
cp logotip.png /var/www/mediawiki/
LocalSettings.php
-
$wgLogo = "/mediawiki/logotip.png";
- Upgrade to 1.16.5 (
/usr/share/doc/mediawiki-1.16.5/UPGRADE,
/usr/share/doc/mediawiki/README.urpmi )
-
mysql -u root -p < backup_mediawiki.sql
cp -pr /tmp/backup/var/www/mediawiki /var/www
cd /var/www/mediawiki
[cp LocalSettings.php LocalSettings.php.bo]
rm -f
/var/www/mediawiki/{index.php,api.php,opensearch_desc.php}
mediawiki-create /var/www/mediawiki
rm -rf /var/www/mediawiki/config/
- modify LocalSettings.php
-
if( defined( 'MW_INSTALL_PATH' ) ) {
$IPLOCAL = MW_INSTALL_PATH;
} else {
$IPLOCAL = dirname( __FILE__ );
}
$IP = '/usr/share/mediawiki';
require_once( "$IPLOCAL/extensions/..."
- cp
AdminSettings.sample AdminSettings.php
- modify
AdminSettings.php:
-
$wgDBadminuser
=
'wgDBuser';
$wgDBadminpassword = 'wgDBpassword';
- modify LocalSettings.php
(*)
-
## $wgDBTableOptions = "TYPE=InnoDB";
$wgDBTableOptions = "ENGINE=InnoDB";
- temporarilly modify:
-
- $wgDBuser="root" (to have permissions to create
new tables)
- Modify /usr/sbin/mediawiki-updateall
-
- #mw-createinstance "$path"
mediawiki-updateall (performs an update.php
to each instance in /etc/mediawiki/instances)
- Check that the user
$wgDBuser (usually wikiuser )
with password $wgDBpassword has access to
database $wgDBname (usually wikidb )
(all variables in LocalSettings.php.bo):
-
- Instal·lació de
Mediawiki
(Cómo
instalar
MediaWiki en Mandriva Linux)
-
urpmi mediawiki wget
http://download.wikimedia.org/mediawiki/1.13/mediawiki-1.13.3.tar.gz
( mediawiki-1.15.1-1mdv2010.0.noarch.rpm)
- /etc/httpd/conf/webapps.d/mediawiki.conf:
Alias /mediawiki /var/www/mediawiki
<Directory "/var/www/mediawiki">
Order allow,deny
Allow from All
</Directory>
<Directory "/var/www/mediawiki/bin">
Order allow,deny
Deny from All
</Directory>
- Check that MySQL is
running
- open
http://server_address/mediawiki/
- Use superuser account: yes
- prefix: mw_
mv /var/www/mediawiki/config/LocalSettings.php
/var/www/mediawiki/
- Open
http://localhost/mediawiki/index.php
- Upgrade
Mediawiki
-
- ssh user@server
- cd /var/www/mediawiki/
- mv LocalSettings.php LocalSettings.php.old
- firefox -no-remote
http://server_address/mediawiki/config/index.html
-
- Use superuser account
- prefix: mw_
- PHP debug
- Servidor de correu /
Mail server
-
- Llengües
-
- Configuració
/
Configuration
-
- Alphabetical list of parameters
/var/www/mediawiki/LocalSettings.php
-
if( defined( 'MW_INSTALL_PATH'
) ) {
$IPLOCAL = MW_INSTALL_PATH;
} else {
$IPLOCAL = dirname( __FILE__ );
}
$wgExtraNamespaces = array(
100
=> "NewName1",
101
=> "NewName1_Discussion",
102 => "NewName2",
103 =>
"NewName2_Discussion",
);
# no es permeten edicions anònimes
$wgGroupPermissions['*']['edit'] = false;
# extensions de fitxers que es poden pujar
$wgFileExtensions = array_merge($wgFileExtensions,
array('doc', 'xls','mpp', 'pdf', 'svg', 'zip'));
#<math>
$wgUseTeX = true;
#permet el protocol file://
$wgUrlProtocols[] = "file:";
# per a debugar
$wgShowExceptionDetails = true;
# permet referències a imatges externes
$wgAllowExternalImages = true;
- Usuaris / Users
-
- Aplicacions
-
- mwlib (Python)
(PediaPress)
-
urpmi python-setuptools libpython-devel gcc-c++
python-imaging libxslt-devel python-reportlab
python-pygments
easy_install
mwlib
easy_install
mwlib.rl (per a generar pdf) (readme.txt)
- Problems:
-
- timelib: ... undefined reference to `sincos'
-
- mwlib.ext-0.12.3: ... undefined reference to
`log10'
-
- Examples
-
mw-render --list-writers
mw-render
--config=http://localhost/mediawiki/ --writer=rl
--output=./p.pdf Pàgina_Principal
- Configuració
-
- pdf
-
/usr/lib/python2.x/site-packages/mwlib.rl-0.aa.bb-py2.x.egg/mwlib/rl/pdfstyles.py
-
titlepagefooter = _(u'Peu de pàgina
del títol')
pagefooter = _(u'Peu de pàgina')
show_creation_date = False
show_article_attribution = False
(without "Article Sources and Contributors"
and "Image Sources, Licenses and
Contributors" sections)
- odf
-
/usr/lib/python2.x/site-packages/mwlib-0.cc.dd-py2.x-linux-i686.egg/mwlib/odfstyles.py
- Plantilles / Templates
-
- Extensions
-
- Collection
/ Pdf
Writer (es necessita mwlib,
mwlib.rl) (readme.txt)
-
- Help
-
mw-serve -i localhost (engega el servidor
mwlib per a ser accedit des de l'API de mediawiki) (el
nom del servidor, en aquest cas localhost, ha de ser
coherent amb el valor indicat a$wgCollectionMWServeURL)
-
- per a fer-ho de forma automàtica quan engega
l'ordinador:
-
urpmi php-curl
cd /var/www/mediawiki/extensions
svn co
http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/Collection
/var/www/mediawiki/LocalSettings.php
-
- require_once("$IP/extensions/Collection/Collection.php");
- $wgCollectionMWServeURL = "http://localhost:8899";
- $wgCollectionFormats = array(
'rl' => 'PDF',
'odf' => 'ODT',
);
- open
port: 8899/tcp
/var/www/mediawiki/skins/MonoBook.php
-
- Hauríeu de veure una nova capseta a l'esquerra, sobre
la capseta "eines", anomenada "create a book". Si no es
veu, buideu la memòria cau del vostre navegador
- Comprovació:
-
wget
"http://localhost/mediawiki/index.php?title=Especial:Book/render_article/&arttitle=Pàgina_principal&oldid=2&writer=rl"
wget
"http://localhost/mediawiki/index.php?title=Especial:Book/render_article/&arttitle=Pàgina_principal&oldid=2&writer=odf"
- Si hi ha error del tipus 500, verifiqueu
-
tail /var/log/httpd/error_log
- Problems
-
- Fatal error: Unsupported operand types in
.../extensions/Collection/Collection.php on line 192
-
- Solution:
-
- get
a
previous version:
-
svn co -r 79875
http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/Collection/
- Bibwiki
(*)
(*)
-
urpmi php-mbstring
- Download
the latest image (0.99e-rc1)
- Afegiu les entrades a 'ca' al fitxer Bibwiki.i18n.php
(copieu-les de 'en')
-
- haureu d'accedir a la pàgina especial:
mediawiki/index.php/Especial:Bibliography
cp BibwikiSettings.Default.php
BibwikiSettings.php
- Settings:
/var/www/mediawiki/extensions/<bibwiki_path>/BibwikiSettings.php
(copy BibwikiSettings.Default.php)
-
$wgBibPath = '/var/www/mediawiki/bib';
$wgDefaultBib = 'my.bib';
- Export
-
urpmi tetex (/usr/bin/bibtex)
- Exporting
via BibTeX
$wgEnableExport = true;
$wgBibTeXExecutable = '/usr/bin/bibtex';
$wgTempDir = '/tmp';
$wgBibStyles = array('plain',
'abbrv','ieeetr'); (styles available
under /usr/share/texmf/bibtex/bst or
/usr/share/texmf-dist/bibtex/bst/base/ )
- Afegir / Add InProceedings:
-
- Bibwiki.body.php:
-
elseif ($wgRequest->getVal("type") ==
"InProceedings") {
$wgOut->addHTML("@".$wgRequest->getVal("type")."{*,\n");
$wgOut->addHTML('author
=
'.$wgValueDelimLeft.$wgValueDelimRight.','."\n");
$wgOut->addHTML('title
=
'.$wgTitleDelimLeft.$wgTitleDelimRight.','."\n");
$wgOut->addHTML('titleaddon
=
'.$wgTitleDelimLeft.$wgTitleDelimRight.','."\n");
$wgOut->addHTML('booktitle
=
'.$wgTitleDelimLeft.$wgTitleDelimRight.','."\n");
$wgOut->addHTML('year
=
'.$wgValueDelimLeft.$wgValueDelimRight.','."\n");
$wgOut->addHTML('pages
=
'.$wgValueDelimLeft.$wgValueDelimRight.','."\n");
$wgOut->addHTML('address
=
'.$wgValueDelimLeft.$wgValueDelimRight.','."\n");
$wgOut->addHTML('note
=
'.$wgValueDelimLeft.$wgValueDelimRight.','."\n");
$wgOut->addHTML('keywords
=
'.$wgValueDelimLeft.$this->mFilter.$wgValueDelimRight.','."\n");
$wgOut->addHTML('bibdate
=
'.$wgValueDelimLeft.strftime($wgDateTimeFormat,time()).$wgValueDelimRight.",\n");
$wgOut->addHTML("}");
}
print('<li><a
href="'.Bibliography::getLocalURL(array('view='.$wgRequest->getVal("view"),
'action=new', 'type=InProceedings', $bibquery,
$keywordquery)).'">'.wfMsg('bibwiki_inproceedings').'</a></li>');
- Bibwiki.i18n.php, for each language:
-
"bibwiki_inproceedings" =>
"Inproceedings",
- Problemes /
Problems
-
- The style file: plain.bst
I couldn't open database file toto.bib
-
- "Program doesn't seem to be BibTeX. Check the
output and
$wgBibTeXExecutable in BibwikiSettings.php .
Output of the program:
I couldn't open file name `/tmp/bibexport.blg'"
-
- Solution:
-
/usr/share/texmf/web2c/texmf.cnf (*)
-
- Problems with accents at exported text.
-
- Solution: modify
/var/www/mediawiki/extensions/Bibwiki-0.99d/Bblfile.php
-
elseif ($cmd == "'" and $arg != ""
and stristr('aeiouy', $arg) !== false)
return
'&'.$arg.'acute;';
elseif ($cmd == "`" and $arg != "" and
stristr('aeiouy', $arg) !== false)
return
'&'.$arg.'grave;';
- "Too many commas in name..."
-
- Solution: modify the entry so as there is the
word "and" to separate author names.
- "No es troba la pàgina especial que busqueu"
-
- comproveu el nom en català (sota l'apartat
'ca') que figura a Bibwiki.i18n.php
- proveu amb
mediawiki/index.php/Especial:Bibliography
- Cite
(references as footnotes)
- Cerca / Search
-
- SphinxSearch
-
urpmi sphinx
- download SphinxSearch-0.6.1
to /tmp/SphinxSearch-0.6.1
-
- sphinx.conf
-
sql_user =... (same as in
LocalSettings.php)
sql_pas = ... (same as in
LocalSettings.php)
sql_db = ... (same as in
LocalSettings.php)
- check sql_query sql_query_info (prefix
coherent with $wgDBprefix in
LocalSettings.php)
morphology =
stem_ca (?)
mkdir /var/data/ /var/data/sphinx
sphinx-indexer --config sphinx.conf
--all
- search --config sphinx.conf "paraula"
- crontab
-e:
-
- mkdir
/var/www/mediawiki/extensions/SphinxSearch
- cp /usr/share/doc/sphinx/api/sphinxapi.php
/var/www/mediawiki/extensions/SphinxSearch
- cd /var/www/mediawiki/extensions/SphinxSearch
- svn export
http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/ExtensionFunctions.php
- mv /tmp/SphinxSearch-0.6.1/sphinx.conf
/etc/sphinx/
- cp /tmp/SphinxSearch-0.6.1/*
/var/www/mediawiki/extensions/SphinxSearch/
- service sphinx-searchd restart
- LocalSettings.conf
-
- require_once(
"$IP/extensions/SphinxSearch/SphinxSearch.php"
);
- minus sign:
-
- Editors
WYSIWYG
-
- Semantic
mediawiki
- math / LATeX
-
urpmi make ocaml
cd mediawiki/math
make
- Edició / Edition
-
|
Wordpress
|
- Instal·lació / Installation
-
- Dependències / Dependencies
-
- Mageia
-
- urpmi wordpress
-
- notes d'instal·lació / installation notes:
-
/usr/share/doc/wordpress/README.install.urpmi
- Configuració / Set-up
-
- assegureu-vos que hi ha un servidor MySQL/MariaDB funcionant, amb un usuari
root protegit per contrasenya / make sure that MySQL/MariaDB
database server is running, with a root
user protected with password
- creeu un base de dades per a Wordpress i un usuari /
create a database for Wordpress and a user:
mysql -u root -p
-
CREATE DATABASE nom_bd_wp;
GRANT ALL PRIVILEGES ON nom_bd_wp.*
TO "usuari_wp"@"localhost"
IDENTIFIED BY "contrasenya_wp";
FLUSH PRIVILEGES;
EXIT
- obriu / open: http://localhost/wordpress/
- l'auxiliar crearà / the wizard will create:
-
/var/www/wordpress/wp-config.php (/var/www/html/wp-config.php)
-
DB_NAME ( nom_bd_wp)
DB_USER (usuari_wp)
DB_PASSWORD (contrasenya_wp)
DB_HOST (localhost)
- Setting
up
WordPress behind Amazon Cloudfront
- Problemes / Problems
-
- Error 500; and /var/log/httpd/error_log reports:
-
- /var/www/wordpress/.htaccess: RewriteEngine not
allowed here
- Solució / Solution:
-
- Redireccionaments / Redirects
-
|
Zotero
|
|
http://www.francescpinyol.cat/utilitats.html
Darrera modificació: 17 de juliol de 2024 / Last update: 17th July
2024
Cap a casa / Back home. |