Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - gionko

Pages: [1]
1
Installation and Upgrades / Android tethering USB on Zentyal 3.3
« on: March 11, 2014, 01:05:57 pm »
Hi,
i have a Zentyal 3.3 x64 on quadCore PC with 3 Ethernet Card, and a Galaxy S3 mobile phone with Android 4.3.
On Windows 7, I connect my mobile phone with USB cable, enable Tethering (USB) Mode, and i can access to internet.

It's possible to connect Android Phone on Zentyal 3.3 and configure usb0 like eth0 or other ethernet card to sharing internet connection over lan?
Generally Android USB Tethering works on Ubuntu 12.04, and you can configure usb0 like ethernet card via ifconfig usb0.

I would like to see on "interfaces" web page: eth0, eth1, eth2 and usb0 with classic options: internal network, external network...

2
Installation and Upgrades / Re: Zentyal 3.2.4 upgrade Samba4
« on: November 12, 2013, 02:52:50 pm »
To downgrade samba to previous version:

First add a experimental repository where this version can be found (ppa:kernevil/zentyal-experimental):

Code: [Select]
apt-get install -y python-software-properties && add-apt-repository ppa:kernevil/zentyal-experimental && sudo apt-get update
(the command above also installs unattended-upgrades - I don't know if this a problem).

With the new repository set, run the following:

Code: [Select]
apt-get install samba4=4.1.0rc4-zentyal4
It worked immediately for me.

Regards,
Adelson

Tnx for your help!

3
Installation and Upgrades / Re: Zentyal 3.2.4 upgrade Samba4
« on: November 12, 2013, 01:48:50 pm »
Hi,

i have the same problem.
I have deaktivated 'File Sharing' under 'Modules'. Now Zentyal is running without problems. Its only a workarount, no solution.

Your workaround works! Now Domain, proxy, and webmail works again. Now we waiting to file-sharing fix :) Tnx for your tips :)

4
Installation and Upgrades / Re: Zentyal 3.2.4 upgrade Samba4
« on: November 12, 2013, 01:13:51 pm »
Just FYI: a downgrade to samba4_4.1.0rc4-zentyal4 helped me to get samba running again. While I did not notice any immidiate implications, take note to downgrade at your own risk.

how did you do to donwgrade samba? Because i have same problem :/

5
LoL! I have a solution.
mount.cifs + krb (Kerberos) require "keyutils" package for work... It's required for kerberos-authenticated mounts for mount.cifs, and it is not installed by default!

First step:
Code: [Select]
sudo apt-get install keyutils
At this time if you try to execute sudo mount.cifs //home.gionko/public /mnt/public -o credentials=/root/.servercred,sec=krb5 --verbose, you recive:
Code: [Select]
mount.cifs kernel mount options: ip=10.139.0.128,unc=\\home.gionko\public,credentials=/root/.servercred,sec=krb5,ver=1,user='gionko',domain='HOME-GIONKO',pass=********
mount error(126): Required key not available
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

... and this is amazing: smbclient works well, but CIFS mount won't work if the netbios name is different from host name, in my case, i must change "//home.gionko/public" in to "//gateway/public"

At the end... all works well :)

6
Hi all,

I riceve this error when i try to mount a share folder on Zentyal 3.2:
Code: [Select]
mount.cifs kernel mount options: ip=10.139.0.128,unc=\\home.gionko\public,credentials=/root/.servercred,sec=krb5,ver=1,user='gionko',domain='HOME-GIONKO',pass=********
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

the command line is:
Code: [Select]
sudo mount.cifs //home.gionko/public /mnt/public -o credentials=/root/.servercred,sec=krb5 --verbose
I have a Zentyal 3.2:
Code: [Select]
uname -a
Linux gateway 3.8.0-32-generic #47~precise1-Ubuntu SMP Wed Oct 2 16:19:35 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

samba --version
Version 4.1.0rc4

mount.cifs -V
mount.cifs version: 5.1

obviously the directory /mnt/public exist and i can access to //home.gionko/public from my Windows Workstation with user "gionko", without problem. Any idea?

Pages: [1]