Re: make question

2008-12-17 Thread Valery Reznic
> Yikes, why would you come to that? > > > Additional to second line "|| { rm -f $@ > ...}" ensure that in case of > > some failure no target file remain. So wrong / > incomplete file can't > > be occassionly used. > > Here's a similar version that is > functionality-equivalent: > > all: figur

from my experiance: I wouldn't recommend ati

2008-12-17 Thread Erez D
If you arg thinking of buying a new graphic card, and want to choose ati i wouldn't recommend that. Although oficially ati has "catalyst" drivers for their new cards - it didn't work on mine (which is supported) i have recently bought a new computer. my old one had nvidia , and my new has

Re: Samba: convert shadow to smbpasswd.

2008-12-17 Thread Shachar Shemesh
Dotan Shavit wrote: Please note that passwords are not transferred automatically from /etc/passwd to the new /etc/samba/smbpasswd file. After running mksmbpasswd all accounts are disabled so the system administrator must run smbpasswd for each account that needs to be enable. I'll expan

Re: make question

2008-12-17 Thread Tzafrir Cohen
On Wed, Dec 17, 2008 at 01:44:12PM -0800, Valery Reznic wrote: > > > > --- On Wed, 12/17/08, Jason Friedman wrote: > > > From: Jason Friedman > > Subject: make question > > To: linux-il@cs.huji.ac.il > > Date: Wednesday, December 17, 2008, 10:21 PM > > Hi all, > > > > I have had this make qu

Re: make question

2008-12-17 Thread Valery Reznic
--- On Wed, 12/17/08, Jason Friedman wrote: > From: Jason Friedman > Subject: make question > To: linux-il@cs.huji.ac.il > Date: Wednesday, December 17, 2008, 10:21 PM > Hi all, > > I have had this make question that has been bugging me for > a long time. > > I want to fix some eps files us

Re: Samba: convert shadow to smbpasswd.

2008-12-17 Thread Dotan Shavit
On Wednesday 17 December 2008, Josh Roden wrote: > Hi everyone, > > Does anyone know how to convert /etc/shadow or /etc/passwd to > /etc/samba/smbpasswd? > > I haven't been able to google anything that works. > > > > Neither of the following work: > > cat /etc/passwd|mksmbpasswd.sh |cat>/etc/samba

Re: make question

2008-12-17 Thread Shlomi Fish
On Wednesday 17 December 2008, Jason Friedman wrote: > Hi all, > > I have had this make question that has been bugging me for a long time. > > I want to fix some eps files using eps2eps. This is the makefile I use: > > figure1_fixed.eps: figure1.eps > [tab] eps2eps $< $@ > > (replace [tab] with the

Re: make question

2008-12-17 Thread Omer Zak
Hello Jason, The following is what you need: -=-=-=-> SOURCES = $(wildcard ../../some/other/path/*.eps) TARGETS = $(patsubst ../../some/other/path/%.eps,%_fixed.eps) all: $(TARGETS) %_fixed.eps: ../../some/other/path/%.eps [TAB] eps2eps $< $@ -=-=-=-> The above works with GNU Make (I use GNU Mak

make question

2008-12-17 Thread Jason Friedman
Hi all, I have had this make question that has been bugging me for a long time. I want to fix some eps files using eps2eps. This is the makefile I use: figure1_fixed.eps: figure1.eps [tab] eps2eps $< $@ (replace [tab] with the tab character) This works fine, but when I have many eps files to c

Re: few questions

2008-12-17 Thread Udi Oron
Hi! Erez D wrote: hi. 1. in ubuntu, if i type "g++" and don't have it installed, it will tell me to "sudo apt-get install pkg-somthing" can i know that easily in fc10 what yum command i need to get g++ ? (or any other file) In ubuntu the package is: http://packages.ubuntu.com/intrepid/comma

Samba: convert shadow to smbpasswd.

2008-12-17 Thread Josh Roden
Hi everyone, Does anyone know how to convert /etc/shadow or /etc/passwd to /etc/samba/smbpasswd? I haven't been able to google anything that works. Neither of the following work: cat /etc/passwd|mksmbpasswd.sh |cat>/etc/samba/smbpasswd cat /etc/shadow|mksmbpasswd.sh|cat>/etc/samba/smbpass

Reminder: Hamakor Meeting on Sunday 21-December-2008

2008-12-17 Thread Shlomi Fish
This is a reminder that there will be a general assembly of Hamakor on Sunday, 21-12-2008 at 18:30 in Tel Aviv University, Schreiber (Maths and CS), room 008. More information can be found at the site of the NPO: http://www.hamakor.org.il/content/view/98/1/ Regards, Shlomi Fish -- -

Re: replicating exact centos 5 package list

2008-12-17 Thread Gilboa Davara
On Tue, 2008-12-16 at 08:13 +1100, Amos Shapira wrote: > 2008/12/16 Gilboa Davara : > > Hello Amos, > > > > As I'm using this script on full updated machines, I didn't really need > > the package versions. > > Either way, good to hear that it worked. > > The idea is that every "yum update" could f

[Off topic] Urgent help of a sysadmin of a Data General Aviion Unix sought

2008-12-17 Thread Gilad Ben-Yossef
Hi, Sorry for the off topic post, but I'm trying to help a college in distress and thought here might be a good place to look - If anyone has any experience (or know anyone else that has experience) with administrating a Data General Aviion Unix machine, kindly contact Mr. Mehchem Geva at

Re: few questions

2008-12-17 Thread Tzafrir Cohen
On Wed, Dec 17, 2008 at 10:25:53AM +0200, Erez D wrote: > hi. > > 1. in ubuntu, if i type "g++" and don't have it installed, it will tell me > to "sudo apt-get install pkg-somthing" IIRC this is done in Ubuntu using a shell function that has a list of some specific commands and the packages in w

Re: few questions

2008-12-17 Thread Erez D
On Wed, Dec 17, 2008 at 12:00 PM, Baruch Siach wrote: > Hi Dvir, Erez, > > On Wed, Dec 17, 2008 at 11:46:43AM +0200, Dvir Volk wrote: > > 2. try using screen to run you program, and then you can access it from > > anywhere via ssh. > > > 2. i have a program running on a remote linux-box (fc10) on

Re: few questions

2008-12-17 Thread Erez D
On Wed, Dec 17, 2008 at 11:59 AM, Amos Shapira wrote: > 2008/12/17 Erez D : > > hi. > > > > 1. in ubuntu, if i type "g++" and don't have it installed, it will tell > me > > to "sudo apt-get install pkg-somthing" > > can i know that easily in fc10 what yum command i need to get g++ ? (or > any > >

Re: few questions

2008-12-17 Thread Erez D
On Wed, Dec 17, 2008 at 11:46 AM, Dvir Volk wrote: > 1.as root run: > yum groupinstall "Development Tools" "Development Libraries" > should take care of all the things you need to compile stuff. > thanks, but i was hopeing for a more general answer, not specific to g++. > > > 2. try using scree

[Herzelinux] Hai Zaar on Initramfs - boot your Linux well

2008-12-17 Thread Gilad Ben-Yossef
Hi all, This is a reminder that tomorrow, Thursday, 18 Dec 2008 at 18:30, Herzelinux will host Hai Zaar lecture entitled "Initramfs - boot your Linux well". This is the lecture was originally scheduled to last week but was postponed. The lecture will cover: * What happens between grub and

Re: few questions

2008-12-17 Thread Amos Shapira
2008/12/17 Erez D : > hi. > > 1. in ubuntu, if i type "g++" and don't have it installed, it will tell me > to "sudo apt-get install pkg-somthing" > can i know that easily in fc10 what yum command i need to get g++ ? (or any > other file) I think "yum search " or "yum whatprovides " might do this j

Re: few questions

2008-12-17 Thread Baruch Siach
Hi Dvir, Erez, On Wed, Dec 17, 2008 at 11:46:43AM +0200, Dvir Volk wrote: > 2. try using screen to run you program, and then you can access it from > anywhere via ssh. > > 2. i have a program running on a remote linux-box (fc10) on vt1 (i.e. > > alt-ctrl-f1). can i connect to that vt withough acce

Re: few questions

2008-12-17 Thread Dvir Volk
1.as root run: yum groupinstall "Development Tools" "Development Libraries" should take care of all the things you need to compile stuff. 2. try using screen to run you program, and then you can access it from anywhere via ssh. btw, it's not FC10, but F10. they removed the Core from the name. On

few questions

2008-12-17 Thread Erez D
hi. 1. in ubuntu, if i type "g++" and don't have it installed, it will tell me to "sudo apt-get install pkg-somthing" can i know that easily in fc10 what yum command i need to get g++ ? (or any other file) 2. i have a program running on a remote linux-box (fc10) on vt1 (i.e. alt-ctrl-f1). can i