Ir al contenido principal

Configurar Samba

 Instalacion y Configuracion de Samba - Linux



  • Instalar samba sudo apt install samba
  • Acceder al archivo de configuracion sudo nano /etc/samba/smb.conf
  • Agregar en la ultima parte del archivo:
    • [Compartido]
      path = /home/user/Documentos/Compartido/
      browseable = yes
      guest ok = yes
      guest only = no
      public = yes
      create mask = 0775
      create mode = 0775
      directory mask = 0775
  • Guardar y Reiniciar el servicio sudo systemctl restart nmbd smbd
  • Habilitar puertos de firewall
    • sudo ufw allow 139/tcp
      sudo ufw allow 445/tcp
      sudo ufw allow 137/udp
      sudo ufw allow 138/udp

Comentarios

Populares🔥

Install Dspace 7.6 on Ubuntu 22.04 LTS

Install Dspace 7.6 on Ubuntu 22.04 LTS   Prerequisite software: i ) Java JDK ii ) Apache Maven iii ) Apache Ant iv ) Apache Tomcat v ) PostgreSQL vi ) Solr vii ) Dspace 7.6 – backend viii ) Dspace-angular 7.6 – frontend ix ) Node.js x ) Node Version Manager ( NVM ) xi ) Yarn xii ) nano ( text editor software ) Note: It is highly recommended to install Dspace7 on fresh installed Linux-based operating system. It may not be compatible with the Virtual box platform. ( Note the red mark lines are the commands that need to be executed on the terminal ) Open the terminal by pressing (Ctrl+Alt+T) or go to Applications > Accessories > Terminal and select it for executing the below command. First update and upgrade your package system sudo apt update && sudo apt upgrade -y Create a Dspace user with password sudo useradd -m dspace sudo passwd dspace [Give password, for ex. “dspace”] Add dspace u...