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 !
Search found 48 matches
- 18 Jul 2012, 09:35
- Forum: B2 & B3 Support
- Topic: Motd
- Replies: 6
- Views: 13187
Re: Motd
On some distrubutions /etc/motd is a symlink to a file that gets overwritten at reboot, so changing it will not be persistant. Remove the symlink and create a new motd file in it's place, or put whatever information you want to display in motd.tail
- 18 Jun 2012, 06:00
- Forum: B2 & B3 Support
- Topic: bubba aptitude and maven 3
- Replies: 3
- Views: 7273
Re: bubba aptitude and maven 3
If you only want maven 3 you don't really need the deb package. Just download it from http://maven.apache.org/download.html , extract it (tar -xvf filename) and add add the bin folder to $PATH.
- 11 May 2012, 09:25
- Forum: B2 & B3 Support
- Topic: Graphical way of manipulating IPtables?
- Replies: 2
- Views: 5987
Re: Graphical way of manipulating IPtables?
I haven't tested it on bubba, but I use webmin on another box.
http://www.webmin.com/
http://www.webmin.com/
- 10 Apr 2012, 09:43
- Forum: B2 & B3 Support
- Topic: using .htaccess files
- Replies: 9
- Views: 12936
Re: using .htaccess files
Have you restarted apache after you changed "AllowOverride"?
- 06 Mar 2012, 08:55
- Forum: B2 & B3 Support
- Topic: Teamspeak 3
- Replies: 2
- Views: 5732
Re: Teamspeak 3
The B3 uses an ARM CPU and there are currently no TS3 binaries available for that architecture. If you want to run a similar service mumble is the go-to open source alternative to TS and Ventrilo afaik.
ddclient is written in perl and should work without problems: http://dyn.com/support/clients ...
ddclient is written in perl and should work without problems: http://dyn.com/support/clients ...
- 07 Feb 2012, 03:06
- Forum: B2 & B3 Support
- Topic: java runtime environment (jre) on bubba 2
- Replies: 2
- Views: 7507
Re: java runtime environment (jre) on bubba 2
Java isn't very fast on the Bubba|Two, but it's still possible to some extent. I made these notes two years ago, so I'm not entirely sure if they're up to speed anymore. They are also for the entire jdk and not just the jre:
I never got the sun jvm to work, but had success with IBMs. I downloaded ...
I never got the sun jvm to work, but had success with IBMs. I downloaded ...
- 04 Jan 2012, 03:52
- Forum: B2 & B3 Support
- Topic: End of year cleanup and performance check
- Replies: 4
- Views: 7806
Re: End of year cleanup and performance check
Once you delete a file, it's removed and the space is free, however...
Sometimes you want to delete a file that is in use. On windows you're simply not allowed, on Linux the file is deleted but the space is not reclaimed until all filehandles are closed. This is most often seen when deleting log ...
Sometimes you want to delete a file that is in use. On windows you're simply not allowed, on Linux the file is deleted but the space is not reclaimed until all filehandles are closed. This is most often seen when deleting log ...
- 28 Nov 2011, 05:02
- Forum: B2 & B3 Support
- Topic: Restore debian?
- Replies: 3
- Views: 7115
Re: Restore debian?
Network configuration is stored in /etc/network/interfaces (dns servers in /etc/resolv.conf)
If you can see the interface that no longer uses dhcp there you can comment it out with # and change it to
iface XYZ inet dhcp
where XYZ is the name of the interface. (probably eth0 or eth1)
Restart ...
If you can see the interface that no longer uses dhcp there you can comment it out with # and change it to
iface XYZ inet dhcp
where XYZ is the name of the interface. (probably eth0 or eth1)
Restart ...
- 10 Feb 2011, 07:42
- Forum: B2 & B3 Support
- Topic: How to reinstall Squeezeserver
- Replies: 2
- Views: 5622
Re: How to reinstall Squeezeserver
Try
Code: Select all
apt-get install -f
Code: Select all
apt-get install squeezecenter --reinstall
- 29 Oct 2010, 06:33
- Forum: B2 & B3 Support
- Topic: rm -rf /etc/apache2/sites-available
- Replies: 11
- Views: 16772
Re: rm -rf /etc/apache2/sites-available
the bubba entry in sites-available is just a symlink to /usr/share/bubba-frontend/apache.site, recreating it (ln -s <target> <link>) should have been enough.
The line above, 185, includes the load files. Check for those as well in /etc/apache2/mods-enabled
I would try to start apache (apache2ctl ...
The line above, 185, includes the load files. Check for those as well in /etc/apache2/mods-enabled
I would try to start apache (apache2ctl ...
- 20 Oct 2010, 05:27
- Forum: B2 & B3 Support
- Topic: Installing a windows system on B3?
- Replies: 18
- Views: 27644
Re: Installing a windows system on B3?
Not really an answer but more in the all information category, I usually just open multiple ssh sessions (Using Putty from the windows machine). 

- 11 Oct 2010, 06:37
- Forum: Bubba Server Support
- Topic: secondary DNS
- Replies: 5
- Views: 21340
Re: secondary DNS
I think they are listed in order (primary is the first one in the list.)
Failing that you could always use google public dns;
http://code.google.com/speed/public-dns/
Failing that you could always use google public dns;
http://code.google.com/speed/public-dns/
- 10 Oct 2010, 13:23
- Forum: B2 & B3 Support
- Topic: MAC Address protection on WLAN
- Replies: 10
- Views: 11812
Re: MAC Address protection on WLAN
I've never played around with iptables, but this seems pretty informative:
https://help.ubuntu.com/community/IptablesHowTo
https://help.ubuntu.com/community/IptablesHowTo
- 06 Oct 2010, 06:55
- Forum: B2 & B3 Support
- Topic: Problems with deleting files and folders.
- Replies: 5
- Views: 10697
Re: Problems with deleting files and folders.
Is there any way i can set a general permission for all the folders inside a folder?
chmod -R <permission flag> <foldername>
if you want to delete a folder and all it's content (disclaimer: be sure you're deleting the right folder)
rm -rf <foldername>
Anyway what is shell login for the ...
chmod -R <permission flag> <foldername>
if you want to delete a folder and all it's content (disclaimer: be sure you're deleting the right folder)
rm -rf <foldername>
Anyway what is shell login for the ...
- 24 Aug 2010, 03:19
- Forum: B2 & B3 Support
- Topic: Cant install phpmyadmin
- Replies: 1
- Views: 5141
Re: Cant install phpmyadmin
Etch is no longer available at the debian ftp mirrors, but it is at the archives. A minor change in the sources list should do the trick:
http://forum.excito.net/viewtopic.php?f=1&t=2406#p11430
http://forum.excito.net/viewtopic.php?f=1&t=2406#p11430