Jump to content

paul

Admin
  • Posts

    5611
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by paul

  1. In gnome, it will not allow me to change the name of her Home desktop icon to My Computer or anything for that matter. Tried as root even. If I go into a shell and go to ~/.gnome-desktop and run ls, I see it as My Computer, but it remains laluna's Home on the desktop.

     

    have you tried editing the *My Computer* file and changing the Name ???

     

    paul@trinity paul $ cat ~/.gnome-desktop/paul's Home 
    
    [Desktop Entry]
    
    Version=1.0
    
    Encoding=UTF-8
    
    Name=paul's Home
    
    Type=X-nautilus-home
    
    URL=file:///home/paul
    
    X-Nautilus-Icon=gnome-fs-home
    
    paul@trinity paul $

    change "Name=paul's Home" to "Name=My Computer"

  2. the only thing my wife missed was Office.

    so codeweavers, and $30 bucks later she now has KDE / Evolution / Mozilla / and MS Office :-) .... she's happy

     

    We were running all manner of Windows OSes on here puter ... all illegal, so I put my foot down, and said NO MORE ILLEGAL SOFTWARE.

     

    When she saw the price of Windows (NZD $889.00) she thought USD $60 for Mandrake DVD sounded pretty good 8)

  3. wtf? are you from NZ?

    And yes thats where i got it.

     

    Yep. I was looking at getting it off ebay or amazon but I found it there at The Warehouse :)

    cool .. another NZer 8)

    but how can you use telecom jetstart ... I hate telecom :evil: at least johnnyv is an ihug user :wink:

    I've got 802.11b wireless ... not associated with any ISP :D ... I can pick who I want to buy my data from 8)

  4. yep Steve is right

    for security purposes your /var/www/calandria should be owned by apache, and 755'ed

    chown -R apache.apache /var/www/calandria
    
    chmod -R 755 /var/www/calandria

    but for ease of use (no one listen this is a secret :#: )

    I have

    chown -R paul.paul /var/www/html/loudas.com

    that way I can work without having to su

  5. Well, what I think he's (I'm only assuming gender...I don't know you...sorry :-)) asking is the Desktop's directory is /home/omar/.gnome-desktop (mine) in Gnome and I think I remember it being /home/omar/.kde/Desktop in KDE, but some icons are drawn dynamically and will come back if you delete them. Also, in Nautilus (Gnome) under advanced preferences, there is the option of using your /home directory as your desktop.

    :#:

    isn;t the KDE desktop /home/user/Desktop or is that some obscure freak dynamic thing that points to /home/user/.kde3.1:#:/.desktop ?

    I threw that .kde3.1 in just to add a little more confusion :#:

  6. [paul@morpheus paul]$ ls /etc/httpd/conf/vhosts/
    
    DynamicVhosts.conf  Vhosts.conf  VirtualHomePages.conf
    
    [paul@morpheus paul]$

     

    [paul@morpheus paul]$ cat /etc/httpd/conf/vhost
    
    ~~~~~ I've shortened this to show only the good bits ~~~~
    
    NameVirtualHost 202.27.218.97
    
    <VirtualHost 202.27.218.97>
    
           DocumentRoot /var/www/html/loudas.com
    
           ServerName loudas.com
    
           ServerAlias www.loudas.com
    
           CustomLog logs/loudas.com-access_log combined
    
    </VirtualHost>

     

    also you might need to look at the common file

    [paul@morpheus paul]$ cat /etc/httpd/conf/commonhttpd.conf
    
    ~~~~~~~ this is also shortened for the sake of this post ~~~~~
    
    <Directory /var/www/html/loudas.com>
    
       Options Indexes FollowSymLinks MultiViews
    
       AllowOverride All
    
       Order allow,deny
    
       Allow from all
    
    </Directory>

    if you change the default directory (which you have to /var/www/calandria ) then you will need to add something like the above to your commonhttpd.conf file

  7. I think what hes asking is

    how do you change /home/user/Desktop to /some/other/dir

     

    the easy way (although I'm not sure it would work) is to link /home/user/Desktop to another dir

    mv /home/user/Desktop /home/user/Desktop.old/
    
    ln -s /this/is/my/dir /home/user/Desktop
    
    chown user.user /this/is/my/dir

    I can't see anywhere in KDE to change it any other way :?

  8. the default install of apache uses /var/www so it should have been created

    in /etc/http/conf/vhost/Vhost.conf you will se how virtual hosting works, its pretty well documented.

    You created /var/www ? it should already exist after apache installation.

    "You don't have permission to access / on this server."

     

    However the site is not located at /

     

    I make a new directory in /var/www 

    you're right ... the webroot is /var/www/html but apache refers to it as / because it is the webroot (read: the apache root directory)

  9. as far as I am aware (I haven't actually tried it) it doesn't have *Control Center*

     

    But I will give it a go, and probabl give it some support, I am already a member of the mailing lists ......

     

    But its one more for NZ :#: ... cool 8)

  10. I agreee entirely.

     

    I've had a shorewall firewall since December, and have never quite figured out why so many people complain about it.

     

    the docs are fantastic, and written for people that have never build a firewall before.

    I guess MottS is right :

    The problems people have aren't related to Shorewall but to the MCC
  11. While I'm waiting to get something uploaded to a web server, I'm playing around with HTML code.  Learning stuff like FONT colors, sizes, etc.

     

    When browsing the web, I select File/Open, then browse to my different html test files to see how they display.  Anyway, everything works ok (fonts & colors) but I can't make any change to font sizes.  It all displays the same size, even if in different colors or font faces.  My book says to use <FONT SIZE=+3> or <FONT SIZE="6"> or whatever.  However, using either of those makes no diff to the size displayed.

     

    This belongs more in programming, but oh well...

     

    see my post above about style tags ...

    Mozilla is "Standards compliant" .... which means when it reads a tag like <font> it will quite likely ignore it, because <font> is not a valid tag.

     

    instead do some reading about CSS (cascading style sheets) ... http://www.w3.org is a great source of information.

     

    just take a look at some of the cool things you can do with CSS

    http://www.mozilla.org/start/1.0/demos.html

     

    this has to be the coolest that I've seen (works in mozilla clients only ... Mozilla, Phoenix, galeon, etc etc )

    http://www.mozilla.org/start/1.0/demos/eagle-sun.html

    :#:

×
×
  • Create New...