Re: moving Kubuntu to a new drive

2019-05-05 Thread Shachar Shemesh
Unmount everything and reboot, and you should be golden. Shachar On 01/05/2019 7:29, Shlomo Solomon wrote: The subject says it all. But a few more details. My 1Tb drive is about to die and I'm moving to a new 3Tb drive. The drive (/dev/sda)

Re: moving Kubuntu to a new drive

2019-05-05 Thread borissh1983
On Wednesday, 1 May 2019 7:29:37 IDT Shlomo Solomon wrote: > The subject says it all. But a few more details. My 1Tb drive is > about to die and I'm moving to a new 3Tb drive. The drive > (/dev/sda) includes 5 partitions - / , /home , /boot/efi , /data , > swap. Most of the bad

Re: moving Kubuntu to a new drive

2019-05-02 Thread vordoo
Hi, My 2c... Stop using the bad HDD ASAP. Verify you have all your data from your backups first. If you are missing data from the backups, restore from the bad HDD first. This restoration is best left for professionals or a long read-up

Re: moving Kubuntu to a new drive

2019-05-01 Thread Guy Gold
s it all. But a few more details. My 1Tb drive is > about to die and I'm moving to a new 3Tb drive. The drive > (/dev/sda) includes 5 partitions - / , /home , /boot/efi , /data , > swap. Most of the bad blocks seem to be in the /data partition. > Needless to say, I have good backup

Re: moving Kubuntu to a new drive

2019-04-30 Thread Geoffrey Mendelson
: > The subject says it all. But a few more details. My 1Tb drive is > about to die and I'm moving to a new 3Tb drive. The drive > (/dev/sda) includes 5 partitions - / , /home , /boot/efi , /data , > swap. Most of the bad blocks seem to be in the /data partition. > Needless to say, I ha

moving Kubuntu to a new drive

2019-04-30 Thread Shlomo Solomon
The subject says it all. But a few more details. My 1Tb drive is about to die and I'm moving to a new 3Tb drive. The drive (/dev/sda) includes 5 partitions - / , /home , /boot/efi , /data , swap. Most of the bad blocks seem to be in the /data partition. Needless to say, I have good backups

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Lior Okman
Hi, You could try something like Concourse ( https://concourse-ci.org/ ). It allows you to define a pipeline which is comprised of jobs and the order in which they should be invoked. -- Lior On Tue, Jun 19, 2018 at 9:06 AM, Rabin Yasharzadehe wrote: > Hi all, > > I need some advice,

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Steve Litt
On Tue, 19 Jun 2018 09:42:35 +0300 Omer Zak wrote: > For dependency management, you may want to use 'make' or modern Hi Omer, While corresponding with someone offlist, I had another idea maybe as good as using make. I could make a customized installation of the process supervisor part of

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Steve Litt
On Tue, 19 Jun 2018 12:25:21 +0300 Dimid Duchovny wrote: > Hi Rabin, > > > I'm far from being a linux expert, but isn't dependency between > services handled by systemd? > E.g. https://wiki.archlinux.org/index.php/Systemd/Timers If you drive on that side of the road :-) More seriously, I

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Steve Litt
On Tue, 19 Jun 2018 09:42:35 +0300 Omer Zak wrote: > For dependency management, you may want to use 'make' If you can depend on each task to create specific files, yeah, that sounds like a great idea. I should have thought of it. And then you just put it in a loop so things are always being

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread linux.il
I suggest to check Jenkins (as already suggested) and Rundeck. Vitaly On Tue, Jun 19, 2018 at 9:06 AM, Rabin Yasharzadehe wrote: > Hi all, > > I need some advice, currently I have a huge cron file which schedules > tasks one after anther, and each task is position precisely (with some room >

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Moish
try GNUbatch On 19/06/2018 09:06, Rabin Yasharzadehe wrote: Hi all, I need some advice, currently I have a huge cron file which schedules tasks one after anther, and each task is

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Omer Zak
1. Execution time limits: Ansible has async with polling intervals. I did not research for methods to kill hung tasks. https://docs.ansible.com/ansible/latest/user_guide/playbooks_async.html 2. Dashboard-like functionality According to:

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Ari Becker
Hi Rabin, Did you consider using Jenkins? It may be a little heavyweight, but it should be relatively easy to set up and configure. You can use the same scripts you're using today, the ability to state which jobs run on which nodes, set up dependencies between them, set timeouts, set cron

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Rabin Yasharzadehe
systemd is a complete different tool, which was not designed for this kinda purpose. (maybe in the future it will grow to be something like that ;-) ) I'm looking for something a bit more sophisticated then "go to this machine" and "run this script" and "expect this result" i like to define

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Dimid Duchovny
Hi Rabin, I'm far from being a linux expert, but isn't dependency between services handled by systemd? E.g. https://wiki.archlinux.org/index.php/Systemd/Timers HTH 2018-06-19 12:12 GMT+03:00 Moish : > Try GNUbatch. > > > On June 19, 2018 9:42:35 AM GMT+03:00, Omer Zak wrote: > >> For

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Moish
Try GNUbatch. On June 19, 2018 9:42:35 AM GMT+03:00, Omer Zak wrote: >For dependency management, you may want to use 'make' or modern >equivalents ('ant', 'gradle', etc.). >For controlling remote nodes, 'ansible' may be able to do the work. > >--- Omer Zak > > >On Tue, 2018-06-19 at 09:06

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Rabin Yasharzadehe
I'll have to read the documentation to learn more, but this project seems barely maintained as only minor versions each year or two (last release was 2 years ago), that doesn't give a lot of confidence. but i'll check it out thanks. -- Rabin On Tue, 19 Jun 2018 at 09:43, Marc Volovic wrote:

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Omer Zak
For dependency management, you may want to use 'make' or modern equivalents ('ant', 'gradle', etc.). For controlling remote nodes, 'ansible' may be able to do the work. --- Omer Zak On Tue, 2018-06-19 at 09:06 +0300, Rabin Yasharzadehe wrote: > Hi all,  > > I need some advice, currently I have

Re: Moving away from cron jobs to some workflow manager

2018-06-19 Thread Rabin Yasharzadehe
never heard of it, but from reading the manual and the 10minute presentation , it's seems like it is more suitable for data crunching, where you have a pool of compute resources and you submit jobs to it. my case is a bit different, where I have many jobs which need to run (orchestrated) on there

Moving away from cron jobs to some workflow manager

2018-06-19 Thread Rabin Yasharzadehe
Hi all, I need some advice, currently I have a huge cron file which schedules tasks one after anther, and each task is position precisely (with some room for error) to start after it predecessor. So if one job start at 00:00 and it will go and fetch some files and it takes 3minutes the next job

[OT] Moving to Jerusalem - Looking for a Job

2015-09-29 Thread Amichai Rotman
Hi All, This is slightly off-topic: Do to personal reasons, I have to move back to Jerusalem. In order to do that, I need a job... - I have a lot of experience with troubleshooting and fixing computer problems (software and hardware). - I am using Linux since 1999: Installation,

Re: Moving mail

2010-09-24 Thread Tzafrir Cohen
On Thu, Sep 23, 2010 at 07:12:10PM +0200, Geoff Shang wrote: The new mail has been showing up here for months, and everyone who uses her Email service is very happy with our hosting of her Email. What I want to do now is move the old remaining mail from the old site into the equivalent

Moving mail

2010-09-23 Thread Geoff Shang
at moving her site but it's currently written in Cold Fusion which could cause difficulties ... but I digress. The new mail has been showing up here for months, and everyone who uses her Email service is very happy with our hosting of her Email. What I want to do now is move the old remaining

Re: Moving mail

2010-09-23 Thread Geoff Shang
On Thu, 23 Sep 2010, Moish wrote: Connect to the old mail system, download the messages to local storage, connect to the new system using imap and then move the mail from local folders to remote folders. I've done it with Thunderbird but any decent client would do it. I recall that there were

Re: Moving mail

2010-09-23 Thread Moish
to ours. We're also looking at moving her site but it's currently written in Cold Fusion which could cause difficulties ... but I digress. The new mail has been showing up here for months, and everyone who uses her Email service is very happy with our hosting of her Email. What I want to do now

Re: Moving house: have at my junk

2010-08-08 Thread Dotan Cohen
On Thu, Aug 5, 2010 at 11:49, Itay Donenhirsch i...@bazoo.org wrote: hi where do you live? Nesher, near Haifa. -- Dotan Cohen http://gibberish.co.il http://what-is-what.com ___ Linux-il mailing list Linux-il@cs.huji.ac.il

Re: Moving house: have at my junk

2010-08-08 Thread geoffrey mendelson
On Aug 8, 2010, at 7:19 PM, Dotan Cohen wrote: On Thu, Aug 5, 2010 at 11:49, Itay Donenhirsch i...@bazoo.org wrote: hi where do you live? Nesher, near Haifa. Speaking of that, there is some things I want, but have no way of getting. If anyone is going there and then coming to

Re: Moving house: have at my junk

2010-08-05 Thread Itay Donenhirsch
hi where do you live? On Thu, Aug 5, 2010 at 12:23 AM, Dotan Cohen dotanco...@gmail.com wrote: We're moving house and our junk is your gain. Below are two photos of the stuff you can adopt. I'm too tired now to list it all out, so I'll do that tomorrow morning. Enjoy. http:/dotancohen.com

Moving house: have at my junk

2010-08-04 Thread Dotan Cohen
We're moving house and our junk is your gain. Below are two photos of the stuff you can adopt. I'm too tired now to list it all out, so I'll do that tomorrow morning. Enjoy. http:/dotancohen.com/images/junk.jpg http:/dotancohen.com/images/pci_junk.jpg -- Dotan Cohen http://gibberish.co.il

Re: Moving house: have at my junk

2010-08-04 Thread Dotan Cohen
I've had my coffee, here are the details: junk.jpg: * Atari video computer system * HP 4255 (needs work), HP 1600 (needs cartridges), Assorted chargers * Mango phone, Universal solar phone charger, Jabra bluetooth headset, Silicon case for N95, 4 port KVM, 20GB WD IDE hard drives, Optical drive

moving from ADSL to HOT

2009-09-16 Thread shlomo solomon
This has been discussed before, but not recently and things do change over time. So, I'd like to hear opinions. Is there any technical reason not to make the move? I've been on ADSL since the beginning of the service. At the moment I have a Bezeq supplied Siemens SL2-141 Modem/Router/WiFi

Re: moving from ADSL to HOT

2009-09-16 Thread geoffrey mendelson
On Sep 16, 2009, at 6:21 PM, shlomo solomon wrote: This has been discussed before, but not recently and things do change over time. So, I'd like to hear opinions. I've have both, a 2.5m aDSL line and a 5m HOT line. The aDSL line uses 012 as my ISP, the HOT line as Netvision. I really

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread Dotan Cohen
2008/10/8 Shlomo Solomon [EMAIL PROTECTED]: I'm thinking of moving from ADSL to HOT (Cable). I wanted to know 2 things: 1 - Since today I have an ADSL router (bought from Bezek), I no longer use pptp, NAT or any other Linux tools to connect to the Internet. The router is the only computer

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread Dotan Cohen
2008/10/9 Shlomo Solomon [EMAIL PROTECTED]: Now I'm confused. Firstly, I certainly don't expect to plug the HOT modem into the ADSL plug. As I already wrote (see quote above), I thought I could plug the HOT modem into one of the ethernet ports. I may be missing something, but I don't

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread Geoffrey S. Mendelson
On Thu, Oct 09, 2008 at 10:20:22PM +0200, Shlomo Solomon wrote: Now I'm confused. Firstly, I certainly don't expect to plug the HOT modem into the ADSL plug. As I already wrote (see quote above), I thought I could plug the HOT modem into one of the ethernet ports. I may be missing something,

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread Geoffrey S. Mendelson
On Fri, Oct 10, 2008 at 09:23:23AM +0200, Dotan Cohen wrote: I have lots of problems with Hot disconnecting and very high latency. Hot blames Nezeq Beinleimi, Nezek blames Hot. I personally believe that Nezeq is to blame for the latency, but Hot is to blame for the _hours_ of downtime every

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread shimi
directly to the Internet. My assumption is that I could still use the same router after moving to HOT. I would just have to unplug the ADSL line and plug the HOT modem into one of the ethernet ports on the router. Am I correct? If you could fit a RJ-45 plug into a RJ-11 socket... (and even if you

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread Geoff Shang
Shlomo Solomon wrote: My assumption is that I could still use the same router after moving to HOT. I would just have to unplug the ADSL line and plug the HOT modem into one of the ethernet ports on the router. Am I correct? well if you want to still use the router as a router, I'd think

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread Shlomo Solomon
On Thursday 09 October 2008, shimi wrote: On Thu, Oct 9, 2008 at 7:38 PM, Shlomo Solomon wrote: My assumption is that I could still use the same router after moving to HOT. I would just have to unplug the ADSL line and plug the HOT modem into one of the ethernet ports on the router. Am I

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread shimi
On Thu, Oct 9, 2008 at 10:20 PM, Shlomo Solomon [EMAIL PROTECTED]wrote: On Thursday 09 October 2008, shimi wrote: On Thu, Oct 9, 2008 at 7:38 PM, Shlomo Solomon wrote: My assumption is that I could still use the same router after moving to HOT. I would just have to unplug the ADSL

Re: router compatibility (was Re: moving from ADSL to HOT (Cable))

2008-10-10 Thread Geoffrey S. Mendelson
On Fri, Oct 10, 2008 at 10:47:39AM +0200, Shlomo Solomon wrote: OK - so assuming I can't use the router I bought fom Bezeq after moving to HOT, can anyone say if they've had any Linux experience (good or bad) using the cheap routers sold by www.ivory.co.il? The two models they have are: 1

router compatibility (was Re: moving from ADSL to HOT (Cable))

2008-10-10 Thread Shlomo Solomon
bought fom Bezeq after moving to HOT, can anyone say if they've had any Linux experience (good or bad) using the cheap routers sold by www.ivory.co.il? The two models they have are: 1 - wr541G for 148 shekel (or 180 shekels with an additional USB dongle - WN321G) 2 - wr641G for 195 shekel

Re: moving from ADSL to HOT (Cable)

2008-10-10 Thread Yedidyah Bar-David
On Thu, Oct 09, 2008 at 10:20:22PM +0200, Shlomo Solomon wrote: On Thursday 09 October 2008, shimi wrote: On Thu, Oct 9, 2008 at 7:38 PM, Shlomo Solomon wrote: My assumption is that I could still use the same router after moving to HOT. I would just have to unplug the ADSL line

Re: moving from ADSL to HOT (Cable)

2008-10-09 Thread Geoffrey S. Mendelson
On Wed, Oct 08, 2008 at 09:41:48PM +0200, Gilboa Davara wrote: Do remember that unlike PPTP/L2TP, as far as my firewall is concerned (which connects directly over Ethernet to the HOT modem), I'm using normal IP-over-Ethernet to connect to the Internet (with somewhat lower MTU). You are a very

Re: moving from ADSL to HOT (Cable)

2008-10-09 Thread Shlomo Solomon
after moving to HOT. I would just have to unplug the ADSL line and plug the HOT modem into one of the ethernet ports on the router. Am I correct? -- Shlomo Solomon http://the-solomons.net Sent by KMail 1.9.9 (KDE 3.5.9) on LINUX Mandriva 2008.1

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread sara fink
. Their infrastructure might be better, but when it is untreated it is much more unreliable. See one example http://www.warning.org.il and http://www.tluna.co.il/companies/company.asp?CompanyID=128 On Wed, Oct 8, 2008 at 5:41 AM, Shlomo Solomon [EMAIL PROTECTED]wrote: I'm thinking of moving from ADSL

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Shlomo Solomon
On Wednesday 08 October 2008, Gilboa Davara wrote: If you ISP supports it (Barak does) you can use DHCP instead of L2TP/PPTP. In this case, you router no longer needs to do anything (beyond NAT) Thanks, but maybe my question wasn't clear enough. In the past, I did pptp and NAT on my Linux box

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Eran Levy
Since you have a router, you shouldn't have any problem connecting your network. Just configure your router. I'm using HOT cables + netvision and it works fine. Eran On Wed, Oct 8, 2008 at 9:20 AM, Shlomo Solomon [EMAIL PROTECTED]wrote: On Wednesday 08 October 2008, Gilboa Davara wrote: If

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Shlomo Solomon
On Wednesday 08 October 2008, Geoffrey S. Mendelson wrote: As for the phone deal, it's ok, but there are better and cheaper deals depending on what call quality you want, and where you want to call. To replace a BEZEQ line, it's a good deal and does not use their infrastructure. Thanks for the

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Shlomo Solomon
On Wednesday 08 October 2008, Geoffrey S. Mendelson wrote: First of all, you do not want to use DHCP. The actual name of what is hapening is called MPLS and it to be blunt sucks. The extra overhead of a pptp or more likely l2tp tunnel is IMHO worth it, although if you are at the edge of

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Geoffrey S. Mendelson
On Wed, Oct 08, 2008 at 11:43:55AM +0200, Shlomo Solomon wrote: easier to manage and use /etc/hosts), I added the MAC addresses of all machines to the reserved IP address list and specified what IP to give each. This gives me 2 advantages: 1 - constant IPs on the network 2 - If needed, I can

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Geoffrey S. Mendelson
On Wed, Oct 08, 2008 at 11:03:25AM +0200, Geoffrey S. Mendelson wrote: As for reliability, service and speed, the best thing to do is to call HOT and ask for their business internet sales office. They offer higher speeds, better reliabilty and they will come and fix problems a lot better and a

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Geoffrey S. Mendelson
On Wed, Oct 08, 2008 at 09:20:58AM +0200, Shlomo Solomon wrote: Thanks, but maybe my question wasn't clear enough. In the past, I did pptp and NAT on my Linux box and shared my internet connection over the entire network. Since I bought an ADSL router from Bezek, everything is literaly plug

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Gilboa Davara
On Wed, 2008-10-08 at 21:36 +0200, Gilboa Davara wrote: On Wed, 2008-10-08 at 11:03 +0200, Geoffrey S. Mendelson wrote: First of all, you do not want to use DHCP. The actual name of what is hapening is called MPLS and it to be blunt sucks. The extra overhead of a pptp or more likely l2tp

Re: moving from ADSL to HOT (Cable)

2008-10-08 Thread Gilboa Davara
On Wed, 2008-10-08 at 11:03 +0200, Geoffrey S. Mendelson wrote: First of all, you do not want to use DHCP. The actual name of what is hapening is called MPLS and it to be blunt sucks. The extra overhead of a pptp or more likely l2tp tunnel is IMHO worth it, although if you are at the edge of

moving from ADSL to HOT (Cable)

2008-10-07 Thread Shlomo Solomon
I'm thinking of moving from ADSL to HOT (Cable). I wanted to know 2 things: 1 - Since today I have an ADSL router (bought from Bezek), I no longer use pptp, NAT or any other Linux tools to connect to the Internet. The router is the only computer connected and all my Linux boxes (and my kids

Re: moving from ADSL to HOT (Cable)

2008-10-07 Thread Gilboa Davara
On Wed, 2008-10-08 at 05:41 +0200, Shlomo Solomon wrote: I'm thinking of moving from ADSL to HOT (Cable). I wanted to know 2 things: 1 - Since today I have an ADSL router (bought from Bezek), I no longer use pptp, NAT or any other Linux tools to connect to the Internet. The router

Moving OS from one Vmware to another

2006-10-26 Thread Michael Ben-Nes
Hello,I need to move Debian from a Vmware with 1GB space to a new one with 2GB.What is the easiest way to achieve exact copy ?Thanks,Miki -- --Michael Ben-Nes - Internet Consultant andDirector.http://www.epoch.co.il - weaving the Net.Cellular:

Re: Moving OS from one Vmware to another

2006-10-26 Thread Jacob Broido
Hey,Inorder to answer you, I need some more inputs from you.1) Which product of Vmware are you talking about? Is it ESX ? or Workstation,GSX,Server?2) You've mentioned 1GB-2GB... Do you want to extend existing VM of 1GB to span accross 2GB ? Is it acceptable for you to perform an offline

Re: Moving OS from one Vmware to another

2006-10-26 Thread Shachar Shemesh
Michael Ben-Nes wrote: Hello, I need to move Debian from a Vmware with 1GB space to a new one with 2GB. What is the easiest way to achieve exact copy ? Same as between hard disks, I guess. Connect the new hard disk to the existing machine. Create the partition layout you want. Copy the files

Re: Moving OS from one Vmware to another

2006-10-26 Thread Jacob Broido
1)Shutdown the vm2) vmware-vdiskmanager -x new size file.vmdk3) boot the VM4) Resize the partition filesystems using standard linux tools... (parted,etc...)Voila. On 10/26/06, Shachar Shemesh [EMAIL PROTECTED] wrote: Michael Ben-Nes wrote: Hello, I need to move Debian from a Vmware with 1GB space

Re: Moving OS from one Vmware to another

2006-10-26 Thread Jacob Broido
1)Shutdown the vm 2) vmware-vdiskmanager -x new size file.vmdk 3) boot the VM 4) Resize the partition filesystems using standard linux tools... (parted,etc...) Voila. On 10/26/06, Jacob Broido [EMAIL PROTECTED] wrote: Hey, Inorder to answer you, I need some more inputs from you. 1) Which

Re: Moving OS from one Vmware to another

2006-10-26 Thread Shachar Shemesh
Jacob Broido wrote: 1)Shutdown the vm 2) vmware-vdiskmanager -x new size file.vmdk 3) boot the VM 3.5) Make a VMWare snapshot, so that if step 4 goes wrong, you'll still be ok. 4) Resize the partition filesystems using standard linux tools... (parted,etc...) booted from a live CD (Knoppix

Re: Moving

2006-07-13 Thread Shachar Shemesh
Marc A. Volovic wrote: Lo, children. I am moving house. By 1st August. This being the case, and there being HEAVY stuff I am not really interested in moving, the following equipment is for TRADE or SALE (with significant preference to trade): 1. nStor CR8e RAID box with 7*18GB disks

Re: Moving

2006-07-05 Thread Ira Abramov
Quoting Marc A. Volovic, from the post of Tue, 04 Jul: No - seriously, I do NOT realy expect any of this. Just engage my interest. Truth be told, had I not been moving house, I'd be delighted to get Dawn Sun's working Amiga. I think that's being used for PHP development these days. I have

[OFFTOPIC] Re: Moving

2006-07-05 Thread Omer Zak
On Wed, 2006-07-05 at 16:20 +0300, Ira Abramov wrote: Quoting Marc A. Volovic, from the post of Tue, 04 Jul: No - seriously, I do NOT realy expect any of this. Just engage my interest. Truth be told, had I not been moving house, I'd be delighted to get Dawn Sun's working Amiga. I think

Moving

2006-07-04 Thread Marc A. Volovic
Lo, children. I am moving house. By 1st August. This being the case, and there being HEAVY stuff I am not really interested in moving, the following equipment is for TRADE or SALE (with significant preference to trade): 1. nStor CR8e RAID box with 7*18GB disks 2. nStor CR8e RAID

Re: Moving

2006-07-04 Thread Amos Shapira
On 04/07/06, Marc A. Volovic [EMAIL PROTECTED] wrote: Lo, children. I am moving house. By 1st August. This being the case, and there being HEAVY stuff I am not really interested in moving, the following equipment is for TRADE or SALE (with significant preference to trade): 1. nStor

Re: Moving

2006-07-04 Thread Marc A. Volovic
Quoth Eli Marmor: But I'm sure other people will be interested to have answers for the following questions: 1. nStor CR8e RAID box with 7*18GB disks 2. nStor CR8e RAID box with 8*36GB disks Including disks? How old and what RPM? I am not sure how to write #1 and #2

Re: Moving

2006-07-04 Thread Marc A. Volovic
Quoth Amos Shapira: Should this NOT go to someone by 30th of July, on the 31st of July #1 and #2 will be trash-binned and #4 will (possibly) be sent to Brasil to OpenBSD Wouldn't these be useful for community servers? Not really. they need a head to connect to something (i.e. a machine with a

Re: Moving

2006-07-04 Thread Shachar Shemesh
Marc A. Volovic wrote: Not really. they need a head to connect to something (i.e. a machine with a scsi controller). And - I do not know anyone with anything like the competence and the willingness to maintain this shit. Maybe,when I move, I'll contrib them to the local school. Not to

Re: Moving

2006-07-04 Thread Marc A. Volovic
Quoth Marc A. Volovic: 3. IBM x306 1U pizzabox 2.8GHz, 512MB RAM, SCSI disk 4. Sun Ultra 5 270MHz, 256MB, 10GB disk 5. Sun Ultra 60 1*450MHz, 1GB, 2*18GB disks, KB+M All three for ONE of: Namiki Cherry Blossom Namiki Wave and Plover Namiki Raden 2000

Re: Moving

2006-07-04 Thread Marc A. Volovic
I am moving house. By 1st August. This being the case, and there being Also: 6. Systel PM1500 intelligent UPS -- ---MAV Marc A. Volovic [EMAIL PROTECTED] = To unsubscribe, send mail

Re: Moving

2006-07-04 Thread Marc A. Volovic
Quoth Shachar Shemesh: Marc A. Volovic wrote: Not to mention that they can, today, be replaced by a single disk Yes. They are TWO 3U units, with TWO power supplies each and a LOT of leds. Shachar -- Shachar Shemesh Lingnu Open Source Consulting ltd. Have you backed up

Re: Moving

2006-07-04 Thread Marc A. Volovic
Sterling Hawk A special prize for the poor person who shells out for this :-)... A development kit for a nice microcontroller. No - seriously, I do NOT realy expect any of this. Just engage my interest. Truth be told, had I not been moving house, I'd be delighted to get Dawn Sun's working Amiga. M

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-14 Thread Shlomi Fish
Hi! Just wanted to note that I fully agree with everything Amos Shapira said on this message. Hear, hear! Regards, Shlomi Fish On Saturday 14 May 2005 03:33, Amos Shapira wrote: On 5/13/05, Yedidyah Bar-David [EMAIL PROTECTED] wrote: common as a server. So the crackers develop

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-14 Thread Uri Bruck
Shlomi Fish wrote: It's bread and circuses in English, AFAIR. Comes from Latin, if I know. Right and Right. http://www.bartleby.com/61/39/B0463950.html -- Thanks, Uri http://translation.israel.net = To unsubscribe, send mail to

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-14 Thread Yedidyah Bar-David
they want. Most people do not care much about security, so MS does not invest in it. Of course doing both is possible, as you showed. Or maybe I should say, people do not care _enough_ about security. They (most of them) would not consider moving off Windows only because it's not (less?) secure. I

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-14 Thread Amos Shapira
On 5/14/05, Yedidyah Bar-David [EMAIL PROTECTED] wrote: On Sat, May 14, 2005 at 10:33:42AM +1000, Amos Shapira wrote: On 5/13/05, Yedidyah Bar-David [EMAIL PROTECTED] wrote: common as a server. So the crackers develop means to break linux servers. If/When linux is very common on the

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-14 Thread Yedidyah Bar-David
On Sat, May 14, 2005 at 09:10:59PM +1000, Amos Shapira wrote: On 5/14/05, Yedidyah Bar-David [EMAIL PROTECTED] wrote: On Sat, May 14, 2005 at 10:33:42AM +1000, Amos Shapira wrote: On 5/13/05, Yedidyah Bar-David [EMAIL PROTECTED] wrote: common as a server. So the crackers develop means to

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-14 Thread Michael Vasiliev
On Friday May 13 2005 15:42, Shlomi Fish wrote: Actually, a default install of Fedora took several months to break into. As opposed to less than 20 minutes for Windows. Could you please provide the source for that claim? I remember an anecdotial honeypots research in recent years done

Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Ori Idan
Kaspi Cc: linux-il@linux.org.il Subject: Re: Moving to Linux On Sun, 8 May 2005, Dan Kaspi wrote: this can be easiy changed; moreover, he claimed that since Linux is an open source, maybe it is even easier to develop viruses/spyware to it. In this point I did

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Omer Zak
On Fri, 2005-05-13 at 10:18 +0300, Ori Idan wrote: I think this is an academic debate if GNU/Linux is more secured or not. For the simple people, let us look at the facts: 1. When was the last time any of this list members has seen a virus in his GNU/Linux desktop? (I guess the answer is

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Yedidyah Bar-David
On Fri, May 13, 2005 at 10:18:49AM +0300, Ori Idan wrote: I think this is an academic debate if GNU/Linux is more secured or not. For the simple people, let us look at the facts: 1. When was the last time any of this list members has seen a virus in his GNU/Linux desktop? (I guess the

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Shlomi Fish
On Friday 13 May 2005 12:05, you wrote: On Fri, May 13, 2005 at 10:18:49AM +0300, Ori Idan wrote: I think this is an academic debate if GNU/Linux is more secured or not. For the simple people, let us look at the facts: 1. When was the last time any of this list members has seen a virus

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Tzafrir Cohen
On Fri, May 13, 2005 at 12:05:45PM +0300, Yedidyah Bar-David wrote: On Fri, May 13, 2005 at 10:18:49AM +0300, Ori Idan wrote: I think this is an academic debate if GNU/Linux is more secured or not. For the simple people, let us look at the facts: 1. When was the last time any of this

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Tzafrir Cohen
On Fri, May 13, 2005 at 02:20:26PM +0300, Shlomi Fish wrote: On Friday 13 May 2005 12:05, Didi wrote: The reasons I don't prefer LISP are: [snip] We're here for windows vs. linux religous wars. Hackers-il is for languages religious wars. This thread is long enough as it is. Just to prove my

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Shlomi Fish
On Friday 13 May 2005 15:01, Tzafrir Cohen wrote: On Fri, May 13, 2005 at 02:20:26PM +0300, Shlomi Fish wrote: On Friday 13 May 2005 12:05, Didi wrote: The reasons I don't prefer LISP are: [snip] We're here for windows vs. linux religous wars. Hackers-il is for languages religious wars.

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Amos Shapira
On 5/13/05, Ori Idan [EMAIL PROTECTED] wrote: I think this is an academic debate if GNU/Linux is more secured or not. For the simple people, let us look at the facts: 1. When was the last time any of this list members has seen a virus in his GNU/Linux desktop? (I guess the answer is never)

Re: Is open source more secure? [was Re: Moving to Linux]

2005-05-13 Thread Amos Shapira
On 5/13/05, Yedidyah Bar-David [EMAIL PROTECTED] wrote: common as a server. So the crackers develop means to break linux servers. If/When linux is very common on the desktop, you'll start seeing the same there. Same flawed FUD used by the MS camp. Apache is the most common web server in the

Re: Moving to Linux

2005-05-11 Thread Shachar Shemesh
Amos Shapira wrote: On 5/9/05, Shlomi Fish [EMAIL PROTECTED] wrote: On Monday 09 May 2005 11:40, Amos Shapira wrote: I'm not that deep into Windows administration, I just know that, as far as I noticed, I never had to bother with it. Well recently I heard of someone who told me MS

Re: Moving to Linux

2005-05-11 Thread Shlomi Fish
Hi Shachar! Would you mind if I put this message of yours (or at your option, an HTML page that explains it all, which you or I will write.) on the Freecell Solver site and its mirror, as well as forward this message to the fc-solve-discuss mailing list. Another good thing would be to try to

Re: Moving to Linux

2005-05-11 Thread Shachar Shemesh
Shlomi Fish wrote: Hi Shachar! Would you mind if I put this message of yours (or at your option, an HTML page that explains it all, which you or I will write.) on the Freecell Solver site and its mirror, as well as forward this message to the fc-solve-discuss mailing list. Another good thing

Microsoft Freecell [Re: Moving to Linux]

2005-05-11 Thread Shlomi Fish
On Wednesday 11 May 2005 16:36, Shachar Shemesh wrote: Shlomi Fish wrote: Hi Shachar! Would you mind if I put this message of yours (or at your option, an HTML page that explains it all, which you or I will write.) on the Freecell Solver site and its mirror, as well as forward this

Re: Moving to Linux

2005-05-10 Thread Danny Lieberman
my dad is 82 and he is fine on the command line I walked him thru some file system checking the other day on the phone - then again he's a PhD in System Science from UCLA (not a typical user) :-) danny Tzafrir Cohen wrote: On Tue, May 10, 2005 at 10:57:40AM +1000, Amos Shapira wrote: On

Re: Moving to Linux

2005-05-10 Thread Dan Kaspi
is needed) . Since using application is presumably the easier part of moving to linux, I also try to to convince him to try to install Colinux under windows, so that he can play a bit with the command line,starting services, a little shell,installing packages (apt-get,yum,...) etc. (I do not know

Re: Moving to Linux

2005-05-10 Thread Dan Kaspi
,gedit,JEdit,... Regads, Dan Kaspi From: Kfir Lavi [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Dan Kaspi [EMAIL PROTECTED] CC: linux-il@linux.org.il Subject: Re: Moving to Linux Date: Mon, 9 May 2005 15:28:01 +0300 On Sunday 08 May 2005 15:40, you wrote: Hello, I tried to convince

Re: Moving to Linux

2005-05-10 Thread Amos Shapira
On 5/10/05, Tzafrir Cohen [EMAIL PROTECTED] wrote: Yes, because it's very simple. You have to teach her once how to get to the shell (double click on that icon of the square in the toolbar). She can have some extra open and it won't be a problem. I should be able to do the same on Windows,

Re: Moving to Linux

2005-05-10 Thread Amos Shapira
technical problems in linux where an immediate solution is needed) . Great to hear that. Since using application is presumably the easier part of moving to linux, I also try to to convince him to try to install Colinux under windows, so that he can play a bit with the command line,starting

  1   2   >