Pantek Library
Hosting Provided By
CybrHost
High Speed Hosting

debian-user-digest Digest V2007 #1871

From: <debian-user-digest-request(at)lists.debian.org>
Date: Sat Jun 30 2007 - 14:10:08 EDT


Content-Type: text/plain

debian-user-digest Digest Volume 2007 : Issue 1871

Today's Topics:

  Apache: The requested URL / was not   [ Michael Pobega  ]
  Re: running iceweasel on remote host  [ Liam O'Toole  ]
  libktable-dev and tktable-dev         [ "Michael Fothergill"  ]
  USB Stick mount                       [ =?iso-8859-15?q?Benjam=ED_Villoslad ]
  Re: Aptitude can't upgrade Apt!       [ Florian Kulzer  ]
  Re: FileSystem Question               [ "Manon Metten"  ]

Date: Sat, 30 Jun 2007 08:40:46 -0400
From: Michael Pobega <pobega@gmail.com>
To: debian-user@lists.debian.org
Subject: Apache: The requested URL / was not found on this server.

Message-ID: <20070630124046.GA5812@digital-haze.net>
Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed
Content-Disposition: inline

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Thursday afternoon I reinstalled my i386 Debian installation as amd64 (To compliment my Core 2 Duo), and everything's been working pretty good so far (Minus 3d rendering, but that's another story), but I'm having one serious problem in Apache.

I reinstalled Apache2 and libapache2-mod-php5, and restored my old /etc/apache2 configuration files, but I'm getting the error

Do you need help?X

> The requested URL / was not found on this server.

If you need any of my configuration files just ask, the only one that I figure would effect anything would be
/etc/apache2/sites-available/default, so here is my config:

        /etc/apache2/sites-available/default
> NameVirtualHost *
> <VirtualHost *>
> ServerAdmin pobega@gmail.com
>
> DocumentRoot /var/www/
> <Directory />
> Options FollowSymLinks
> AllowOverride
> None
> </Directory>
> <Directory /var/www/>
> Options Indexes FollowSymLinks MultiViews
> AllowOverride None
> Order
> allow,deny
> allow from all
> </Directory>
> [...] (There's more here, but it's all the default, I
> only changed the above)

  • -- http://digital-haze.net/~pobega/ - My Website If programmers deserve to be rewarded for creating innovative programs, by the same token they deserve to be punished if they restrict the use of these programs.
    • Richard Stallman -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFGhk9Og6qL2BGnx4QRAlARAJ95yWrPNL1CCPXOf+yDjfHhyuvrlgCfe1AE ZMHfFVHOBk3u+LPI1tfVSDs=
=Vn1o
-----END PGP SIGNATURE-----

Date: Sat, 30 Jun 2007 14:04:15 +0100
From: Liam O'Toole <liam.p.otoole@gmail.com> To: debian-user@lists.debian.org
Subject: Re: running iceweasel on remote host seems wrong

Message-ID:  <20070630140415.64eca6a7@po>
Content-Type:  text/plain; charset=US-ASCII
Content-Transfer-Encoding:  7bit

On Sat, 30 Jun 2007 13:15:49 +0200
Miernik <public@miernik.name> wrote:

> Strange problem. I have two debian machines, one local at home, and
> one remote somewhere. At home I am connected behind a NAT, and the
> remote machine has a public IP.
>
> I want to run iceweasel on the remote machine, and let it display on
> my local machine. I have iceweasels installed on both machines.
>
> So from the local machine I do:
>
> ssh -Cv user@remote.machine.name.tld -X
>
> After a while I get a prompt of the remote machine, looks OK, ls gives
> me listing of files on that machine.
>
> env shows DISPLAY=localhost:10.0
>
> So I run 'iceweasel' there. And after some time I get it displayed,
> but... it seems that it runs it somehow on my local machine, for
> example file:///
> displays the root directory of my local machine, not the remote one,
> and when I browse, with tcpdump I see HTTP traffic, and not SSH
> traffic as I expected.
>
> I don't understand it. How I am supposed to run iceweasel on the
> remote machine (using only the local display), so it would work as it
> would be sitting at the remote machine?
>

Is iceweasel already running on the local machine when you start iceweasel on the remote machine? If so, then the remote instance opens a new window in the local instance, then exits. You can prevent that behaviour by closing the local instance first, or by launching the remote instance with the '-no-remote' option.

-- 

Liam

Date: Sat, 30 Jun 2007 15:24:08 +0200 From: Rodolfo Medina <rodolfo.medina@gmail.com> To: debian-user@lists.debian.org Subject: Re: How to move the master boot record? Message-ID: <877iplwp6v.fsf@gmail.com> Content-Type: text/plain; charset=us-ascii Rodolfo Medina <rodolfo.medina@gmail.com> wrote: >> On my PC, besides the swap partition, I have one partition, hda1, for MS >> Windows and another five for Linux: hda6, had7, hda8, hda9, hda10. >> >> At the moment the `boot partition' is hda6 and I want it to be, say, hda9. >> Sorry if I can'y use the right words. Maybe I should say that the hda6 >> Grub boot loader is now installed to the master boot record of my hard >> drive whereas the hda9 boot loader is installed to the /dev/hda9 partition? Joe Hart <j.hart@orange.nl> writes:
> There are more than one way to do this, but this will (should) work:
>
> #grub
> grub>root (hd0,8)
> grub>setup (hd0)
> grub>quit
>
> hd0,8 = /dev/hda9, so you should be alright with those command. Note that
> the # and the grub> are the prompts.
I tested it and it seems to work fine. Only, I can't now restore the previous situation: I do: # grub grub > root (hd0,5) grub > setup (hd0) grub > quit , then reboot but the system can't get into hda6. It's strange, I find no reason why it works with hda9 and not with hda6. Please, any ideas? Thanks, Rodolfo

Date: Sat, 30 Jun 2007 15:47:24 +0200 From: Joe Hart <j.hart@orange.nl> To: debian-user@lists.debian.org Subject: Re: How to move the master boot record? Message-Id: <200706301547.24720.j.hart@orange.nl> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Saturday 30 June 2007 15:24:08 Rodolfo Medina wrote:
> Rodolfo Medina <rodolfo.medina@gmail.com> wrote:
> >> On my PC, besides the swap partition, I have one partition, hda1, for MS
> >> Windows and another five for Linux: hda6, had7, hda8, hda9, hda10.
> >>
> >> At the moment the `boot partition' is hda6 and I want it to be, say,
> >> hda9. Sorry if I can'y use the right words. Maybe I should say that the
> >> hda6 Grub boot loader is now installed to the master boot record of my
> >> hard drive whereas the hda9 boot loader is installed to the /dev/hda9
> >> partition?
>
> Joe Hart <j.hart@orange.nl> writes:
> > There are more than one way to do this, but this will (should) work:
> >
> > #grub
> > grub>root (hd0,8)
> > grub>setup (hd0)
> > grub>quit
> >
> > hd0,8 = /dev/hda9, so you should be alright with those command. Note
> > that the # and the grub> are the prompts.
>
> I tested it and it seems to work fine. Only, I can't now restore the
> previous situation: I do:
>
> # grub
> grub > root (hd0,5)
> grub > setup (hd0)
> grub > quit
>
> , then reboot but the system can't get into hda6. It's strange, I find no
> reason why it works with hda9 and not with hda6. Please, any ideas?
>
> Thanks,
> Rodolfo
No idea. If it works for /dev/hda9. then (providing the right files are on the partition) then /dev/hda6 should work fine, and you're correct in calling it (hd0,5). The only thing I can think of is that the files that grub needs are missing, but to be honest, it really doesn't matter where grub is sitting, as long as you can tell it where to find all the different OS's on your machine, then you're good to go. So, in short, I don't quite understand why you're trying to do all this in the first place. As already mentioned, installing Etch will automatically find the other systems and put them in the grub menu. Joe

Date: Sat, 30 Jun 2007 15:34:13 +0000 From: "Michael Fothergill" <mikef20000@hotmail.com> To: debian-user@lists.debian.org Subject: libktable-dev and tktable-dev Message-ID: <BAY104-F2119DB87090F34D111A2C9910F0@phx.gbl> Content-Type: text/plain; format=flowed Dear Debianists, What is the difference between libtktable-dev in Ubuntu and tktable-dev in Debian? Are they pretty much the same package but with a name change or is their something more subtle going on here? I can't seem to find libtktable-dev in the Debian package world. Regards Michael Fothergill _________________________________________________________________ The next generation of Hotmail is here! http://www.newhotmail.co.uk

Date: Sat, 30 Jun 2007 17:57:42 +0200 From: Shams Fantar <sfantar@snurf.info> To: debian-user@lists.debian.org Subject: Re: libktable-dev and tktable-dev Message-ID: <46867D76.4030505@snurf.info> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Michael Fothergill wrote:
> Dear Debianists,
>
> What is the difference between libtktable-dev in Ubuntu and
> tktable-dev in Debian? Are they pretty much the same package but with
> a name change or is their something more subtle going on here?
>
> I can't seem to find libtktable-dev in the Debian package world.
>
> Regards
>
> Michael Fothergill
>
> ______
You can use aptitude show <package> to have more information for a package. So, you will have the difference between theses packages. // -- Shams Fantar (http://snurf.info)

Date: Sat, 30 Jun 2007 18:01:58 +0200 From: =?iso-8859-15?q?Benjam=ED_Villoslada?= <benjami@gmail.com> To: "debian-user" <debian-user@lists.debian.org> Subject: USB Stick mount Message-Id: <200706301801.58603.benjami@gmail.com> Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Lately I receive this error (in KDE, Konqueror, Debian Sid) when I=20 select =ABopen in new window=BB after USB stick plugging: =ABmount: wrong fs type, bad option, bad superblock on /dev/sdd1, missing=20 codepage or other error In some cases useful info is found in syslog - try= =20 dmesg | tail or so=BB dmesg: =2D---------------------------------------------- scsi6 : SCSI emulation for USB Mass Storage devices usb-storage: device found at 6 usb-storage: waiting for device to settle before scanning Vendor: JetFlash Model: TS128MJF2A Rev: 1.00 Type: Direct-Access ANSI SCSI revision: 02 SCSI device sdd: 250800 512-byte hdwr sectors (128 MB) sdd: Write Protect is off sdd: Mode Sense: 0b 00 00 08 sdd: assuming drive cache: write through SCSI device sdd: 250800 512-byte hdwr sectors (128 MB) sdd: Write Protect is off sdd: Mode Sense: 0b 00 00 08 sdd: assuming drive cache: write through sdd: sdd1 sd 6:0:0:0: Attached scsi removable disk sdd usb-storage: device scan complete =46AT: Unrecognized mount option "flush" or missing value =2D---------------------------------------------- Then I manually mount sdd1 with pmount, and work fine. Maybe is a hal error? =2D-=20 Benjam=ED http://blog.bitassa.cat =2E

Date: Sat, 30 Jun 2007 18:26:43 +0200 From: Florian Kulzer <florian.kulzer@icfo.es> To: debian-user <debian-user@lists.debian.org> Subject: Re: Aptitude can't upgrade Apt! Message-ID: <20070630162643.GA28988@localhost> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline [ Please keep the discussion on the list. There is a "reply-to-list" extension available for Thunderbird, or you can use "reply-to-all" and then remove the other email addresses (except debian-user). ] On Fri, Jun 29, 2007 at 13:26:26 -0500, Richard Thomas wrote:
> [ citing an old message: ]
>> >> You probably upgraded to apt version 0.7.2 recently; check with >> "apt-cache policy apt". This new version provides the virtual package >> libapt-pkg-libc6.5-6-4.4. Aptitude still depends on >> libapt-pkg-libc6.3-6-3.11 which was provided by the previous version of >> apt (0.6.46.4-0.1). You have to wait until a new version of aptitude >> becomes available or you have to downgrade both apt and synaptic again. >> (The newest version of synaptic already depends on the newest version of >> apt.) > >
> My installation of aptitude disappeared during an update issue and this
> problem is preventing me from reinstalling. Is there a correct downgrade
> procedure listed anywhere?
You might still have the older versions of apt and aptitude in your package cache. Check the output of: ls /var/cache/apt/archives/apt_0.6.46.4-0.1* ls /var/cache/apt/archives/aptitude_0.4.4-4* If you still have the two .deb files then you can install them with: dpkg -i /var/cache/apt/archives/apt_0.6.46.4-0.1* dpkg -i /var/cache/apt/archives/aptitude_0.4.4-4* Another possibility is to add a line for "testing" to your /etc/apt/sources.list, run "apt-get update" and then do apt-get install apt/testing aptitude/testing Officially, downgrades are "not supported", but I think in this case it should work out. -- Regards, | http://users.icfo.es/Florian.Kulzer Florian |

Date: Sat, 30 Jun 2007 18:43:03 +0200 From: Elimar Riesebieter <riesebie@lxtec.de> To: debian-user@lists.debian.org Subject: Re: USB Stick mount Message-ID: <20070630164303.GA4252@frodo.home.lxtec.de> Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, 30 Jun 2007 the mental interface of Benjam=ED Villoslada told: [...]
> FAT: Unrecognized mount option "flush" or missing value
> -----------------------------------------------
>=20
> Then I manually mount sdd1 with pmount, and work fine.
>=20
> Maybe is a hal error?
$ grep sd /etc/fstab ? Elimar --=20 Do you smell something burning or ist it me?

Date: Sat, 30 Jun 2007 18:46:24 +0200 From: Florian Kulzer <florian.kulzer+debian@icfo.es> To: debian-user@lists.debian.org Subject: Re: pb with locales Message-ID: <20070630164624.GB28988@localhost> Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 29, 2007 at 17:32:46 +0000, abdelkader belahcene wrote:
> Hi,
> When I try to install a package a receive the following warning. I am
> using the french language and the qwerty keyboard.
>
> bela# dpkg-reconfigure locales
> perl: warning: Setting locale failed.
> perl: warning: Please check that your locale settings:
> LANGUAGE =3D (unset),
> LC_ALL =3D (unset),
> LANG =3D "fr_FR.UTF-8"
> are supported and installed on your system.
> perl: warning: Falling back to the standard locale ("C").
> locale: Ne peut initialiser LC_ALL =EF=BF=BD=EF=BF=BD la locale par d=EF=
=BF=BD=EF=BF=BDfaut: Aucun
> fichier ( means NO FILE FOUND) ou r=EF=BF=BD=EF=BF=BDpertoire de ce type
>
> where to change and fix the pb
Try this (as root): LC_ALL=3D"C" dpkg-reconfigure locales If this allows you to run the command then you can make sure that "fr_FR.UTF-8" is created and that it is set as the default. (If you do not want to set a system-wide default then you have to configure the relevant environmental variables of your $SHELL yourself.) If you still cannot run the "dpkg-reconfigure locales" command then you should post the output of locale -a grep '^[^#]' /etc/locale.gen --=20 Regards, | http://users.icfo.es/Florian.Kulzer Florian |

Can we help you?X

Date: Sat, 30 Jun 2007 18:17:30 +0100 From: "Nick Adie" <nick.adie@gmail.com> To: debian-user@lists.debian.org Subject: Re: Apache: The requested URL / was not found on this server. Message-ID: <fda7659b0706301017n6845ac0avfdea6aa16994576d@mail.gmail.com> Content-Type: multipart/alternative; boundary="----=_Part_3064_1778927.1183223850198" ------=_Part_3064_1778927.1183223850198 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Michael I had a deal of trouble ut here is my solution: <VirtualHost *:80> ServerName webalizer.brokenmould.com ServerAlias monaco webalizer webalizer.brokenmould.com DocumentRoot /var/www/monaco ServerRoot /var/www/monaco <Directory /var/www/monaco/phpmyadmin/> AllowOverride All </Directory> ScriptAlias /cgi-bin/ /var/www/~cgi-bin/monaco/ ErrorLog /var/www/~log/monaco/error.log CustomLog /var/www/~log/monaco/access.log combined ErrorDocument 404 /404.htm </VirtualHost> <VirtualHost *:443> ServerName mail.brokenmould.com ServerAlias mail DocumentRoot /var/www/monaco/mail/ ServerRoot /var/www/monaco/mail/ <Directory /var/www/monaco/mail/> AllowOverride All </Directory> ScriptAlias /cgi-bin/ /var/www/~cgi-bin/monaco/ SSLEngine on SSLCertificateFile /etc/apache2/apache.pem ErrorLog /var/www/~log/monaco/error.log CustomLog /var/www/~log/monaco/access.log combined ErrorDocument 404 /404.htm </VirtualHost> But remember you need to link 'available' to enabled, here's part of the script that I used. Regards Nick #!/bin/sh cd /etc/apache2/sites-enabled ln -s /etc/apache2/sites-available/000-monaco 000-monaco On 6/30/07, Michael Pobega <pobega@gmail.com> wrote: >
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Thursday afternoon I reinstalled my i386 Debian installation as amd64
> (To compliment my Core 2 Duo), and everything's been working pretty good
> so far (Minus 3d rendering, but that's another story), but I'm having
> one serious problem in Apache.
>
> I reinstalled Apache2 and libapache2-mod-php5, and restored my old
> /etc/apache2 configuration files, but I'm getting the error
>
> > The requested URL / was not found on this server.
>
> If you need any of my configuration files just ask, the only one that I
> figure would effect anything would be
> /etc/apache2/sites-available/default, so here is my config:
> >
> /etc/apache2/sites-available/default
> > NameVirtualHost *
> > <VirtualHost *>
> > ServerAdmin pobega@gmail.com
> >
> > DocumentRoot /var/www/
> > <Directory />
> > Options FollowSymLinks
> > AllowOverride
> > None
> > </Directory>
> > <Directory /var/www/>
> > Options Indexes FollowSymLinks MultiViews
> > AllowOverride None
> > Order
> > allow,deny
> > allow from all
> > </Directory>
> > [...] (There's more here, but it's all the default, I
> > only changed the above)
> >
> - --
> http://digital-haze.net/~pobega/ - My Website
> If programmers deserve to be rewarded for creating innovative
> programs, by the same token they deserve to be punished if they
> restrict the use of these programs.
> - Richard Stallman
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.6 (GNU/Linux)
>
> iD8DBQFGhk9Og6qL2BGnx4QRAlARAJ95yWrPNL1CCPXOf+yDjfHhyuvrlgCfe1AE
> ZMHfFVHOBk3u+LPI1tfVSDs=
> =Vn1o
> -----END PGP SIGNATURE-----
> >
> --
> To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmaster@lists.debian.org
> > ------=_Part_3064_1778927.1183223850198 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Michael<br><br>I had a deal of trouble ut here is my solution:<br><br>&lt;VirtualHost *:80&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServerName webalizer.brokenmould.com<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServerAlias monaco webalizer <a href="http://webalizer.brokenmould.com">webalizer.brokenmould.com</a><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DocumentRoot /var/www/monaco<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServerRoot /var/www/monaco<br>&nbsp;&nbsp;&nbsp; &nbsp;&lt;Directory /var/www/monaco/phpmyadmin/&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; AllowOverride All <br>&nbsp;&nbsp;&nbsp; &nbsp;&lt;/Directory&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ScriptAlias /cgi-bin/ /var/www/~cgi-bin/monaco/<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ErrorLog&nbsp; /var/www/~log/monaco/error.log<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CustomLog /var/www/~log/monaco/access.log combined<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ErrorDocument 404 /404.htm <br>&lt;/VirtualHost&gt;<br><br>&lt;VirtualHost *:443&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServerName mail.brokenmould.com<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServerAlias mail<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DocumentRoot /var/www/monaco/mail/ <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServerRoot /var/www/monaco/mail/<br>&nbsp;&nbsp;&nbsp; &nbsp;&lt;Directory /var/www/monaco/mail/&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; AllowOverride All<br>&nbsp;&nbsp;&nbsp; &nbsp;&lt;/Directory&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ScriptAlias /cgi-bin/ /var/www/~cgi-bin/monaco/<br>&nbsp;&nbsp;&nbsp; &nbsp;SSLEngine on <br>&nbsp;&nbsp;&nbsp; &nbsp;SSLCertificateFile /etc/apache2/apache.pem<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ErrorLog&nbsp; /var/www/~log/monaco/error.log<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CustomLog /var/www/~log/monaco/access.log combined<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ErrorDocument 404 /404.htm<br>&lt;/VirtualHost&gt; <br><br>But remember you need to link &#39;available&#39; to enabled, here&#39;s part of the script that I used.<br><br>Regards<br>Nick<br><br><br>#!/bin/sh<br>cd /etc/apache2/sites-enabled<br>ln -s /etc/apache2/sites-available/000-monaco 000-monaco <br><br><br><br><div><span class="gmail_quote">On 6/30/07, <b class="gmail_sendername">Michael Pobega</b> &lt;<a href="mailto:pobega@gmail.com">pobega@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> -----BEGIN PGP SIGNED MESSAGE-----<br>Hash: SHA1<br><br>Thursday afternoon I reinstalled my i386 Debian installation as amd64<br>(To compliment my Core 2 Duo), and everything&#39;s been working pretty good<br>so far (Minus 3d rendering, but that&#39;s another story), but I&#39;m having <br>one serious problem in Apache.<br><br>I reinstalled Apache2 and libapache2-mod-php5, and restored my old<br>/etc/apache2 configuration files, but I&#39;m getting the error<br><br>&gt; The requested URL / was not found on this server. <br><br>If you need any of my configuration files just ask, the only one that I<br>figure would effect anything would be<br>/etc/apache2/sites-available/default, so here is my config:<br><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/etc/apache2/sites-available/default <br>&gt; NameVirtualHost *<br>&gt; &lt;VirtualHost *&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServerAdmin <a href="mailto:pobega@gmail.com">pobega@gmail.com</a><br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DocumentRoot /var/www/<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Directory /&gt; <br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Options FollowSymLinks<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AllowOverride<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; None<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/Directory&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Directory /var/www/&gt; <br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Options Indexes FollowSymLinks MultiViews<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AllowOverride None<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Order<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; allow,deny<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; allow from all <br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/Directory&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [...] (There&#39;s more here, but it&#39;s all the default, I<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; only changed the above)<br><br><br>- --<br><a href="http://digital-haze.net/~pobega/"> http://digital-haze.net/~pobega/</a> - My Website<br>If programmers deserve to be rewarded for creating innovative<br>programs, by the same token they deserve to be punished if they<br>restrict the use of these programs.<br> - Richard Stallman<br>-----BEGIN PGP SIGNATURE-----<br>Version: GnuPG v1.4.6 (GNU/Linux)<br><br>iD8DBQFGhk9Og6qL2BGnx4QRAlARAJ95yWrPNL1CCPXOf+yDjfHhyuvrlgCfe1AE<br>ZMHfFVHOBk3u+LPI1tfVSDs=<br>=Vn1o<br>-----END PGP SIGNATURE----- <br><br><br>--<br>To UNSUBSCRIBE, email to <a href="mailto:debian-user-REQUEST@lists.debian.org">debian-user-REQUEST@lists.debian.org</a><br>with a subject of &quot;unsubscribe&quot;. Trouble? Contact <a href="mailto:listmaster@lists.debian.org"> listmaster@lists.debian.org</a><br><br></blockquote></div><br> ------=_Part_3064_1778927.1183223850198--

Date: Sat, 30 Jun 2007 17:29:58 +0000 From: "Manon Metten" <manon.metten@gmail.com> To: debian-user@lists.debian.org Subject: Re: FileSystem Question Message-ID: <5da176070706301029y19dbc0fav48624349a4ac2c58@mail.gmail.com> Content-Type: multipart/alternative; boundary="----=_Part_69724_32130268.1183224598936" ------=_Part_69724_32130268.1183224598936 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Douglas, On 6/29/07, Douglas Allan Tutty <dtutty@porchlight.ca> wrote: On Fri, Jun 29, 2007 at 06:45:03PM +0000, Manon Metten wrote: >
> I've never used it but you can probably use a CVS repository for this
> more conveniently.
I don't know nothing about CVS repositories. Can you explain a little more, please? Manon. ------=_Part_69724_32130268.1183224598936 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Douglas,<br><br><div><span class="gmail_quote">On 6/29/07, <b class="gmail_sendername">Douglas Allan Tutty</b> &lt;<a href="mailto:dtutty@porchlight.ca">dtutty@porchlight.ca</a>&gt; wrote:<br><br></span><blockquote class="gmail_quote" style="margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; margin-left: 0.80ex; border-left-color: #cccccc; border-left-width: 1px; border-left-style: solid; padding-left: 1ex"> On Fri, Jun 29, 2007 at 06:45:03PM +0000, Manon Metten wrote:<br><br>I&#39;ve never used it but you can probably use a CVS repository for this<br>more conveniently.</blockquote><div><br><br>I&nbsp;don&#39;t&nbsp;know&nbsp;nothing&nbsp;about&nbsp;CVS&nbsp;repositories.&nbsp;Can&nbsp;you&nbsp;explain&nbsp;a&nbsp;little <br>more,&nbsp;please?<br><br>Manon.&nbsp;</div><br></div><br> ------=_Part_69724_32130268.1183224598936--

Date: Sat, 30 Jun 2007 10:50:26 -0700 From: Alan Ianson <agianson@gmail.com> To: debian-user@lists.debian.org Subject: entering data into a pdf file Message-id: <200706301050.26363.agianson@gmail.com> Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit Content-disposition: inline Hello List! I need to enter data into a pdf file and print it. I can view the pdf using evince but I can't seem to enter any data into the fields. How can I do this? End of debian-user-digest Digest V2007 Issue #1871 ************************************************** Received on Sat Jun 30 14:10:25 2007

Do you need more help?X

This archive was generated by hypermail 2.1.8 : Sat Jun 30 2007 - 14:20:02 EDT


Contact Us  Legal Notices  Order Services Online 
Pantek Home  Privacy Policy  IT news  Site Map  Pantek Library