Re: [ILUG-Cochin.org] DragonFlyBSD perfomance improvements and others
What are your views on using DF as a desktop? Does it have a slackware like ecosystem? ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net
[ILUG-Cochin.org] need help in serial port pgm...
hai, i was writing a serial port program and i dont know what went wrong... #include #include #include #include #include #include #define BAUDRATE B9600 main() { int fd,c, res,STOP; struct termios oldtio,newtio; char buf[255]; fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY ); if (fd <0) {perror("/dev/ttyS0"); exit(-1); } tcgetattr(fd,&oldtio); /* save current serial port settings */ bzero(&newtio, sizeof(newtio)); /* clear struct for new port settings */ newtio.c_cflag = BAUDRATE | CRTSCTS | CS8 | CLOCAL | CREAD; newtio.c_iflag = IGNPAR | ICRNL; newtio.c_oflag = 0; newtio.c_lflag = ICANON; tcflush(fd, TCIFLUSH); tcsetattr(fd,TCSANOW,&newtio); write(fd,"hello world\n",12); while (STOP==0) { res = read(fd,buf,255); buf[res]=0; printf(":%s:%d\n", buf, res); if (buf[0]=='z') STOP=1; } tcsetattr(fd,TCSANOW,&oldtio); } i have connected a wire from RxD to TxD of my serial port. pls help... ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net
Re: [ILUG-Cochin.org] DragonFlyBSD perfomance improvements and others
@altaf What are your views on using *Slackware* as a desktop? Does it have a * * like ecosystem ? ;) he he :D Its all about the level of abstraction you prefer :) On 11 November 2011 19:28, Althaf wrote: > What are your views on using DF as a desktop? Does it have a slackware > like ecosystem? > > ___ > Indian Libre User Group Cochin Mailing List > http://www.ilug-cochin.org/mailing-list/ > http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org > #ilugko...@irc.freenode.net > -- Regards Basil ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net
Re: [ILUG-Cochin.org] DragonFlyBSD perfomance improvements and others
On Fri, Nov 11, 2011 at 7:28 PM, Althaf wrote: > What are your views on using DF as a desktop? Does it have a slackware like > ecosystem? > Could you please clarify what you mean by eco system? Thanks --Siju ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net
Re: [ILUG-Cochin.org] DragonFlyBSD perfomance improvements and others
I dont know about DFBSD. I was using FreeBSD as desktop system for around 1 month. It gives the package management system called ports. That is almost equal to abs in arch linux and gentoo portage. Like arch linux, freebsd also provides binary packages. Once you install desktop system like gnome or kde, all the BSD/Linux act as same. But the difference comes when you move to command line. I guess FreeBSD and DFBSD will provide almost same command line environment. There is a package in FreeBSD that will provide linux binary compatibility and all other stuff needed to get the Linux environment. Since you are asking for desktop system, I will say they are same, since you are going to use same desktop system on both slackware and BSD. On Sat, Nov 12, 2011 at 4:31 AM, Siju George wrote: > On Fri, Nov 11, 2011 at 7:28 PM, Althaf wrote: >> What are your views on using DF as a desktop? Does it have a slackware like >> ecosystem? >> > > Could you please clarify what you mean by eco system? > > Thanks > > --Siju > > ___ > Indian Libre User Group Cochin Mailing List > http://www.ilug-cochin.org/mailing-list/ > http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org > #ilugko...@irc.freenode.net > -- Regards, Unni http://mutexes.org/ http://twitter.com/webofunni http://sourceforge.net/projects/imdbmoviefetche/ ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net
Re: [ILUG-Cochin.org] DragonFlyBSD perfomance improvements and others
Hi On 11/11/11, Althaf wrote: > What are your views on using DF as a desktop? Does it have a slackware like > ecosystem? > Don't bother about x86_64 Dfly for desktop kinda apps (browser with flash), linux ABI etc. Those haven't been ported yet. If you stick to i386, maybe it would do good to install KDE and the like. Personally I prefer to keep things simple and fast, with WindowMaker rather than the esoteric ones like KDE or Gnome on BSds or on the Linuces (sorry , i meant the distros). As per my previous post, dfly don't work with acpi and msk /iwn modules or devices on my Toshiba laptop. I need to disable acpi to get the network. Still, something charming about the Bsds, i prefer to host the servers on one of them. regards Nataraj ___ Indian Libre User Group Cochin Mailing List http://www.ilug-cochin.org/mailing-list/ http://mail.ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net