LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-24-2009, 10:02 AM   #46
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899

You are getting the hang of it.
Perhaps you can change "my site" to something more relevant
 
Old 04-24-2009, 10:17 AM   #47
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Can I ask the MODERATOR to rename this post "starting your first Linux download website for beginners" or something?

We kinda went off-track-I apologize...

OK-Repo
Yes-I learn by imitation/modification
So I just copy what you guys do here...and googling alot.
Gonna fix up the site today

Needs-
I need to add "content"(is that what it's called?), like a video player and graphics
The google webtool thing is bizarre and weird-doesn't point me to the page I made...?
 
Old 04-24-2009, 10:23 AM   #48
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
The google webtool thing is bizarre and weird-doesn't point me to the page I made...?
Don't know that google webtool thing :-)

Quote:
I need to add "content"(is that what it's called?), like a video player and graphics
Try a WYSIWYG html editor
 
Old 04-24-2009, 10:24 AM   #49
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
for the video you can link to youtube, so the traffic isn't for your site
 
Old 04-24-2009, 11:12 AM   #50
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
couple more questions-how do i setup different pages?
Like a Home page
Contact page
statement page

and do I need to have a folder named "index.html" with the graphics, etc inside in the same folder as the "index.html"
Like when you save a htm page you get a "....html" and a folder with stuff in it.?
 
Old 04-24-2009, 11:23 AM   #51
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
The homepage is your index.html
index.html will always be loaded when you access multidistro.com

you can create folders
/
/iso
/graphics
....
and then point to them in your index.html

or put everything in /

it's a bit like a filesystem

to create a statement page
create
statement.html and point to it from your index.html


Take a look at
http://www.make-a-web-site.com/
http://www.2createawebsite.com/

As said before, install apache on your server and use this to practice and to test.

Last edited by repo; 04-24-2009 at 11:25 AM.
 
Old 04-24-2009, 01:26 PM   #52
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
OK-working on it-
Uploading MultiDistro-Magic-LiveCD now-be done in about an hour(45kbs upload)
As soon as it's done I'll upload a new "index.html"

Now-I guess tonight I'll be learning "crash-course web-design 101"
with the links you posted Repo-

I'm also accepting donations for my site from people like you guys, so dig deep and spread the wealth!
 
Old 04-24-2009, 02:15 PM   #53
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
OK Repo-I installed apache2, but lost from there-seems like rocket science to me...

There is no GUI, and trying "apache" in the term got "unknown command".

PHP Code:
As said beforeinstall apache on your 
server 
and use this to practice and to test
I don't understand how I can use apache to practice HTML/web design???
Can you clarify?
 
Old 04-24-2009, 02:27 PM   #54
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
apache is a webserver (like the one where your site is hosted)
In your browser type
127.0.0.1
if apache is correctly installed you should see the apache page, which is on your computer.

So if you put the file index.html in
/var/www/apache2-default/
you should see your page, when you type
127.0.0.1
 
Old 04-24-2009, 02:34 PM   #55
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
Like that-

Code:
It works!
gracias maņana !
do you know what that means...
 
Old 04-24-2009, 02:40 PM   #56
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
it means it works :-)
now copy the files you want to put on the website to
/var/www/apache2-default/
and retype 127.0.0.1
 
Old 04-24-2009, 02:49 PM   #57
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
OK-that's not working...there is no /apache2-default or any other folders in "www"?
I made the folder and copied over index.html-still just says "it works"

what gives?
 
Old 04-24-2009, 02:53 PM   #58
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
it is in /var/
can also be /var/www/
depending on the distribution

which distribution are you using ?

Code:
find / -name index.html

Last edited by repo; 04-24-2009 at 03:18 PM.
 
Old 04-24-2009, 03:08 PM   #59
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
OK-got it!
Thanks

The CD is ready for Download too!!
It should have good speed-

I recommend playing it in qemu/vbox to ASSURE YOURSELF that it works good before burning to CD...( http://multidistro.com/ )
 
Old 04-24-2009, 03:43 PM   #60
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Original Poster
Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
REPO-I need a way to know if you can do me a favor?
I would send u a message but I don't think you allow it...
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu-804 in Dell Dimension.. troiubles installing... Cosmicb Linux - Newbie 13 03-07-2009 09:16 AM
Differences between Debian and Ubuntu jmite Linux - Distributions 5 08-03-2008 05:30 PM
LXer: Specifications Released for the Asus Eee PC 904 and 1000 LXer Syndicated Linux News 0 07-12-2008 12:30 AM
Keyboard Problems on Fujitsu Amilo xi2428-804 dmcbeing Linux - Laptop and Netbook 0 04-20-2008 06:21 PM
differences Ubuntu /Kubuntu ? Helmut_K Ubuntu 17 12-02-2006 02:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:13 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration