Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

XBian DEVEL and STAGING repositories
Thank you for your donation

Pages (8): « Previous 1 2 3 4 5 ... 8 Next »
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
XBian DEVEL and STAGING repositories
16th Jan, 2014, 10:42 AM
Post: #31
f1vefour Offline
Administrator
******
Posts: 1,342
Joined: Mar 2013
Reputation: 58
Re: RE: XBian DEVEL and STAGING repositories
(11th Jan, 2014 07:45 PM)CurlyMo Wrote:  I'm on the latest devel branch and all working fine to date.

+1 great work xbian devs

Please read rules and do a search before you post! | FAQs | How to post log file? | Can't find an answer? Contact us.
Visit this user's website Find all posts by this user
Quote this message in a reply
17th Jan, 2014, 07:35 AM
Post: #32
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: XBian DEVEL and STAGING repositories
I installed the latest updates to date and now have issues with my samba share that constantly gets unmounted...

Code:
Inst xbian-package-initramfs-tools [1.3.3-3a] (1.3.3-4a XBian devel repository:devel [armhf])
Conf xbian-package-initramfs-tools (1.3.3-4a XBian devel repository:devel [armhf])
Inst xbian-package-upstart-xbmc-bridge [1.1.0-5] (1.1.0-6 XBian devel repository:devel [armhf])
Conf xbian-package-upstart-xbmc-bridge (1.1.0-6 XBian devel repository:devel [armhf])
Inst xbian-package-xbmc-scripts [1.0.1-20] (1.0.1-23 XBian devel repository:devel [armhf])
Conf xbian-package-xbmc-scripts (1.0.1-23 XBian devel repository:devel [armhf])
Inst autofs (5.0.7-3 Raspbian:7.0/stable [armhf])
Conf autofs (5.0.7-3 Raspbian:7.0/stable [armhf])
Inst xbian-update [1.0.2-15b] (1.0.2-16a XBian devel repository:devel [armhf])
Conf xbian-update (1.0.2-16a XBian devel repository:devel [armhf])

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
17th Jan, 2014, 08:02 AM
Post: #33
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: XBian DEVEL and STAGING repositories
and mounted again as soon as you access it

http://forum.xbian.org/thread-1770-post-19990.html#pid19990

/etc/default/autofs
TIMEOUT=0 will disable umount

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
17th Jan, 2014, 03:09 PM
Post: #34
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: XBian DEVEL and STAGING repositories
Much of my programs fail because of this (default) feature.

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
17th Jan, 2014, 04:55 PM
Post: #35
Smultie Offline
Moderator
******
Posts: 322
Joined: Feb 2013
Reputation: 16
RE: XBian DEVEL and STAGING repositories
I can't access the Pi's SMB-shares in OSX since last updates as well.
Find all posts by this user
Quote this message in a reply
17th Jan, 2014, 06:24 PM
Post: #36
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
XBian DEVEL and STAGING repositories
(17th Jan, 2014 03:09 PM)CurlyMo Wrote:  Much of my programs fail because of this (default) feature.

what should be the error ?

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
18th Jan, 2014, 01:05 AM
Post: #37
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: XBian DEVEL and STAGING repositories
Unable to reach the samba shares.

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
18th Jan, 2014, 03:46 AM
Post: #38
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: XBian DEVEL and STAGING repositories
Latests issues.
- SSHD doesn't autostart.
- Samba shares don't get mounted on boot, even when autofs timeout=0.
Mount -a doesn't work after boot. I first need to unmount my samba shares.
- Can you please remove the feature that comments the initramfs from the config.txt?

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
19th Jan, 2014, 03:00 AM
Post: #39
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: XBian DEVEL and STAGING repositories
(18th Jan, 2014 03:46 AM)CurlyMo Wrote:  Latests issues.
1. - SSHD doesn't autostart.
2. - Samba shares don't get mounted on boot, even when autofs timeout=0.
Mount -a doesn't work after boot. I first need to unmount my samba shares.
3. - Can you please remove the feature that comments the initramfs from the config.txt?

3. no, but you can force to stay on (/etc/default/xbian-initramfs with FORCEINITRAM=yes)
2. timeout=0 is saying not to unmount when mount are idle. you was describing that your shares gets unmounted. timeout=0 is solution to this. post
Code:
grep cifs /etc/fstab /etc/auto.master.d/auto.xbian
1. if it is not started, how do you start it later ?

in regards to point 2

remove "noatime" from /etc/auto.master.d/xbian.autofs (1st line at the end)

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
19th Jan, 2014, 05:26 AM
Post: #40
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
Re: XBian DEVEL and STAGING repositories
2. that didn't work. I will try your other suggestion later.
1. By using vnc and then:
/usr/sbin/sshd
Not sure about the exact path.

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
19th Jan, 2014, 07:16 AM
Post: #41
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: XBian DEVEL and STAGING repositories
post /run/upstart-ev.log

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
19th Jan, 2014, 10:17 AM
Post: #42
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: XBian DEVEL and STAGING repositories
@all

samba and ssh not being started this is fixed - config-shell package was updating inetd.conf wrongly, making inetd.conf finally empty file.

latest xbian-config can recreate the correct entries by simply enabling the service again. as it realizes there is no config file, it will recreate it.

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
19th Jan, 2014, 09:11 PM
Post: #43
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: XBian DEVEL and STAGING repositories
When installing the latest xbian-package-config-shell:
Terminal

msgfmt: error while opening "/usr/local/include/xbian-config/gettext/xbian.nl.po" for reading: No such file or directory

xbian-update:
Terminal

/var/lib/dpkg/info/xbian-update.postinst: line 736: /home/xbian/.xbmc/userdata/advancedsettings.xml: Permission denied

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
19th Jan, 2014, 09:25 PM
Post: #44
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: XBian DEVEL and STAGING repositories
(19th Jan, 2014 09:11 PM)CurlyMo Wrote:  When installing the latest xbian-package-config-shell:
Terminal

msgfmt: error while opening "/usr/local/include/xbian-config/gettext/xbian.nl.po" for reading: No such file or directory

xbian-update:
Terminal

/var/lib/dpkg/info/xbian-update.postinst: line 736: /home/xbian/.xbmc/userdata/advancedsettings.xml: Permission denied

1. NL language is prepared (awaiting lang file) and this way reminding me I should do it.

2. you have it accessible via smb, symlink and for xbian user only? that part of postinst is there since pre-B2 ages. but I can hide the errors, if it bothers you Smile

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
19th Jan, 2014, 09:57 PM
Post: #45
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: XBian DEVEL and STAGING repositories
2. it's indeed a symlink. Just hide the error.

The other errors are gone. System just started without issues with the latest packages.

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Pages (8): « Previous 1 2 3 4 5 ... 8 Next »
Post Reply 


Possibly Related Threads...
Thread: Author Replies Views: Last Post
Question [RPi] Staging xbian-package-xbmc (14.1~RC1) (Kodi) CurlyMo 17 43,427 19th Feb, 2015 06:31 AM
Last Post: CurlyMo
Question [RPi] Staging xbian-package-kernel (3.17.7-ck2+) CurlyMo 5 14,616 13th Feb, 2015 12:33 AM
Last Post: f1vefour
Question [RPi] Staging xbian-package-firmware (1.5.1) CurlyMo 3 12,566 7th Feb, 2015 08:23 PM
Last Post: CurlyMo

  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:

Current time: 14th May, 2025, 08:13 PM Powered By MyBB, © 2002-2025 MyBB Group.