User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the *nix Software section within the Tech Talk category of DaniWeb, a massive community of 423,718 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,141 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our *nix Software advertiser: Lunarpages Linux Web Hosting
Views: 4005 | Replies: 16
Reply
Join Date: Nov 2003
Posts: 51
Reputation: condorcanqui is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 5
condorcanqui condorcanqui is offline Offline
Junior Poster in Training

Cannot install samba

  #1  
Jan 22nd, 2004
I have downloaded the tar.gz file
When i unzipped it it says samba 3. something
I go to the console and and i go to the directory where is the samba folder is locate it
And the nexty step it says to type ./configure but when i do that is say no such file or directory
any suggestions??
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Nov 2003
Posts: 51
Reputation: condorcanqui is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 5
condorcanqui condorcanqui is offline Offline
Junior Poster in Training

Re: Cannot install samba

  #2  
Jan 22nd, 2004
Also another thing, how do i make the clock be on time
Reply With Quote  
Join Date: Nov 2003
Posts: 51
Reputation: condorcanqui is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 5
condorcanqui condorcanqui is offline Offline
Junior Poster in Training

Re: Cannot install samba

  #3  
Jan 22nd, 2004
i have mandrake 9.1
Reply With Quote  
Join Date: Jan 2004
Posts: 6
Reputation: b0x is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
b0x b0x is offline Offline
Newbie Poster

Re: Cannot install samba

  #4  
Jan 23rd, 2004
get the samba rpm , it will make the things easier for you
http://ranger.dnsalias.com/mandrake/9.1/samba-3.0.0/
Reply With Quote  
Join Date: Jan 2004
Location: Netherlands
Posts: 152
Reputation: floris has a spectacular aura about floris has a spectacular aura about 
Rep Power: 6
Solved Threads: 2
floris's Avatar
floris floris is offline Offline
vBulletin.com Staff

Re: Cannot install samba

  #5  
Jan 23rd, 2004
It would help if you could make sure the configure files etc are all there.
cd same 3.something and from there go through the 'obvious' dirs with ls -all and read
Reply With Quote  
Join Date: Aug 2003
Location: Jersey - You gotta problem wit dat?
Posts: 334
Reputation: TheOgre has a spectacular aura about TheOgre has a spectacular aura about TheOgre has a spectacular aura about 
Rep Power: 8
Solved Threads: 5
TheOgre's Avatar
TheOgre TheOgre is offline Offline
Posting Whiz

Re: Cannot install samba

  #6  
Jan 25th, 2004
Originally Posted by condorcanqui
Also another thing, how do i make the clock be on time

As root, try this:

To set your system time to 10am: date -s 10:00
To set system time to 4pm: date -s 16:00

To get the time/date, just type date

Also check the date/time after a reboot to see if the bios clock is off. You can also run ntpd (Network Time Protocol Daemon) to keep your system clock in synch with a time server. read the manpage for ntpd for more info on how to configure it.
If you spend more on coffee than on IT security, you will be hacked.
What's more, you deserve to be hacked.
-- former White House cybersecurity czar Richard Clarke
Reply With Quote  
Join Date: Jan 2004
Location: new yawk
Posts: 38
Reputation: Dominick is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 0
Dominick's Avatar
Dominick Dominick is offline Offline
Light Poster

Re: Cannot install samba

  #7  
Jan 25th, 2004
simple howto on installing samba

tar -zxvf samba.foo (foo being the version)
cd samba.foo
./configure
su -
password
make
make install
cd /etc/samba
edit the samba config file with your favorite text editor.
Dominick@tech-lounge.com
www.tech-lounge.com
www.v-dommi.net
Reply With Quote  
Join Date: Jan 2004
Location: Low earth Orbit...right? Soon to be cali to finish up ten year.
Posts: 150
Reputation: WEATHER CHANNEL will become famous soon enough WEATHER CHANNEL will become famous soon enough 
Rep Power: 0
Solved Threads: 1
WEATHER CHANNEL's Avatar
WEATHER CHANNEL WEATHER CHANNEL is offline Offline
Banned

Re: Cannot install samba

  #8  
Jan 29th, 2004
refer to my first post.
Reply With Quote  
Join Date: Feb 2002
Location: Lawn Guylen, NY
Posts: 10,900
Reputation: cscgal is just really nice cscgal is just really nice cscgal is just really nice cscgal is just really nice cscgal is just really nice 
Rep Power: 32
Solved Threads: 118
Admin
Staff Writer
cscgal's Avatar
cscgal cscgal is offline Offline
The Queen of DaniWeb

Re: Cannot install samba

  #9  
Jan 29th, 2004
What first post?
Reply With Quote  
Join Date: Aug 2003
Location: Jersey - You gotta problem wit dat?
Posts: 334
Reputation: TheOgre has a spectacular aura about TheOgre has a spectacular aura about TheOgre has a spectacular aura about 
Rep Power: 8
Solved Threads: 5
TheOgre's Avatar
TheOgre TheOgre is offline Offline
Posting Whiz

Re: Cannot install samba

  #10  
Jan 29th, 2004
Originally Posted by Dominick
simple howto on installing samba

tar -zxvf samba.foo (foo being the version)
cd samba.foo
./configure
su -
password
make
make install
cd /etc/samba
edit the samba config file with your favorite text editor.
You only need to be su for "make install", and it's better not to use the trailing hyphen when doing "su" so you remain in the same directory.

Example:

me@host$ pwd
/usr/src/samba/samba-3.0.1
me@host$ ./configure
...scrolling list of checks...
...scrolling list of checks...
...scrolling list of checks...

me@host$ make
...compiler runs...
...compiler runs...
...compiler runs...

me@host$ su
Password:

root@host# pwd
/usr/src/samba/samba-3.0.1
root@host# make install

You might also want to run updatedb after the install finishes, so you know where everything is located. The Samba configuration file is smb.conf (usually /etc/samba/smb.conf), but usually it gets installed as smb.conf.example or smb.conf.dist (depending on which platform you're on.)

When you use the hyphen with "su" all the environmental variables are loaded and applied to root's environment, like $SHELL, $PATH, $DISPLAY, and so on, and you are transferred to root's $HOME (usually /root )

By not using the trailing hyphen, you remain in the same directory, keep the same $SHELL (if root's $SHELL is different) and get what you want - root access. It's always recommended to install sudo, so you wouldn't have to go through all this to begin with. (me@host$ sudo make install)

Hope this helps to clear things up for you..
Last edited by TheOgre : Jan 29th, 2004 at 11:06 am.
If you spend more on coffee than on IT security, you will be hacked.
What's more, you deserve to be hacked.
-- former White House cybersecurity czar Richard Clarke
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb *nix Software Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the *nix Software Forum

All times are GMT -4. The time now is 1:01 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC