Justas
-
2023-10-15 sdr.Gudynas.lt Project2023-10-15 Some SSTV decoding on 10/11m SDR
I accidentally caught a few SSTVs being sent 13:40:29 320x256 Martin 2 at 27700kHz 13:44:53 320x256 Martin 2 at 27700kHz 13:50:46 320x256 Martin 1 at 27700kHz 13:54:36 320x256 Martin 2 at 27700kHz 13:56:07 320x240 Robot 36 at 27700kHz 13:56:56 320x240…
-
2023-09-24 sdr.Gudynas.lt ProjectEnabling auto-adjust waterfall colors by default OpenWebRX
As you already know, OpenWebRX has the option of an automatic waterfall color setting, which is activated manually by pressing the right mouse button on the auto-adjust waterfall icon. When many different bands are used, it is very convenient when…
-
2023-09-24 sdr.Gudynas.lt ProjectEnabled Background decoding and HF propagation
Background decoding services are enabled from today for FT4, FT8, and PACKET modes. This means that when using bands that contain these mods, they will be automatically decoded and displayed in sdr.gudynas.lt/map (Map retention time 24hours) and pskreporter pages. 2023-09-24…
-
2023-05-14 UncategorizedRedirect a Domain without Changing the URL with htaccess rule
Redirect and keep everything after the URL RewriteCond %{HTTP_HOST} ^DomainA.com RewriteRule ^(.*) https://DomainB.com/$1 [P] Redirect a domain to a specific url RewriteCond %{HTTP_HOST} ^DomainA.com RewriteRule ^(.*) https://DomainB.com/PathToPageHere [P] Redirect an IP address # Redirect all IP address (replace the ## with the IP address numerals) to same https://domain_name.com RewriteCond %{HTTP_HOST} ^##.##.##.## RewriteRule (.*) https://domain_name.com/$1 [R=301,L]
-
2023-04-15 LinuxThermal sensors
for i in /sys/class/thermal/thermal_zone[0-9]/temp /sys/class/hwmon/hwmon[0-9]/temp[0-9]_input /sys/devices/platform/coretemp.[0-9]/hwmon/hwmon[0-9]/temp[0-9]_input do [[ -e $i ]] && echo "$i : $(
-
2023-03-03 LinuxExport IP:PORT from random text file to the list
You can use a combination of Linux commands to filter out IP:port pairs from a text file and create a list. Assuming that the IP:port pairs in the file are separated by a space, you can use the grep command to filter out lines that match the IP:port pattern, and then use the cut command…
-
2022-08-07 Linuxsysctl.conf
/etc/sysctl.conf net.ipv4.ip_forward=1 net.ipv4.conf.default.rp_filter=0 net.ipv4.conf.all.rp_filter=0 net.ipv6.conf.all.disable_ipv6=1 net.ipv6.conf.default.disable_ipv6=1 net.ipv4.conf.all.proxy_arp=1 sysctl -p
-
2022-07-30 sdr.Gudynas.lt ProjectSDR linksmybės
Netikėtai užgaudyta žinutė 😀 Kam įdomu: http://sdr.gudynas.lt mano SDR imtuvas 🙂
-
2022-03-18 LinuxCustom DocumentRoot for a Domain in DirectAdmin
If you need to permanently change Apache DocumentRoot for just a single domain, you should do this as Admin. Go to http://[domain]:2222/CMD_CUSTOM_HTTPD?domain=[domain] In the first window, under Only add the few lines of the VirtualHost you need to insert. Do not add a whole .. Add the following line: |?DOCROOT=/custom/document/root| Don’t forget to put pipes…
-
2021-12-05 LinuxDirectadmin increasing mysql limits script
#!/bin/sh #Limits (setting these options to 0 removes the limit) MAX_QUERIES_PER_HOUR=30000 MAX_UPDATES_PER_HOUR=20000 MAX_CONNECTIONS_PER_HOUR=5000 MAX_USER_CONNECTIONS=100 #We get DirectAdmin MySQL root user and password here DA_MYSQL=/usr/local/directadmin/conf/mysql.conf MYSQLUSER=`grep "^user=" ${DA_MYSQL} | cut -d= -f2` MYSQLPASSWORD=`grep "^passwd=" ${DA_MYSQL} | cut -d= -f2` mysql -e "use mysql; UPDATE mysql.user SET max_questions=${MAX_QUERIES_PER_HOUR}, max_updates=${MAX_UPDATES_PER_HOUR}, max_connections=${MAX_CONNECTIONS_PER_HOUR}, max_user_connections=${MAX_USER_CONNECTIONS} WHERE user!='da_admin' AND user!='root' AND user!='da_roundcube'…