sandoom mediasources


start        cloudservices     datacenter     contact     operating times         imprint    privacy



linux

shut down debian system

to shut down a running debian GNU/linux system, you should not restart the computer using the reset button on the front or back or simply switch it off. debian GNU/linux should be shut down in a controlled manner, otherwise files may be lost and/or hard drives may be damaged. if you are using a graphical desktop environment, there is usually a "logout" menu option that allows you to shut down (or restart) the system.



alternatively, you can use the key combination ctrl+alt+del. if these key combinations don't work, the last resort is to log in as root and enter the appropriate commands. use reboot to reboot the system. use halt to halt (stop) the system, but without turning off the power. to shut down the machine, use poweroff or shutdown -h now. The systemd init system provides commands that provide the same functionality, e.g. systemctl reboot or systemctl poweroff.








linux

msmtp in debian 10

this guide is intended for communication with an internal e-mail server!



Install the msmtp package



apt install msmtp

configure



nano /etc/msmtprc

# Set default values for all following accounts.
defaults
port 25
tls off
tls_trust_file /etc/ssl/certs/ca-certificates.crt

account <account name>
host <ip oder mailserver-name>
from <e-mail-adresse>
auth off
user <user>
password <user password>

# Set a default account
account default : <account name>

testen



echo -e "Subject: Test Mail\r\n\r\nDas ist eine Test-Mail" |msmtp --debug --from=foo@example.com -t bar@example.com
(from is the sending address / -t is the recipient

send mail mit PHP



change the sendmail_path option in your php.ini



sendmail_path = "/usr/bin/msmtp -C /path/to/your/config -t"



remember to set read and write permissions for both /usr/bin/msmtp (7777) and your config file (0777)



restart apache when done!



test



create a php file for this, don't forget the PHP opening and closing!



mail("your@email.com", "Test email from PHP", "msmtp as sendmail for PHP");





linux

install skype on linux

here preferably debian

download
wget https://go.skype.com/skypeforlinux-64.deb
install.
sudo apt install ./skypeforlinux-64.deb
(usually only 64 bit works!)



linux

samba on linux

$ sudo apt-get install samba
configuration
a default configuration file smb.conf is automatically created in the /etc/samba/ directory during installation. the file contains numerous valuable comments. we therefore recommend backing up the file for future reference.

move the previous configuration file:
sudo mv /etc/samba/smb.conf /etc/samba/smb.orig
create the new configuration file smb.conf:
sudo vi /etc/samba/smb.conf
create example of a simple share:
enter the following configuration in the smb.conf.

[global]
workgroup = smb
security = user
map to guest = Bad Password

[homes]
comment = home directories
browsable = no
read only = no
create mode = 0750
[public]
path = /media/storage/
public = yes
writable = yes
comment = smb share
printable = no
guest ok = yes

With this configuration you get a share called public, in this example it targets the mount point /media/storage. please note that the mount point /media/storage must have directory permissions of 777 so that all users have read and write access to it.

$sudo chmod 777 /media/storage
restart samba
for the configuration to take effect, you must restart the samba service. or you restart the server.

$ sudo systemctl restart smbd.service





linux

terminalserver with x2go

anyone who is experimenting with virtualization and terminal server solutions at home should take a look at the x2go solution. this allows you to convert any graphical linux desktop solution into a terminal server in a relatively simple manner. and it's open source! as a terminal client you can download and install applications on all systems. the ssh protocol is used for the connection.

here is a useful link: https://wiki.x2go.org/doku.php/doc:installation:x2goserver





linux

config apache2 ssl

so that the apache2 web server can handle the certificate, we activate the "ssl module".

a2enmod ssl

for the default department

a2ensite default-ssl

use.

You can find out more via google.



linux

fix debian network

adjust nano /etc/resolv.conf

e.g. b. enter

name servers 8.8.8.8

//public dns server google

check apt-get update



our topics:

> general

> cloud computing

> communications

> databases

> data backup

> hardware

> hosting

> it-sec

> prog

> software

> virtualization