[Bug 117730] Re: cannot use sqlite3 on cifs mount

2011-08-11 Thread Bug Watch Updater
** Changed in: samba (Debian)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/117730

Title:
  cannot use sqlite3 on cifs mount

To manage notifications about this bug go to:
https://bugs.launchpad.net/samba/+bug/117730/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2011-01-01 Thread Jelmer Vernooij
** Changed in: samba (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/117730

Title:
  cannot use sqlite3 on cifs mount

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2010-05-13 Thread dkg
maihacke:  just to be clear: are you using the nobrl option to the cifs
mount on your 10.04 installation as well?

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2010-05-10 Thread maihacke
I'm using a firefox profile on a windows share mounted via pam_mount.
With Ubuntu 9.10 and using the nobrl option I could use the profile without 
problems.
After upgrading to 10.04 firefox can't read the bookmarks, history etc..

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2009-04-04 Thread Bug Watch Updater
** Changed in: samba
   Status: Confirmed = Fix Released

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2009-03-12 Thread Pedro Villavicencio
It was also forwarded upstream here:
https://bugzilla.samba.org/show_bug.cgi?id=5994 ; linking the report and
setting this to triaged, thanks all.

** Changed in: samba (Ubuntu)
   Importance: Undecided = Low
   Status: Incomplete = Triaged

** Also affects: samba via
   https://bugzilla.samba.org/show_bug.cgi?id=5994
   Importance: Unknown
   Status: Unknown

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2009-03-12 Thread Bug Watch Updater
** Changed in: samba
   Status: Unknown = Confirmed

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2008-05-30 Thread Mathias Gug
** Also affects: samba (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=483507
   Importance: Unknown
   Status: Unknown

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2008-05-27 Thread Mathias Gug
Could you post the commands you've used to create the sqlite database ?

Could you also add which version of samba is running on the server ?

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2008-05-27 Thread dkg
I created the database like this:

  echo 'create table foo (x int); insert into foo (x) values (1);' |
sqlite3 testdb

and tested it like this:

  echo 'select * from foo;' | sqlite3 testdb

This worked fine on a tmpfs, but not on a cifsmount.  I've tested this
against a debian etch samba version (3.0.24-6etch9) -- previous versions
seem to fail as well, but the etch version of samba is the most recent
i've tested.

[0 [EMAIL PROTECTED] ~]$ mount | egrep '/(tmp|mnt)'
/tmp on /tmp type tmpfs (rw,nosuid,nodev)
//bob/dmz on /mnt type cifs 
(rw,mand,unc=\\bob\dmz,username=,uid=1000,posixpaths,rsize=16384,wsize=57344)
[0 [EMAIL PROTECTED] ~]$ rm -f /tmp/testdb 
[0 [EMAIL PROTECTED] ~]$ echo 'create table foo (x int); insert into foo (x) 
values (1);' | sqlite3 /tmp/testdb
[0 [EMAIL PROTECTED] ~]$ echo 'select * from foo;' | sqlite3 /tmp/testdb
1
[0 [EMAIL PROTECTED] ~]$ cp /tmp/testdb /mnt/testdb
cp: overwrite `/mnt/testdb'? y
[0 [EMAIL PROTECTED] ~]$ echo 'select * from foo;' | sqlite3 /mnt/testdb
1
[0 [EMAIL PROTECTED] ~]$ echo 'insert into foo (x) values (2);' | sqlite3 
/mnt/testdb
SQL error near line 1: database is locked
[1 [EMAIL PROTECTED] ~]$

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 117730] Re: cannot use sqlite3 on cifs mount

2008-05-12 Thread Mathias Gug
Reopening.

** Changed in: samba (Ubuntu)
   Status: Fix Released = Incomplete

-- 
cannot use sqlite3 on cifs mount
https://bugs.launchpad.net/bugs/117730
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs