Please note the new address for this forum : forum.excito.org. The old address redirects here but I don't know for how long. Thanks !
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
bubba.local not resolved
-
- Posts: 15
- Joined: 16 Apr 2010, 05:17
bubba.local not resolved
Hi,
I've been using my B2 for two years now and it is still working fine. However, since last week, the http://bubba.local doesn't resolve anymore so I have to use the ip-address. Also on my MacBook I cannot access the smb mount anymore.
Any ideas on how to solve this?
Thanks in advance,
Marco
I've been using my B2 for two years now and it is still working fine. However, since last week, the http://bubba.local doesn't resolve anymore so I have to use the ip-address. Also on my MacBook I cannot access the smb mount anymore.
Any ideas on how to solve this?
Thanks in advance,
Marco
Re: bubba.local not resolved
First thing I'd try would be restarting samba (ssh into the machine and run "/etc/init.d/samba restart"). If that doesn't help, check the logs in /var/log/samba, maybe they say something about what's wrong.
/Daniel
/Daniel
-
- Posts: 15
- Joined: 16 Apr 2010, 05:17
Re: bubba.local not resolved
Thanks Daniel, although I'm not sure what to look for in the log. I also restarted the samba before, with no result. But when now using the afp to connect to a share, the smb seems to work again also.
Besides that, the http://bubba.local still doesn't resolve. But that ofcourse has nothing to do with the samba issue.
Besides that, the http://bubba.local still doesn't resolve. But that ofcourse has nothing to do with the samba issue.
Re: bubba.local not resolved
you could try to restart your avahi-daemon
ssh into the machine and run /etc/init.d/avahi-daemon restart
ssh into the machine and run /etc/init.d/avahi-daemon restart
cheers
Eek
Eek
-
- Posts: 15
- Joined: 16 Apr 2010, 05:17
Re: bubba.local not resolved
Hi Eek,
Thanks for the suggestion. I tried restarting the avahi-deamon, but it fails. Where to go from here?
Thanks for the suggestion. I tried restarting the avahi-deamon, but it fails. Where to go from here?
Re: bubba.local not resolved
you can check or post the log information in the file /var/log/syslog
should be something in there that looks like
should be something in there that looks like
Code: Select all
Jun 17 16:37:11 bubba avahi-daemon[2214]: avahi-daemon 0.6.16 starting up.
cheers
Eek
Eek
-
- Posts: 15
- Joined: 16 Apr 2010, 05:17
Re: bubba.local not resolved
I found some lines:
That's all it is saying about it. I might have to clear some space, but as I'm no linux man I wouldn't know what to clear.
Code: Select all
Jun 17 16:16:45 bubba avahi-daemon[21603]: Found user 'avahi' (UID 109) and group 'avahi' (GID 111).
Jun 17 16:16:45 bubba avahi-daemon[21603]: Successfully dropped root privileges.
Jun 17 16:16:45 bubba avahi-daemon[21603]: write(): No space left on device
Jun 17 16:16:45 bubba avahi-daemon[21603]: Failed to create PID file: No space left on device
-
- Posts: 15
- Joined: 16 Apr 2010, 05:17
Re: bubba.local not resolved
That give's me the following:
Code: Select all
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 9621848 9421452 0 100% /
tmpfs 127900 0 127900 0% /lib/init/rw
udev 10240 24 10216 1% /dev
tmpfs 127900 4 127896 1% /dev/shm
/dev/mapper/bubba-storage
950669364 42960328 859417812 5% /home
-
- Posts: 904
- Joined: 09 Oct 2009, 18:49
Re: bubba.local not resolved
For starters run from the command line and have a look if any disks are full.
Also, /tmp is a likely suspect so run and see what it reports as the size.
Code: Select all
df -h
Also, /tmp is a likely suspect so run
Code: Select all
du -hs /tmp
Re: bubba.local not resolved
Your disk is full
You can see what are the biggest files
You can see what are the biggest files
Code: Select all
cd /
du -k .|sort -n
cheers
Eek
Eek
-
- Posts: 15
- Joined: 16 Apr 2010, 05:17
Re: bubba.local not resolved
Thanks for the info. The sorted by filesize also returns files on my storage volumes, while I think I need to clear space on the system volume (but not really sure). Looking at the result of the filesystem:
It says I have around 850GB of space available, but on the /dev/sda1 there's none left. So how and what can I clear there?
Code: Select all
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 9621848 9421452 0 100% /
tmpfs 127900 0 127900 0% /lib/init/rw
udev 10240 24 10216 1% /dev
tmpfs 127900 4 127896 1% /dev/shm
/dev/mapper/bubba-storage
950669364 42960328 859417812 5% /home
Re: bubba.local not resolved
Just delete some big files from the sorted list
Probably files in the directories /tmp or /var/log
Code: Select all
cd /
du -k . | sort -n | grep -v \/home
cheers
Eek
Eek
Re: bubba.local not resolved
Yes, there is enough space on the samba shares or /home mount
cheers
Eek
Eek
-
- Posts: 15
- Joined: 16 Apr 2010, 05:17
Re: bubba.local not resolved
Thanks for all the help Eek. I cleared the maildrop using Now I have 85% free space again.
Do I really need the maildrop? Or is there a way to regulate the files created?
Code: Select all
postsuper -d ALL -v
Do I really need the maildrop? Or is there a way to regulate the files created?