SMS Sender – Automate Your SMS Discover SMS Sender! Tired of manually sending SMS for your personal or business needs? SMS Sender is the solution for you! With SMS Sender, you can easily automate SMS sending through its integrated web server. A single REST call is all you need to send messages quickly and efficiently.…
Read more
FindCmdLineSwitch al posto di ParamStr
Tested on: Ubuntu 22.04 Default php version is 8.1 and we want install php 7.4 Ondrej PPA contains PHP 8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0 & PHP 5.6 packages. First update the system
1 |
sudo apt update && sudo apt upgrade |
1. Check Active PHP Version
1 |
php -v |
2. Install php on system Set the required PPA wich contains any…
Read more
Helpers are a way to extend a class without using inheritance, which is also useful for records that don’t allow inheritance at all. Official documentation is available at: https://docwiki.embarcadero.com/RADStudio/Sydney/en/Class_and_Record_Helpers_(Delphi). I often found myself creating code to export a dataset or a single record with its values in an SQL statement, and every time I wrote…
Read more
Install samba server:
1 |
sudo apt install samba |
backup config filee:
1 |
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_backup |
create a shared folder for your user, like:
1 |
mkdir /home/<username>/mmyshare |
edit samba config file:
1 |
nano /etc/samba/smb.conf |
replace all smb.conf with this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
[global] workgroup = WORKGROUP server string = %h server (Samba, Ubuntu) log file = /var/log/samba/log.%m max log size = 1000 logging = file panic action = /usr/share/samba/panic-action %d server role = standalone server obey pam restrictions = yes unix password sync = yes passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdate$ pam password change = yes map to guest = bad user usershare allow guests = yes [printers] comment = All Printers browseable = no path = /var/spool/samba printable = yes guest ok = no read only = yes create mask = 0700 [print$] comment = Printer Drivers path = /var/lib/samba/printers browseable = yes read only = yes guest ok = no [mysharename] comment = public anonymous access path = /home/<username>/mmyshare browsable =yes create mask = 0660 directory mask = 0771 writable = yes guest ok = no |
restart samba:
1 |
sudo systemctl restart smbd |
associarte a samba password to your systemm user:
1 |
sudo smbpasswd -a <username> |
restart samba:
1 |
sudo systemctl restart smbd |
Mount your share in MS Windows via shell by create a new…
Read more