There was a case when I needed an Internet on my desktop, but only available was on my Meizu phone. After several touching (on the phone), searching in Yandex and clicking on mynote and desktop, the desktop machine was connected to WWW.
I followed 2 advices: http://askubuntu.com/questions/359856/share-wireless-internet-connection-through-ethernet and http://askubuntu.com/questions/169473/sharing-connection-to-other-pcs-via-wired-ethernet
There was no need to set manual IP-s, so the connection was established by default.
петък, 19 февруари 2016 г.
сряда, 16 септември 2015 г.
RST Оценка
Оценка сигнала
Необходимый минимум обмена информацией при радиосвязи это позывной кореспондента и оценка слышимости вашего сигнала, переданная им для Вас. Для того чтобы оценить сигналы корреспондента, применяют так называемую систему "RST" состоящую из трех (для телеграфа) или двух (для телефонии) цифр. Первой - "R" -оценивается разборчивость сигнала по пятибалльной шкале , второй - "S" - сила сигнала по девятибалльной шкале, третьей - "Т" -(тон)-качество тона телеграфного сигнала по девятибалльной шкале.
R (баллов) Разборчивость
5 Принимается все полностью
4 Теряются отдельные слова
3 Прием с большим трудом
S (баллов) Громкость
9 Очень громкие сигналы
8 Громкие сигналы
7 Умеренно громкие сигналы
6 Прием с небольшим напряжением
5 Прием со средним напряжением
4 Прием с большим напряжением
3 Прием на грани возможного
петък, 11 септември 2015 г.
QSO Дневник 2015 г.
| Дата | Час | Мой QTH | Инициал | Име | Връзка през | QTH | QTH - постояннен | Антена | Приемам го на | Приема ме на | Забележка |
| 11.09.2015 | 22:15 | Сф. Симеоново | LZ1ABG | Боян | Нови Искър | Нови Искър | Mobile | Q5 | Q4 | Лен 100 канала |
петък, 3 юли 2015 г.
неделя, 2 февруари 2014 г.
RAMJ - Raspberry, Apache Tomcat, MySQL, Java host server
In this post I will show how to run RAMJ server for test purposes on Raspberry Pi computer.
Step 1
On Raspbian Wheezy, the Java is preisntalled (/usr/lib/jvm/jdk-7-oracle-armhf/jre/bin),
but in case it is not there you can install it easily.
There is no need to be Unix guru, all you need is to perform:
sudo apt-get update && sudo apt-get install oracle-java7-jdk
Our Apache Tomcat server needs to know where the Java is located.export JAVA_HOME="/usr/lib/jvm/jdk-7-oracle-armhf"
export PATH=$PATH:$JAVA_HOME/bin
Check the path echo $JAVA_HOME.
Step 2
Installing the Tomcat is not tricky too.
Download it from:
http://tomcat.apache.org/download-70.cgi
After the download completes, untar the file.
tar -zxvf apache-tomcat-7.0.50.tar.gz
Where,
-z : Uncompress the resulting archive with gzip command.
-x : Extract to disk from the archive.
-v : Produce verbose output i.e. show progress and file names while extracting files.
-f data.tar.gz : Read the archive from the specified file called data.tar.gz.
In order to start Tomcat, we need to add it as an environment variable in the /.bashrc file: sudo nano ~/.bashrc
We have add next rows to the end of the file:
export export JAVA_HOME=/usr/lib/jvm/jdk-7-oracle-armhf
export CATALINA_HOME=~/home/pi/apache-tomcat-7.0.50
After saving the additions we can make the changes effective by restarting the bashrc file: ~/.bashrc
It is more convenient to have Tomcat started on each linux startup.
For that we have to create start script and place it in /etc/init.d
sudo nano tomcat7
#!/bin/sh
# Short-Description: Start Tomcat.
# Description: Start the Tomcat servlet engine.
# Tomcat 7 init-script
CATALINA_HOME=/home/pi/apache-tomcat-7.0.50
export CATALINA_HOME
JAVA_HOME=/usr/lib/jvm/jdk-7-oracle-armhf
export JAVA_HOME
PATH=$JAVA_HOME/bin:$PATH
export PATH
case $1 in
start)
sh $CATALINA_HOME/bin/startup.sh
echo "tomcat7 started successfully"
;;
stop)
sh $CATALINA_HOME/bin/shutdown.sh
echo "tomcat7 stoped successfully"
;;
restart)
sh /home/pi/apache-tomcat-7.0.50/bin/shutdown.sh
sh /home/pi/apache-tomcat-7.0.50/bin/startup.sh
echo "tomcat7 restarted successfully"
;;
*)
sh $CATALINA_HOME/bin/startup.sh
echo "tomcat7 started successfully"
;;
esac
exit 0
After saving it with Ctrl ^x, we have to make it executable.
sudo chmod 751 tomcat7
sudo update-rc.d tomcat7 defaults
Check if it works, type sudo reboot, after the restart, type in RP Midori browser the address of the default Tomcat's page: http://localhost:8080
Step 3
Now download the MySQL archve from: To be continued...
Step 1
On Raspbian Wheezy, the Java is preisntalled (/usr/lib/jvm/jdk-7-oracle-armhf/jre/bin),
but in case it is not there you can install it easily.
There is no need to be Unix guru, all you need is to perform:
sudo apt-get update && sudo apt-get install oracle-java7-jdk
Our Apache Tomcat server needs to know where the Java is located.export JAVA_HOME="/usr/lib/jvm/jdk-7-oracle-armhf"
export PATH=$PATH:$JAVA_HOME/bin
Check the path echo $JAVA_HOME.
Step 2
Installing the Tomcat is not tricky too.
Download it from:
http://tomcat.apache.org/download-70.cgi
After the download completes, untar the file.
tar -zxvf apache-tomcat-7.0.50.tar.gz
Where,
-z : Uncompress the resulting archive with gzip command.
-x : Extract to disk from the archive.
-v : Produce verbose output i.e. show progress and file names while extracting files.
-f data.tar.gz : Read the archive from the specified file called data.tar.gz.
In order to start Tomcat, we need to add it as an environment variable in the /.bashrc file: sudo nano ~/.bashrc
We have add next rows to the end of the file:
export export JAVA_HOME=/usr/lib/jvm/jdk-7-oracle-armhf
export CATALINA_HOME=~/home/pi/apache-tomcat-7.0.50
After saving the additions we can make the changes effective by restarting the bashrc file: ~/.bashrc
It is more convenient to have Tomcat started on each linux startup.
For that we have to create start script and place it in /etc/init.d
sudo nano tomcat7
#!/bin/sh
# Short-Description: Start Tomcat.
# Description: Start the Tomcat servlet engine.
# Tomcat 7 init-script
CATALINA_HOME=/home/pi/apache-tomcat-7.0.50
export CATALINA_HOME
JAVA_HOME=/usr/lib/jvm/jdk-7-oracle-armhf
export JAVA_HOME
PATH=$JAVA_HOME/bin:$PATH
export PATH
case $1 in
start)
sh $CATALINA_HOME/bin/startup.sh
echo "tomcat7 started successfully"
;;
stop)
sh $CATALINA_HOME/bin/shutdown.sh
echo "tomcat7 stoped successfully"
;;
restart)
sh /home/pi/apache-tomcat-7.0.50/bin/shutdown.sh
sh /home/pi/apache-tomcat-7.0.50/bin/startup.sh
echo "tomcat7 restarted successfully"
;;
*)
sh $CATALINA_HOME/bin/startup.sh
echo "tomcat7 started successfully"
;;
esac
exit 0
After saving it with Ctrl ^x, we have to make it executable.
sudo chmod 751 tomcat7
sudo update-rc.d tomcat7 defaults
Check if it works, type sudo reboot, after the restart, type in RP Midori browser the address of the default Tomcat's page: http://localhost:8080
Step 3
Now download the MySQL archve from: To be continued...
сряда, 15 януари 2014 г.
понеделник, 17 декември 2012 г.
Российские вещательные каналы - Настройка тарелки
София
Name: 75E ABS-1 (LMI 1) | ABS-1A (KOREASAT 2)
Distance: 39668km
Elevation: 18.9°
Azimuth (true): 118.1°
Azimuth (magn.): 113.8°
LNB Skew [?]: -40.4°
Name: 13E EUTELSAT HOT BIRD 13A | EUTELSAT HOT BIRD 13B | EUTELSAT HOT BIRD 13C
Distance: 37809km
Elevation: 39.7°
Azimuth (true): 195.0°
Azimuth (magn.): 190.7°
LNB Skew [?]: 10.9°
Name: 40E EXPRESS-AM 1
Distance: 37946km
Elevation: 37.9°
Azimuth (true): 156.1°
Azimuth (magn.): 151.8°
LNB Skew [?]: -17.3°
Name: 49E YAMAL 202
Distance: 38241km
Elevation: 34.3°
Azimuth (true): 144.6°
Azimuth (magn.): 140.2°
LNB Skew [?]: -25.2°
Name: 75E ABS-1 (LMI 1) | ABS-1A (KOREASAT 2)
Distance: 39668km
Elevation: 18.9°
Azimuth (true): 118.1°
Azimuth (magn.): 113.8°
LNB Skew [?]: -40.4°
Name: 13E EUTELSAT HOT BIRD 13A | EUTELSAT HOT BIRD 13B | EUTELSAT HOT BIRD 13C
Distance: 37809km
Elevation: 39.7°
Azimuth (true): 195.0°
Azimuth (magn.): 190.7°
LNB Skew [?]: 10.9°
Name: 40E EXPRESS-AM 1
Distance: 37946km
Elevation: 37.9°
Azimuth (true): 156.1°
Azimuth (magn.): 151.8°
LNB Skew [?]: -17.3°
Name: 49E YAMAL 202
Distance: 38241km
Elevation: 34.3°
Azimuth (true): 144.6°
Azimuth (magn.): 140.2°
LNB Skew [?]: -25.2°
Абонамент за:
Коментари (Atom)
