SAMBA MINT20 global setup between WINX and UBUNTU

 <SOLVED> Samba file sharing using the file manager works between three local network Linux machines running Mint 20, Mint 19.2, and Ubuntu 18.04 with these conditions:

1. The [global] section of the/etc/samba/smb.conf file on each machine must be configured as shown below:
2. Connections originating from the Mint 20 file manager must use the file manager command line with the command "smb://<ip address>/share-name".
3. The /etc/hosts file on each machine must include the host name/ip address of the other two machines.
4. You must create a samba user/password on each machine using the command "sudo smbpasswd -a username".

Mint 20:

Code: Select all

   workgroup = WORKGROUP
   name resolve order = bcast host lmhosts wins
   usershare owner only = false
   client min protocol = NT1
   server min protocol = NT1


Mint 19.2

Code: Select all

   workgroup = WORKGROUP
   name resolve order = bcast host lmhosts wins
   usershare owner only = false
   client max protocol = NT1


Ubuntu 18.04 LTS

Code: Select all

   workgroup = WORKGROUP
   name resolve order = bcast host lmhosts wins
   usershare owner only = false
   client max protocol = NT1

That worked for me!!
Last edited by woverst53 on Thu Jul 16, 2020 5:00 pm, edited 1 time in total.
Top

 

source: https://forums.linuxmint.com/viewtopic.php?f=47&t=324431

Run 32bit on 64 bit ubuntu Bash: No such file or directory?

 How to fix -bash: No such file or directory

The file command will tell you just what this binary is. With a few exceptions, you can only run a binary for the processor architecture that your release of Ubuntu is for. The main exception is that you can run 32-bit (x86, a.k.a. IA32) binaries on 64-bit (amd64, a.k.a. x86_64) systems.


example

file lsnrctl

lsnrctl: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.15, BuildID[sha1]=1d73dbf9105a55d21a6e36b50019591f75e04a49, with debug_info, not stripped
 

Solve it with add 32bit architecture

sudo apt-get install ia32-libs

 

 source : https://askubuntu.com/questions/133389/no-such-file-or-directory-but-the-file-exists

https://support.humblebundle.com/hc/en-us/articles/202759400-Installing-32-bit-libs-on-a-64-bit-Linux-system