- sudo apt-get install mysql-server
- mysql_secure_installation
- mysql -uroot -p
- SHOW DATABASES;
+——————–+
| Database |
+——————–+
| information_schema |
| mysql |
| performance_schema |
+——————–+
3 rows in set (0.00 sec) - QUIT
Bye!
- SHOW DATABASES;
- según la versión,
- sudo apt-get install php5-mysql
- sudo apt install php7.0-mysql
- luego, se reinicia el servidor apache:
sudo systemctl restart apache2.service
Autor: ernesto
php: instalación y configuración
- sudo apt-get install php5
- sudo a2enmod php5
Enabling module php5.
To activate the new configuration, you need to run: service apache2 restart - luego, se reinicia el servidor:
sudo service apache2 restart
o
sudo systemctl restart apache2.service
esto debería valer.
- los archivos de configuración del módulo de php5 para apache2 se encuentran en
- /etc/apache2/mods-available/php5.conf
apache2: instalación y configuración
instalación y configuración
- sudo apt-get install apache2
- sudo nano /etc/apache2/apache2.conf
Timeout 30
MaxKeepAliveRequests 25 - sudo nano /etc/apache2/ports.conf
ServerName RB
Listen 192.168.1.7:9700 - luego, se crea el archivo RB.conf:
sudo cp /etc/apache2/sites-available/{000-default.conf,RB.conf}
sudo touch /etc/apache2/sites-available/RB.conf
- sudo nano /etc/apache2/sites-available/RB.conf
<VirtualHost 192.168.1.7:9700> ServerName RB ServerAdmin ernesto@poderna.com DocumentRoot /media/web/ <Directory /media/web/> Options Indexes FollowSymLinks MultiViews AllowOverride none Order allow,deny Allow from all </Directory> ErrorLog /media/web/log/error.log CustomLog /media/web/log/access.log
rpcbind de 0.2.1-6+deb8u1 a 0.2.3-0.2
a diferencia de la versión 0.2.1, la versión 0.2.3 no causa conflicto al arrancar (on boot) en raspbian (debian en general, me temo):
- sudo nano /etc/apt/sources.list
deb http://ftp.es.debian.org/debian testing main
- sudo apt-get update
- en caso de error,
W: GPG error: http://ftp.es.debian.org testing InRelease: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553 NO_PUBKEY 7638D0442B90D010
- sudo apt-key adv –keyserver keyserver.ubuntu.com
nfs: network file system v4
- sudo apt-get purge rpcbind nfs-common nfs-kernel-server
- sudo apt-get install nfs-kernel-server
- si se emplea SysV,
sudo update-rc.d rpcbind defaults
sudo update-rc.d rpcbind enable
y, para con systemd,
sudo systemctl enable rpcbind
si rpcbind no arranca de inicio o nfs-kernel-server devuelve este error:
mar 21 20:33:13 RB nfs-kernel-server[432]: Not starting: portmapper is not running … (warning).
alimentación del disco duro externo en la raspberry pi 2
/boot/config.txt
- antes de nada, cabe comprobar que la raspberry pi detecta el disco duro que se le ha conectado. hay, al menos, dos vías:
- lsusb muestra una lista de los dispositivos USB detectados:
lsusb
Bus 001 Device 005: ID 1058:1078 Western Digital Technologies, Inc.
este comando se instala mediante el paquete usbutils:
sudo apt show usbutils
This package contains the lsusb utility for inspecting the devices connected to the USB bus.
- lsusb muestra una lista de los dispositivos USB detectados:
medidas de la raspberry pi
vcgencmd
esta herramienta facilita información del sistema; entre otras cosas, ciertas medidas; con la siguiente instrucción, se obtienen los comandos disponibles:
vcgencmd commandscommands=»vcos, ap_output_control, ap_output_post_processing, vchi_test_init, vchi_test_exit, vctest_memmap, vctest_start, vctest_stop, vctest_set, vctest_get, pm_set_policy, pm_get_status, pm_show_stats, pm_start_logging, pm_stop_logging, version, commands, set_vll_dir, set_backlight, set_logging, get_lcd_info, arbiter, cache_flush, otp_dump, test_result, codec_enabled, get_camera, get_mem, measure_clock, measure_volts, scaling_kernel, scaling_sharpness, get_hvs_asserts, get_throttled, measure_temp, get_config, hdmi_ntsc_freqs, hdmi_adjust_clock, hdmi_status_show, hvs_update_fields, pwm_speedup, force_audio, hdmi_stream_channels, hdmi_channel_map, display_power, read_ring_osc, memtest, dispmanx_list, get_rsts, schmoo, render_bar, disk_notify, inuse_notify, sus_suspend, sus_status, sus_is_enabled, sus_stop_test_thread, egl_platform_switch, mem_validate, mem_oom, mem_reloc_stats, hdmi_cvt, hdmi_timings, file»
consumo eléctrico del núcleo o core voltage
vcgencmd measure_voltsvolt=1.2000V
memoria
vcgencmd get_mem armarm=768M
la memoria de la unidad de procesamiento gráfico (GPU) se obtiene como sigue:
vcgencmd get_mem gpugpu=256M
temperatura
vcgencmd measure_temptemp=40.6’C
velocidad del procesador
vcgencmd measure_clock armfrequency(45)=600000000
y, para conocer su mínimo y máximo,
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies600000 1200000
ambas medidas se expresan en herzios (Hz).