LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Enterprise Linux Forums > Linux - Enterprise
User Name
Password
Linux - Enterprise This forum is for all items relating to using Linux in the Enterprise.

Notices


Reply
  Search this Thread
Old 05-07-2004, 02:21 PM   #16
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79

Well said chort.
Quote:
Originally posted by chort
Perhaps if you educate them instead of letting them think it's a huge issue that you need to find a solution to, they might drop that complaint.
... and with any luck, look at they way they secure windows systems and improve the security on them instead.
 
Old 05-07-2004, 02:53 PM   #17
Phorem
Member
 
Registered: Nov 2003
Location: Toronto, Canada
Distribution: Gentoo AMD64
Posts: 374

Original Poster
Rep: Reputation: 30
What i mean, is what stops someone by physically walking up to the computer, booting it up with a livecd (gentoo) and changing files and changing to the root password (assuming that they had access to the server)? I know there is a boot loader password, but isn't there a way to make the root pw iron clad??

I keep telling them that i can change passwords on windows machines and access data with boot disks, but they want to see it. And i don't know how. I can boot it up and format it, but how would i get a "command prompt" on a NTFS file system with a boot disk?

Besides, that's not the point, everything seems fine now - for the moment any way. They are upstairs playing with it right now. I guess i'll have to dig deeper on this password issue.
 
Old 05-07-2004, 03:26 PM   #18
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
Did you read my post above about locking down the BIOS? That should cover all your bases.
 
Old 05-07-2004, 03:37 PM   #19
Phorem
Member
 
Registered: Nov 2003
Location: Toronto, Canada
Distribution: Gentoo AMD64
Posts: 374

Original Poster
Rep: Reputation: 30
Oh ya, i did, but i was just wondering in general. That's all.
What about accessing a windows 2000 partition from a boot disk? In ideas on that?
 
Old 05-07-2004, 03:43 PM   #20
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
Exactly the same thing - if you stop the system from booting from another disk it will be much more secure. At the end of the day though anyone with physical access to the drives in the computer can get to the data if it is not encrypted by transplanting them to another machine or reseting the bios.
 
Old 05-07-2004, 05:15 PM   #21
chort
Senior Member
 
Registered: Jul 2003
Location: Silicon Valley, USA
Distribution: OpenBSD 4.6, OS X 10.6.2, CentOS 4 & 5
Posts: 3,660

Rep: Reputation: 76
Phorem,

You can use the Win2K recovery CD to change admin passwords on WinXP, etc. There's also a bootable Linux toolkit for chaging Windows passwords. Some of the Linux LiveCDs have NTFS write support enabled, and of course any system running FAT/FAT32 is completely vulnerable to data modification from any type of bootable media.

Someone can probably provide you with the name of the Linux boot image that has Windows password tools, the name escapes me right now. Knoppix STD (Security Toolkit Distribution) can probably do it.
 
Old 05-07-2004, 05:43 PM   #22
Phorem
Member
 
Registered: Nov 2003
Location: Toronto, Canada
Distribution: Gentoo AMD64
Posts: 374

Original Poster
Rep: Reputation: 30
I'll try using some live cd's and see what i can wreck for them. I also got the chance to bring the server upstairs and plug it in. It all went well, but when i access the server, for example, \\PDF or \\192.168.1.102, it is painfully slowwwwwwwwwwwwwwwwww! I mean, smoke a cig while you're waiting slow. I have tried doing some tweaks to smb.conf, but every time i go to access the printer, the shares or anything from windoze XP, 2000 or whatever, it is so slow. The actual printing and the transfer of files is sweeeeeeeeeeeet, but i can't seem to speed up the initial view and browsing through folders. After, i get that going, i think it'll sell itself. They loved how fast it was on such a minuscule machine - P3 733 Coppermine, 256m, 9gig ide hard drive and an 100m eth0 card - and they want it to do more. So it looks good. But the browsing and the initial connection thing sucks.

Edit** - don't worry about the speed issue, i think i have found a couple solutions in the Samba manual.

Last edited by Phorem; 05-07-2004 at 07:00 PM.
 
Old 05-08-2004, 06:12 PM   #23
jcookeman
Member
 
Registered: Jul 2003
Location: London, UK
Distribution: FreeBSD, OpenSuse, Ubuntu, RHEL
Posts: 417

Rep: Reputation: 33
Quote:
every time i go to access the printer, the shares or anything from windoze XP, 2000 or whatever, it is so slow. The actual printing and the transfer of files is sweeeeeeeeeeeet, but i can't seem to speed up the initial view and browsing through folders.
Sounds to me like a name resolution issue.
 
Old 05-08-2004, 08:13 PM   #24
urzumph
Member
 
Registered: Jan 2004
Location: Australia
Distribution: Debian
Posts: 168

Rep: Reputation: 30
I like david ross 's script - I'd like to make a few changes tho :

Code:
tempdir = /tmp/pdfs
pdfmount = /mnt/pdfmover
pdfuser = pdfs
pdfpass = pdfpass
# If the IP has a directory already then there must be another conversion
# alread happening so wait until it goes (you may want to limit this a bit more)
while [ -x "/mnt/pdflock" ];do
 sleep 30;
done

# Mount the remote share
mount -t smbfs //$1/pdfs $pdfmount -o username=$pdfuser,password=$pdfpass

# Do whatever you do to put the pdf in /mnt/pdfmover
mv /tmp/pdfs/*.pdf $pdfmount

# Unmount the drive
umount $pdfmount

# Remove the directory to release the lock
rm -f /mnt/pdflock
For this script to work :
all machines must have a share called pdfs, accessable by the user $pdfuser with the password $pdfpass (constants at the top of the script, so changeable)

the following line must be in your smb.conf :
postexec sh /path/to/script/pdfmover.sh %I

that is, of course assuming that post/pre exec works properly for printers with samba (has anyone tried it? the example given in smb.conf is for cdroms)

the folder /mnt/pdfmover exists.
 
Old 05-09-2004, 05:15 AM   #25
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
I suppose it depends how may conversion you want to allow at once. I was thinking of allowing one per client IP rather than one per server. I suppose it depends on the usage of the system. You could also generate a random number and use it as themount point - this would let you convert as many as needed.

With a little extra work you could have 2 files "maxpdfs" and "curpdfs". maxpdfs simply containing the maximum number of PDFs that can be created at once and curpdfs containing the current number of conversions taking place. You could also throw another file into the equation to make sure that the queuing is done fairly.
 
Old 05-09-2004, 09:41 AM   #26
Jackaroo
LQ Newbie
 
Registered: Sep 2003
Posts: 9

Rep: Reputation: 0
You can completely lock it up. Just turn the cdrom off in your bios. Then put a password on the bios. Seams pretty simple and "inexpensive" to me. Also if you dont want them access through other components (ex. usb drives, and other components that can be hacked through) you can do something about that. just compile the kernel so it only supports the hardware in it. Any time you want to upgrade just rebuild the modules :P. seams pretty simple..

The best people to ask about that is hardware manufacturers. You could also buy a device that would only allow the system to come on with a key. Every night you could take that key out, and bam no way they can access it. This technoligy was around since the 286 computer.

Last edited by Jackaroo; 05-09-2004 at 09:44 AM.
 
Old 05-09-2004, 10:48 AM   #27
ziggis-soft
Member
 
Registered: Oct 2003
Location: new brunswick canada
Distribution: red hat ,suse 9.0 ,dsl-dam small linux
Posts: 42

Rep: Reputation: 15
Wink :O printer

Hi i just red some of the posting i just want to ask you before you switch your workstation to linux What kind of printer you guys have becarfull its not all the models that supports linux of course you can always mount the device just let me no if you got any printer problems il try to help ya and make sure you give me make and model.



PS if its not a xerox i don't want to hear about it

i red a post and you wer saing that pdf was slow if your are using a xerox system try downloading a ps driver you probaly have a pcl driver witch id better for txt file printing a pcl driver spools to mutch with adobe(pdf) files the ps driver handels it mutch better



oh one more thing have you tried suse 9.1 it have samba built it

let me no houw you make out

Last edited by ziggis-soft; 05-09-2004 at 10:53 AM.
 
Old 06-09-2004, 03:15 PM   #28
Phorem
Member
 
Registered: Nov 2003
Location: Toronto, Canada
Distribution: Gentoo AMD64
Posts: 374

Original Poster
Rep: Reputation: 30
I thought i would just drop a line and let people know what has happened with my Samba/PDF server. Well nothing! I got everything working sweet and i got it on the network to test the feasibility of this type of system in a windoze network environment. It all went very well. Very solid and of course i love my little server. But then the proposal got sent to our main office in the US. I don't think the reader (i want to call him/her something else but i will act civil here) even got past the subject in the email - Linux PDF Server. It was a big fat NO! I couldn't believe it. They gave me some shi**y explanation as to why but it really comes down to Microsoft and the Nazi-like contracts they enforce on people and corporations. I'm not even mad. More depressed that they couldn't see the light at the end of the tunnel. Oh well, their loss. It was a good experience and i am currently looking to work elsewhere so i can apply my Linux skills to a company that really isn't scared to try something new and obviously a hell of a lot better than Microsh*t. I'm starting to realize that a medium to small business can benefit highly from Linux.

The reason i even wrote this stuff is so people can see that Linux has no trouble getting people to eoooo and ahhhhhhh when i show them, the problem is - and always will be - POLITICS. If anyone is considering to implement Linux into their network and they are not the boss or the decision maker than be ready for a fight.

1. People fear and shy away from the unknown.
2. Microsoft sucks and will fail. Like it does randomly every hour on our network.
3. I really have to stop ranting. :-)
 
Old 06-10-2004, 12:34 PM   #29
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
Quote:
Originally posted by Phorem
The reason i even wrote this stuff is so people can see that Linux has no trouble getting people to eoooo and ahhhhhhh when i show them, the problem is - and always will be - POLITICS. If anyone is considering to implement Linux into their network and they are not the boss or the decision maker than be ready for a fight.
I couldn't agree more - I face the same things every day be it against Microsoft or Novell.

Quote:
Originally posted by Phorem
1. People fear and shy away from the unknown.
2. Microsoft sucks and will fail. Like it does randomly every hour on our network.
3. I really have to stop ranting. :-)
1. The disturbing thing is that the people who make the decisions are always so mis informed and rely on information from only certain members of technical staff whether they know the subject matter or not.
2. Fingers are crossed (yet another ie exploit was announced yesterday)
3. Keep on ranting. If you stop who is going to improve things?
 
Old 06-10-2004, 10:17 PM   #30
ziggis-soft
Member
 
Registered: Oct 2003
Location: new brunswick canada
Distribution: red hat ,suse 9.0 ,dsl-dam small linux
Posts: 42

Rep: Reputation: 15
Well if it helps the only thing i can tell you guys is that a work for one of the largest corporation in the world ye enploye over 67 000 pepole
and almost all of out equipment is linx (unix) software . What i meen by that is that the software of our main pwb is linx so now you have it dont loose faith guys any one with a head on their shoulder knowes that unix is the king of all so far the only thing they have to work on is to get into gaming alot of pepole wont go with linux just for the simple fact that gaming isint there yet .



peace
 
  


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
start xmms, open *.ogg, hit play, big stall, can't restart degraffenried13 Linux - General 2 01-12-2004 11:20 PM
BIG gaming performance HIT!? 4x AGP... RHLinuxGUY Linux - Games 1 12-02-2003 10:20 PM
dash every time I hit enter in gnome (rh9) in everything lynchmob09 Linux - General 2 09-22-2003 05:26 PM
WTF!?!, linux just bombed big time saturn_vk Linux - General 3 02-27-2003 04:40 PM
big BIG javascript & loading time luigi Programming 3 09-10-2001 03:53 AM

LinuxQuestions.org > Forums > Enterprise Linux Forums > Linux - Enterprise

All times are GMT -5. The time now is 11:31 PM.

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