Cannot install samba

Reply

Join Date: Nov 2003
Posts: 51
Reputation: condorcanqui is an unknown quantity at this point 
Solved Threads: 6
condorcanqui condorcanqui is offline Offline
Junior Poster in Training

Cannot install samba

 
0
  #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??
Reply With Quote Quick reply to this message  
Join Date: Nov 2003
Posts: 51
Reputation: condorcanqui is an unknown quantity at this point 
Solved Threads: 6
condorcanqui condorcanqui is offline Offline
Junior Poster in Training

Re: Cannot install samba

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

Re: Cannot install samba

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

Re: Cannot install samba

 
0
  #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 Quick reply to this message  
Join Date: Jan 2004
Posts: 152
Reputation: floris has a spectacular aura about floris has a spectacular aura about 
Solved Threads: 2
floris's Avatar
floris floris is offline Offline
vBulletin.com Staff

Re: Cannot install samba

 
0
  #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 Quick reply to this message  
Join Date: Aug 2003
Posts: 372
Reputation: TheOgre is a jewel in the rough TheOgre is a jewel in the rough TheOgre is a jewel in the rough 
Solved Threads: 6
TheOgre's Avatar
TheOgre TheOgre is offline Offline
Posting Whiz

Re: Cannot install samba

 
0
  #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 Quick reply to this message  
Join Date: Jan 2004
Posts: 38
Reputation: Dominick is an unknown quantity at this point 
Solved Threads: 0
Dominick's Avatar
Dominick Dominick is offline Offline
Light Poster

Re: Cannot install samba

 
0
  #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 Quick reply to this message  
Join Date: Jan 2004
Posts: 150
Reputation: WEATHER CHANNEL will become famous soon enough WEATHER CHANNEL will become famous soon enough 
Solved Threads: 1
WEATHER CHANNEL's Avatar
WEATHER CHANNEL WEATHER CHANNEL is offline Offline
Banned

Re: Cannot install samba

 
0
  #8
Jan 29th, 2004
refer to my first post.
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,057
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 129
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is offline Offline
The Queen of DaniWeb

Re: Cannot install samba

 
0
  #9
Jan 29th, 2004
What first post?
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/DaniWeb
And if you're interested in Internet marketing there is twitter.com/DaniWebAds
Reply With Quote Quick reply to this message  
Join Date: Aug 2003
Posts: 372
Reputation: TheOgre is a jewel in the rough TheOgre is a jewel in the rough TheOgre is a jewel in the rough 
Solved Threads: 6
TheOgre's Avatar
TheOgre TheOgre is offline Offline
Posting Whiz

Re: Cannot install samba

 
0
  #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 12:06 pm.
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 Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the *nix Software Forum


Views: 5025 | Replies: 16
Thread Tools Search this Thread



Tag cloud for *nix Software
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC