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

by Kiff
16 Apr 2010, 07:55
Forum: B2 & B3 Support
Topic: Error after first update
Replies: 9
Views: 11704

Re: Error after first update

also check the file /etc/hostname (not hosts) and see that it has a name, to prevent potential problems further down the road :)
by Kiff
16 Apr 2010, 07:37
Forum: B2 & B3 Support
Topic: Error after first update
Replies: 9
Views: 11704

Re: Error after first update

Any error messages in /var/log/dpkg.log?

Edit: The script might require hostname to be set. Make sure that a name (default is "bubba" without "") is set in the file /etc/hostname
by Kiff
16 Apr 2010, 07:20
Forum: B2 & B3 Support
Topic: Error after first update
Replies: 9
Views: 11704

Re: Error after first update

Try

Code: Select all

# apt-get -f install
# dpkg --configure -a 
(source: http://www.us.debian.org/doc/manuals/ap ... ros-comuns)
by Kiff
15 Apr 2010, 09:18
Forum: B2 & B3 Support
Topic: åäö in emacs, or emacs23
Replies: 2
Views: 4751

Re: åäö in emacs, or emacs23

Regarding 2, If you can't find it in any repository and really want it, you can install it from source. (as root) apt-get install make gcc g++ libncurses5-dev wget http://ftp.gnu.org/pub/gnu/emacs/emacs-23.1.tar.gz tar -xvf emacs-23.1.tar.gz cd emacs-23.1 ./configure --without-x --without-makeinfo m...
by Kiff
08 Apr 2010, 02:47
Forum: B2 & B3 Support
Topic: how do i unzip a file? [SOLVED]
Replies: 4
Views: 6707

Re: how do i unzip a file?

Code: Select all

> apt-get install unzip
by Kiff
22 Mar 2010, 07:30
Forum: My Bubba
Topic: How to make an identical copy of dirs with spaces?
Replies: 5
Views: 9128

Re: How to make an identical copy of dirs with spaces?

I think rsync is the usual way to go, but I have never set it up myself. http://everythinglinux.org/rsync/
by Kiff
16 Mar 2010, 08:55
Forum: B2 & B3 Support
Topic: Force Bubba to use https
Replies: 14
Views: 28579

Re: Force Bubba to use https

We know that mod rewrite is loaded, but either the config is not read, or it doesn't work as it should. .htaccess files are per directory configuration snippets, which means that they only work for that directory. If you are going to redirect all requests to https you have to set the rewrite rules t...
by Kiff
16 Mar 2010, 04:26
Forum: B2 & B3 Support
Topic: Force Bubba to use https
Replies: 14
Views: 28579

Re: Force Bubba to use https

Make sure you have something as follows in httpd.conf (mod_rewrite support): LoadModule rewrite_module modules/mod_rewrite.so The load line is available in /etc/apache2/mods-available Using the command "a2enmod rewrite" should make a symlink from mods-available to mods-enabled. While the ...
by Kiff
11 Mar 2010, 03:19
Forum: B2 & B3 Support
Topic: Force Bubba to use https
Replies: 14
Views: 28579

Re: Force Bubba to use https

modrewrite should already be enabled, but use the command "a2enmod rewrite" to be sure. Try setting the rewrite in /etc/apace2/apache2.conf, before the virtual host config is loaded (last line). (I think this one looks the most tidy) RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (....
by Kiff
26 Feb 2010, 13:28
Forum: Bubba Server Support
Topic: Ventrilo?
Replies: 10
Views: 25057

Re: Ventrilo?

The ventrilo binaries are compiled for a different cpu architecture, and (most likely) won't work.
by Kiff
22 Feb 2010, 03:41
Forum: Howtos
Topic: Wake on LAN
Replies: 10
Views: 28884

Re: Wake on LAN

I used wakeonlan instead of etherwake. I don't know if there's any big difference, but wakeonlan did not require me to log in as root.
by Kiff
20 Feb 2010, 17:39
Forum: B2 & B3 Support
Topic: mod_rewrite and AllowOverride
Replies: 4
Views: 6249

Re: mod_rewrite and AllowOverride

I think it has to be enabled within a directory directive; (in apache2.conf or the virtual hosts files)

<Directory /path/to/files>
AllowOverride all
</Directory>
by Kiff
20 Feb 2010, 16:51
Forum: B2 & B3 Support
Topic: mod_rewrite and AllowOverride
Replies: 4
Views: 6249

Re: mod_rewrite and AllowOverride

Hi, enabled mods are found in /etc/apache2/mods-enabled (available mods are in mods-available). To enable a mod use the command

Code: Select all

a2enmod modname
and then restart apache with

Code: Select all

apache2ctl restart
(mod_rewrite is enabled by default)

Edit: also, apache2.conf is used instead of httpd.conf
by Kiff
19 Feb 2010, 02:37
Forum: B2 & B3 Support
Topic: cannot log into horde
Replies: 13
Views: 14827

Re: cannot log into horde

Use the following command at the shell to set the password to empty (note the double ' at the end)

Code: Select all

mysqladmin -u root -p'oldpassword' password ''
by Kiff
18 Feb 2010, 04:16
Forum: B2 & B3 Support
Topic: cannot log into horde
Replies: 13
Views: 14827

Re: cannot log into horde

Try to set the mysql root password to blank while performing the upgrade.