pcbsd-developer Mailing List for PC-BSD (Page 3)
Status: Beta
Brought to you by:
kmoore134
You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(47) |
Nov
(15) |
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
|
Feb
(2) |
Mar
(18) |
Apr
(16) |
May
(18) |
Jun
(12) |
Jul
(33) |
Aug
(42) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
2007 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Andrei K. <an...@bs...> - 2006-07-28 20:34:06
|
On Friday 28 July 2006 12:11 pm, Charles A. Landemaine wrote: > On 7/28/06, pcb...@li... > > <pcb...@li...> wrote: > > Anyways, the FreeBSD bootloader is very good at what it does, however > > it lacks a little feature which end users love, namely eye candy... > > That's fine. If some one can figure out how to add a background image > and to boot linux partitions, let's stick to the FreeBSD bootloader :) The current FreeBSD bootmanager is called 'boot0'. It has replaced booteasy (which was indeed used in the past). The FreeBSD boot manager can be installed during the installation to allow you to boot multiple operating systems. After the install, the boot manager can be configured with the boot0cfg program. boot0cfg is command-line driven. Fortunately, you probably do not need to be concerned with most of the options. There are a couple of options that you might be interested in, though. boot0cfg -B will install the boot manager onto the hard disk's MBR. This is one way to restore the boot manager if Windows should wipe it out. Of course, you would have to boot from a FreeBSD boot disk to use this if the boot manager had been wiped out. In addition, if you wish to make changes to the boot manager configuration, you will need to reinstall it using this command, followed by the changes you wish to make. -v boot0cfg will be more verbose about what it is doing. -b image Where image is the name of the boot image to use. The default is /boot/boot0. -d drive Where drive is the drive number used by the PC's BIOS for referencing the disk. Usually this is 0x80 for the first drive, 0x81 for the second, and so on. -f file Where file is the name of a file that the original MBR should be backed up to in case there are problems. If the file already exists, it will be truncated. The -o option is also supported and it contains a comma-separated list of options. packet If the PC's BIOS supports it, this will tell boot0cfg to use int 0x13 extensions instead of CHS for disk IO. This will get around the 1024 cylinder boot limit described previously. However, if the PC's BIOS does not support this option, it may cause the system to hang on the next reboot. noupdate By default, the boot manager can write to the MBR and update it (to set the active flag, etc). This can cause problems if you have hardware antivirus support enabled that prevents writing to the MBR and such. The noupdate option will prevent the boot manager from attempting to write to the MBR. boot0cfg also supports the -s n option, where n is a number from 1 to 5 that specifies the default slice (commonly referred to as partitions in MS-DOS/Windows) to boot if no selection is made. The -t n option is also supported, where n is a number representing the number of "ticks" to wait before booting the default operating system. There are approximately 18.2 ticks in a second. Here is patch for replacing DOS boot name with Windows... http://docs.freebsd.org/cgi/getmsg.cgi?fetch=1506483+0+archive/2005/freebsd-questions/20050612.freebsd-questions |
From: Charles A. L. <lan...@gm...> - 2006-07-28 19:11:48
|
On 7/28/06, pcb...@li... <pcb...@li...> wrote: > Anyways, the FreeBSD bootloader is very good at what it does, however > it lacks a little feature which end users love, namely eye candy... That's fine. If some one can figure out how to add a background image and to boot linux partitions, let's stick to the FreeBSD bootloader :) -- Charles A. Landemaine. |
From: Andrei K. <an...@bs...> - 2006-07-28 18:08:33
|
Please test this solution for these bugs: http://bugs.pcbsd.org/bug.php?op=show&bugid=96 http://bugs.pcbsd.org/bug.php?op=show&bugid=85&pos=15 # sysctl -a | grep dirhash UFS dirhash 291 54K - 489 16,32,64,128,256,512 vfs.ufs.dirhash_docheck: 0 vfs.ufs.dirhash_mem: 421372 vfs.ufs.dirhash_maxmem: 2097152 vfs.ufs.dirhash_minsize: 2560 # sysctl vfs.ufs.dirhash_docheck=1 vfs.ufs.dirhash_docheck: 0 -> 1 Should solve dirhash problem. Andrei |
From: Federico L. <flo...@gm...> - 2006-07-28 15:50:48
|
On Saturday 29 July 2006 00:23, Andrei Kolu wrote: > On Friday 28 July 2006 4:41 am, Mario =C4=90ani=C4=87 wrote: > > On 7/28/06, Charles A. Landemaine <lan...@gm...> wrote: > > > One more reason to drop the default FreeBSD bootloader, it doesn't > > > load Linux on a number of PCs, while Grub does... > > > > Shall we go for grub2? :) > > > > Kind regards, > > Mario > > Lack of knowledge how to run FreeBSD boot manager aka Boot Easy is no > reason to drop it and use Grub instead. > > The FreeBSD boot process can read the kernel to load from virtually > everywhere, no matter where the bootloader was started from. I.e. the > bootloader can be on a floppy and still load a kernel from a harddisk. And > it doesn't have to be told which kernels it should prepare for, it can re= ad > the filesystem by itself. > > Other OSes either narrow down your possible choices which kernel to load = or > they force you to prepare your bootloader for the target kernels. This is > an obvious problem if you already shut down the system and forgot to tell > the bootloader about the new kernel location. FreeBSD's bootloader can > search for itself. > > FreeBSD boot manager is is using Forth based scripting language Ficl and = is > object-oriented. > > I prefer KISS (Keep It Stupid Simple) way of computing. Haha!! I hope that was a typo! Anyways, the FreeBSD bootloader is very good at what it does, however it lacks a little feature which end users love, namely eye candy... Cheers |
From: Andrei K. <an...@bs...> - 2006-07-28 12:23:06
|
On Friday 28 July 2006 4:41 am, Mario =C4=90ani=C4=87 wrote: > On 7/28/06, Charles A. Landemaine <lan...@gm...> wrote: > > One more reason to drop the default FreeBSD bootloader, it doesn't > > load Linux on a number of PCs, while Grub does... > > Shall we go for grub2? :) > > Kind regards, > Mario > Lack of knowledge how to run FreeBSD boot manager aka Boot Easy is no reaso= n=20 to drop it and use Grub instead. The FreeBSD boot process can read the kernel to load from virtually=20 everywhere, no matter where the bootloader was started from. I.e. the=20 bootloader can be on a floppy and still load a kernel from a harddisk. And = it=20 doesn't have to be told which kernels it should prepare for, it can read th= e=20 filesystem by itself.=20 Other OSes either narrow down your possible choices which kernel to load or= =20 they force you to prepare your bootloader for the target kernels. This is a= n=20 obvious problem if you already shut down the system and forgot to tell the= =20 bootloader about the new kernel location. FreeBSD's bootloader can search f= or=20 itself. =46reeBSD boot manager is is using Forth based scripting language Ficl and = is=20 object-oriented. I prefer KISS (Keep It Stupid Simple) way of computing. Andrei |
From: <mar...@gm...> - 2006-07-28 11:41:22
|
On 7/28/06, Charles A. Landemaine <lan...@gm...> wrote: > > One more reason to drop the default FreeBSD bootloader, it doesn't > load Linux on a number of PCs, while Grub does... Shall we go for grub2? :) Kind regards, Mario -- > Charles A. Landemaine. > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > PCBSD-Developer mailing list > PCB...@li... > https://lists.sourceforge.net/lists/listinfo/pcbsd-developer > |
From: Charles A. L. <lan...@gm...> - 2006-07-28 11:35:30
|
One more reason to drop the default FreeBSD bootloader, it doesn't load Linux on a number of PCs, while Grub does... -- Charles A. Landemaine. |
From: Charles A. L. <lan...@gm...> - 2006-07-27 15:28:07
|
Luis Alberto, the Brazilian translator installed 1.2 recently and sent me a few suggestions that we could have a look at for our new system installer: 1. He liked the black splash screen with "PC-BSD" at the center of the screen. 2. Right after the splash screen, there is a blue-yellow-red-and-grey sysinstall-like text-based screen that show a few options before launching the installer(start graphical install; reset X to default vesa driver; etc...). He suggested we keep the same look and feel as the rest of the installer for more consistency. He found this option screen a little primitive from a visual standpoint. 3. The screen where you select languages has a different look and feel as the rest of the installer. 4. Where you select the HDD to install PC-BSD, if you select "Customize DiskLabel", you can't go back if you change your mind. If you don't want to customize DiskLabel anymore, the only way is rebooting the computer. 5. Where you have to type your password, the sentence that says passwords don't match is not visible enough and too far away from where the user's eyes are focused. 6. After installation is done, the best thing would be to eject the CD-ROM automatically instead of having to manually press the button of the CD-ROM drive. 7. When you choose to install the additional languages, the buttons of the wizard aren't translated, while the rest of the wizard is in Brazilian Portuguese. 8. When you load KDE, there is the KDE splash screen that seems to be the only piece of KDE that wasn't branded to PC-BSD, we might think about branding it too. He suggested just keeping the loading icons and text. I think a nice PC-BSD splash screen for KDE would be nice :) 9. Last, but not least, he suggested that the user could choose his native language in the very beginning of the installation process like on SuSE and Ubuntu. -- Charles A. Landemaine. |
From: Andrei K. <an...@bs...> - 2006-07-27 11:50:34
|
On Wednesday 26 July 2006 3:58 pm, Charles A. Landemaine wrote: > On 7/26/06, pcb...@li... > <pcbsd-developer-> >System Installer - Prompt for settings before > install > > > I'd like to have a choice in beginning of installation with radio > > buttons: > > > > "How you want to set up users and all other settings for this computer:" > > 1. Right now, right here. > > 2. After system is installed- in the end on installation. (partitions > > must be configured first anyway ) > > 3. After system is installed and rebooted up successfully. (partitions > > must be configured first anyway) > > 4. Set "handsfree installation" config from networked server, USB or > > floppy disk (set up from XML file data: disk(s), user(s), language(s), > > keyboard(s) and auto-installed PBIs). > > I think this is pointless. Whether the person types her information > before, during or after installation doesn't matter, she will have the > same effort. Now, joining all install steps together is important. > OK. Leave choice nr 2 out. I have my reasons to change set up order sometim= es-=20 for example I install system, but there is no user for couple of minutes an= d=20 then he/she can type username and password later. For "handsfree install"=20 this is obvious. If I know that this particular computer is compatible with= =20 PC-BSD then I can type all setup information in the beginning, but if=20 something goes wrong in the middle of installations and I have to type all= =20 this info again... > > >System Installer - Set Timezone for system > > > > Set multiple keyboards for KDE, multiple languages and timezone. > > Multiple timezone? You can be only at one place at a time :) (unless > you have a Doppelg=E4nger http://en.wikipedia.org/wiki/Doppelganger ) > Where did you read about multiple timezones? I said "... and timezone." > > Xorg detects refresh rate automatically but manual intervention is good > > to have. > > Yes it does, but it's wrong most of the time (X monitor config is > always wrong in my case anyway). > Did you test my script? It works 100% of the times with my installations-=20 tested on 5 different computers so far. I haven't changed refresh rate this= =20 year even once and Xorg detects maximum value automatically, unless you got= =20 some ancient monitor that is crying for dumpster anyway... > > >System Installer - Detect Laptop / Desktop (For setting Numlock) > > > > Detection is not necessary, user can decide itself if this particular > > machine is desktop computer or notebook/laptop. > > Laptop detection is not necessary but it's a big plus. One more thing > the user doesn't need to do to customize his computer. > We need just one radio button to activate numlock in control panel. > > >System Installer - Use GRUB for bootloader? > > > > GRUB is too cryptic for casual user and FreeBSD bootloader is working > > just fine- never had any problems at all. > > Grub can be set up automatically without any user intervention like > Ubuntu does beautifully. A number of users have been dissapointed by > the default FreeBSD bootloader since last year. In a nutshell, they > say it's counter-intuitive, not customizable, and when you have to > load PC-BSD that is on a 2nd hard-drive, instead of loading PC-BSD, > the bootloader reboots the computer when you hit the "Drive 1" boot > option. > I am very happy with FreeBSD boot loader and just hate GRUB bloat. FreeBSD= =20 bootloader is VERY customizable if someone dare to look at scripts. And=20 booting up from second hard drive problem is PC-BSD installer bug not=20 bootloader one. > > >System Installer - Display time elapsed for install and info screens. > > > > Display cpu, memory, disk usage like with "systat -vm" command. > > No bloat please :P This is not a bloat, this is option to look at FreeBSD at first glance and = see=20 how it works. I am always wondered how fast installer copying files to hard= =20 drive and how much it use processor. This feature is must when something go= es=20 awry. > > > And now my additional requests: > > 1) Set multiple partitions for PC-BSD by default > > like: /boot/, /etc/, /usr/, /home/. "/boot/" and "/rescue/" partitions > > should be read-only and mounted r/w only when needed. > > There are advantages and drawbacks to this. I personnally don't want > that on my system, it's a terrible waste of HDD space, and it's > frustrating when you see you have 5GB left on /var and just 50MB free > on /usr Again, did you read what I said- there is no "/var" space in my post. "/boo= t"=20 partition is 25+MB and common users don't have to touch it 99,9% of the tim= es=20 and if something goes fubar it boots up in rescue mode at least. |
From: Charles A. L. <lan...@gm...> - 2006-07-26 22:58:41
|
On 7/26/06, pcb...@li... <pcbsd-developer-> >System Installer - Prompt for settings before install > I'd like to have a choice in beginning of installation with radio buttons= : > > "How you want to set up users and all other settings for this computer:" > 1. Right now, right here. > 2. After system is installed- in the end on installation. (partitions mus= t be > configured first anyway ) > 3. After system is installed and rebooted up successfully. (partitions mu= st be > configured first anyway) > 4. Set "handsfree installation" config from networked server, USB or flop= py > disk (set up from XML file data: disk(s), user(s), language(s), keyboard(= s) > and auto-installed PBIs). I think this is pointless. Whether the person types her information before, during or after installation doesn't matter, she will have the same effort. Now, joining all install steps together is important. > >System Installer - Set Timezone for system > Set multiple keyboards for KDE, multiple languages and timezone. Multiple timezone? You can be only at one place at a time :) (unless you have a Doppelg=E4nger http://en.wikipedia.org/wiki/Doppelganger ) > Xorg detects refresh rate automatically but manual intervention is good t= o > have. Yes it does, but it's wrong most of the time (X monitor config is always wrong in my case anyway). > >System Installer - Detect Laptop / Desktop (For setting Numlock) > Detection is not necessary, user can decide itself if this particular mac= hine > is desktop computer or notebook/laptop. Laptop detection is not necessary but it's a big plus. One more thing the user doesn't need to do to customize his computer. > >System Installer - Use GRUB for bootloader? > GRUB is too cryptic for casual user and FreeBSD bootloader is working jus= t > fine- never had any problems at all. Grub can be set up automatically without any user intervention like Ubuntu does beautifully. A number of users have been dissapointed by the default FreeBSD bootloader since last year. In a nutshell, they say it's counter-intuitive, not customizable, and when you have to load PC-BSD that is on a 2nd hard-drive, instead of loading PC-BSD, the bootloader reboots the computer when you hit the "Drive 1" boot option. > >System Installer - Display time elapsed for install and info screens. > Display cpu, memory, disk usage like with "systat -vm" command. No bloat please :P > And now my additional requests: > 1) Set multiple partitions for PC-BSD by default > like: /boot/, /etc/, /usr/, /home/. "/boot/" and "/rescue/" partitions sh= ould > be read-only and mounted r/w only when needed. There are advantages and drawbacks to this. I personnally don't want that on my system, it's a terrible waste of HDD space, and it's frustrating when you see you have 5GB left on /var and just 50MB free on /usr --=20 Charles A. Landemaine. |
From: Mark A. G. <ma...@in...> - 2006-07-26 12:37:28
|
I think GRUB is very nice for a desktop oriented OS. I think it should possibly have the option that none of the BSD's have(afaik) desktop/server install, and maybe allow the user to individually choose what additional packages they wish to install like fbsd does. -Mark Andrei Kolu wrote: > 1.3 Updates (September 2006) > > >> System Installer - Prompt for settings before install >> > I'd like to have a choice in beginning of installation with radio buttons: > > "How you want to set up users and all other settings for this computer:" > 1. Right now, right here. > 2. After system is installed- in the end on installation. (partitions must be > configured first anyway ) > 3. After system is installed and rebooted up successfully. (partitions must be > configured first anyway) > 4. Set "handsfree installation" config from networked server, USB or floppy > disk (set up from XML file data: disk(s), user(s), language(s), keyboard(s) > and auto-installed PBIs). > > >> System Installer - Set Timezone for system >> > Set multiple keyboards for KDE, multiple languages and timezone. > > >> System Installer - Enable Upgrade option >> > Download installer patches over internet or local update server (local patches > made by admin). > > >> System Installer - Graphical Overhaul (Clean up look-n-feel) >> System Installer - Monitor Refresh Selection >> > Xorg detects refresh rate automatically but manual intervention is good to > have. I already made script for detecting and setting up resolution and > colour depth. http://forums.pcbsd.org/viewtopic.php?t=4382&highlight= > > >> System Installer - Detect Laptop / Desktop (For setting Numlock) >> > Detection is not necessary, user can decide itself if this particular machine > is desktop computer or notebook/laptop. > > >> System Installer - Detect SMP Motherboard >> > Then we have to load SMP kernel for installer and look at smp table. > > >> System Installer - Use GRUB for bootloader? >> > GRUB is too cryptic for casual user and FreeBSD bootloader is working just > fine- never had any problems at all. For those who need bazillion operating > systems to boot- can use "whatever" bootloader they want. > > >> System Installer - Allow Sound Setup to be done or skipped. >> > Sound module must be built into kernel already and detection should be done > within system initialization not by installer anyway. Support for multiple > sound cards for programs like GDAM. (Yes I worked as DJ when I was joung) > > >> System Installer - Display time elapsed for install and info screens. >> > Display cpu, memory, disk usage like with "systat -vm" command. > > And now my additional requests: > 1) Set multiple partitions for PC-BSD by default > like: /boot/, /etc/, /usr/, /home/. "/boot/" and "/rescue/" partitions should > be read-only and mounted r/w only when needed. > 2) Swap partition should be resizable and calculated by installer based on > installed RAM size. If computer got multiple hard drives then possibility to > set up multiple SWAP spaces. > 3) Language files should be available also via Internet download in installer. > > Andrei > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > PCBSD-Developer mailing list > PCB...@li... > https://lists.sourceforge.net/lists/listinfo/pcbsd-developer > > > > |
From: Andrei K. <an...@bs...> - 2006-07-26 09:43:58
|
1.3 Updates (September 2006) >System Installer - Prompt for settings before install I'd like to have a choice in beginning of installation with radio buttons: "How you want to set up users and all other settings for this computer:" 1. Right now, right here. 2. After system is installed- in the end on installation. (partitions must be configured first anyway ) 3. After system is installed and rebooted up successfully. (partitions must be configured first anyway) 4. Set "handsfree installation" config from networked server, USB or floppy disk (set up from XML file data: disk(s), user(s), language(s), keyboard(s) and auto-installed PBIs). >System Installer - Set Timezone for system Set multiple keyboards for KDE, multiple languages and timezone. >System Installer - Enable Upgrade option Download installer patches over internet or local update server (local patches made by admin). >System Installer - Graphical Overhaul (Clean up look-n-feel) >System Installer - Monitor Refresh Selection Xorg detects refresh rate automatically but manual intervention is good to have. I already made script for detecting and setting up resolution and colour depth. http://forums.pcbsd.org/viewtopic.php?t=4382&highlight= >System Installer - Detect Laptop / Desktop (For setting Numlock) Detection is not necessary, user can decide itself if this particular machine is desktop computer or notebook/laptop. >System Installer - Detect SMP Motherboard Then we have to load SMP kernel for installer and look at smp table. >System Installer - Use GRUB for bootloader? GRUB is too cryptic for casual user and FreeBSD bootloader is working just fine- never had any problems at all. For those who need bazillion operating systems to boot- can use "whatever" bootloader they want. >System Installer - Allow Sound Setup to be done or skipped. Sound module must be built into kernel already and detection should be done within system initialization not by installer anyway. Support for multiple sound cards for programs like GDAM. (Yes I worked as DJ when I was joung) >System Installer - Display time elapsed for install and info screens. Display cpu, memory, disk usage like with "systat -vm" command. And now my additional requests: 1) Set multiple partitions for PC-BSD by default like: /boot/, /etc/, /usr/, /home/. "/boot/" and "/rescue/" partitions should be read-only and mounted r/w only when needed. 2) Swap partition should be resizable and calculated by installer based on installed RAM size. If computer got multiple hard drives then possibility to set up multiple SWAP spaces. 3) Language files should be available also via Internet download in installer. Andrei |
From: Kris M. - PC-B. S. <kr...@pc...> - 2006-07-25 17:06:42
|
Humm, well I got it working here. I just extracted files, ran "./configure" then copied /usr/local/bin/libtool to "." and then ran make. It created just fine, and when I ran make install, it installed into /usr/local/kde/, which I moved the files into /usr/local instead. It then ran just fine, and works "kinda". It needs some porting work to have it run properly under BSD, since its looking for the wrong devices and such. But it looks very nice and clean :) -- Kris Moore PC-BSD Software -------------------------------------------------------- ____ ____ ____ ____ ____ /\ _`\ /\ _`\ /\ _`\ /\ _`\ /\ _`\ \ \ \L\ \ \ \/\_\ \ \ \L\ \\ \,\L\_\ \ \/\ \ \ \ ,__/\ \ \/_/_ _______\ \ _ <'\/_\__ \\ \ \ \ \ \ \ \/ \ \ \L\ \/\______\\ \ \L\ \ /\ \L\ \ \ \_\ \ \ \_\ \ \____/\/______/ \ \____/ \ `\____\ \____/ \/_/ \/___/ \/___/ \/_____/\/___/ http://www.pcbsd.com 1-877-PCBSD01 -------------------------------------------------------- Andrei Kolu wrote: > On Monday 24 July 2006 9:00 pm, Andrei Kolu wrote: >> On Monday 24 July 2006 8:14 pm, Julian Zeiler wrote: >>> Kris Moore - PC-BSD Software schrieb: >>>> Actually I know what that problem is, its an issue with libtool under >>>> FreeBSD, KBFX had the same issue :) I can try compiling it here to see >>>> how it works! >>> I also had this issue once. It helped to replace the libtool in the >>> extracted tar directory with the one from ports: >>> install libtool from ports, then: >>> # find . -name libtool >>> cd to that directory, then: >>> # cp /usr/local/bin/libtool . >>> >>> I hope this helps. >>> >>> Julian Zeiler >> rWidget.moc.o AdvancedWidget.moc.o ServerLayoutWidget.moc.o -lkdeui >> libtool: link: cannot find the library `' >> *** Error code 1 >> >> Stop in /root/kxgenerator-0.3/src. >> *** Error code 1 >> >> Stop in /root/kxgenerator-0.3. >> *** Error code 1 >> >> Stop in /root/kxgenerator-0.3. >> ---------------------------------------- >> Same problem.... >> > I changed line in libtool to: $echo "$modename: cannot find the library > \`$lib' (lib${name}.la: $deplib)" 1>&2 > > libtool: link: cannot find the library `' (libkdefx.la: -pthread) > *** Error code 1 > > Trying to find libkdefx.la > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > PCBSD-Developer mailing list > PCB...@li... > https://lists.sourceforge.net/lists/listinfo/pcbsd-developer > > |
From: Andrei K. <an...@bs...> - 2006-07-24 19:50:27
|
On Monday 24 July 2006 9:00 pm, Andrei Kolu wrote: > On Monday 24 July 2006 8:14 pm, Julian Zeiler wrote: > > Kris Moore - PC-BSD Software schrieb: > > > Actually I know what that problem is, its an issue with libtool under > > > FreeBSD, KBFX had the same issue :) I can try compiling it here to see > > > how it works! > > > > I also had this issue once. It helped to replace the libtool in the > > extracted tar directory with the one from ports: > > install libtool from ports, then: > > # find . -name libtool > > cd to that directory, then: > > # cp /usr/local/bin/libtool . > > > > I hope this helps. > > > > Julian Zeiler > > rWidget.moc.o AdvancedWidget.moc.o ServerLayoutWidget.moc.o -lkdeui > libtool: link: cannot find the library `' > *** Error code 1 > > Stop in /root/kxgenerator-0.3/src. > *** Error code 1 > > Stop in /root/kxgenerator-0.3. > *** Error code 1 > > Stop in /root/kxgenerator-0.3. > ---------------------------------------- > Same problem.... > I changed line in libtool to: $echo "$modename: cannot find the library \`$lib' (lib${name}.la: $deplib)" 1>&2 libtool: link: cannot find the library `' (libkdefx.la: -pthread) *** Error code 1 Trying to find libkdefx.la |
From: Andrei K. <an...@bs...> - 2006-07-24 18:00:28
|
On Monday 24 July 2006 8:14 pm, Julian Zeiler wrote: > Kris Moore - PC-BSD Software schrieb: > > Actually I know what that problem is, its an issue with libtool under > > FreeBSD, KBFX had the same issue :) I can try compiling it here to see > > how it works! > > I also had this issue once. It helped to replace the libtool in the > extracted tar directory with the one from ports: > install libtool from ports, then: > # find . -name libtool > cd to that directory, then: > # cp /usr/local/bin/libtool . > > I hope this helps. > > Julian Zeiler > rWidget.moc.o AdvancedWidget.moc.o ServerLayoutWidget.moc.o -lkdeui libtool: link: cannot find the library `' *** Error code 1 Stop in /root/kxgenerator-0.3/src. *** Error code 1 Stop in /root/kxgenerator-0.3. *** Error code 1 Stop in /root/kxgenerator-0.3. ---------------------------------------- Same problem.... |
From: Kris M. - PC-B. S. <kr...@pc...> - 2006-07-24 17:35:43
|
Bingo! Thats what I had to do here as well, I just copied libtool to the local programs compile directory, and it worked fine :) -- Kris Moore PC-BSD Software -------------------------------------------------------- ____ ____ ____ ____ ____ /\ _`\ /\ _`\ /\ _`\ /\ _`\ /\ _`\ \ \ \L\ \ \ \/\_\ \ \ \L\ \\ \,\L\_\ \ \/\ \ \ \ ,__/\ \ \/_/_ _______\ \ _ <'\/_\__ \\ \ \ \ \ \ \ \/ \ \ \L\ \/\______\\ \ \L\ \ /\ \L\ \ \ \_\ \ \ \_\ \ \____/\/______/ \ \____/ \ `\____\ \____/ \/_/ \/___/ \/___/ \/_____/\/___/ http://www.pcbsd.com 1-877-PCBSD01 -------------------------------------------------------- Julian Zeiler wrote: > Kris Moore - PC-BSD Software schrieb: >> Actually I know what that problem is, its an issue with libtool under >> FreeBSD, KBFX had the same issue :) I can try compiling it here to see >> how it works! > I also had this issue once. It helped to replace the libtool in the > extracted tar directory with the one from ports: > install libtool from ports, then: > # find . -name libtool > cd to that directory, then: > # cp /usr/local/bin/libtool . > > I hope this helps. > > Julian Zeiler > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > PCBSD-Developer mailing list > PCB...@li... > https://lists.sourceforge.net/lists/listinfo/pcbsd-developer > > |
From: Julian Z. <ju...@ze...> - 2006-07-24 17:13:36
|
Kris Moore - PC-BSD Software schrieb: > Actually I know what that problem is, its an issue with libtool under > FreeBSD, KBFX had the same issue :) I can try compiling it here to see > how it works! I also had this issue once. It helped to replace the libtool in the extracted tar directory with the one from ports: install libtool from ports, then: # find . -name libtool cd to that directory, then: # cp /usr/local/bin/libtool . I hope this helps. Julian Zeiler |
From: Kris M. - PC-B. S. <kr...@pc...> - 2006-07-24 16:59:57
|
Actually I know what that problem is, its an issue with libtool under FreeBSD, KBFX had the same issue :) I can try compiling it here to see how it works! -- Kris Moore PC-BSD Software -------------------------------------------------------- ____ ____ ____ ____ ____ /\ _`\ /\ _`\ /\ _`\ /\ _`\ /\ _`\ \ \ \L\ \ \ \/\_\ \ \ \L\ \\ \,\L\_\ \ \/\ \ \ \ ,__/\ \ \/_/_ _______\ \ _ <'\/_\__ \\ \ \ \ \ \ \ \/ \ \ \L\ \/\______\\ \ \L\ \ /\ \L\ \ \ \_\ \ \ \_\ \ \____/\/______/ \ \____/ \ `\____\ \____/ \/_/ \/___/ \/___/ \/_____/\/___/ http://www.pcbsd.com 1-877-PCBSD01 -------------------------------------------------------- Andrei Kolu wrote: > On Monday 24 July 2006 5:09 pm, Kris Moore - PC-BSD Software wrote: >> This is a great idea! We'll have to see if it can be ported over to >> PC-BSD :) > # ./configure > ...... > config.status: executing depfiles commands > > Good - your configure finished. Start make now > > # make > make all-recursive > Making all in doc > Making all in . > Making all in en > /usr/local/bin/meinproc --check --cache index.cache.bz2 ./index.docbook > ..... > /usr/local/bin/bash ../libtool --silent --mode=link --tag=CXX > g++ -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -O2 -fno-exceptions -fno-check-new -fno-common -o > kxgenerator -R /usr/local/lib -R /usr/X11R6/lib -R /usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib -lkio > main.o kxgenerator.o ServerLayoutWidget.o MouseWidget.o MainWidget.o > KeyboardWidget.o VideocardWidget.o MonitorWidget.o AdvancedWidget.o Xorg.o > Locale.o GlobalFunctions.o MainWidget.moc.o KeyboardWidget.moc.o > MouseWidget.moc.o VideocardWidget.moc.o MonitorWidget.moc.o > AdvancedWidget.moc.o ServerLayoutWidget.moc.o -lkdeui > libtool: link: cannot find the library `' > *** Error code 1 > > Stop in /root/kxgenerator-0.3/src. > *** Error code 1 > > Stop in /root/kxgenerator-0.3. > *** Error code 1 > > Stop in /root/kxgenerator-0.3. > ----------------------------------------------- > why this program is so complicated is beyound me.... > Looks like this program is designed for linux only... > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > PCBSD-Developer mailing list > PCB...@li... > https://lists.sourceforge.net/lists/listinfo/pcbsd-developer > > |
From: Andrei K. <an...@bs...> - 2006-07-24 16:56:59
|
On Monday 24 July 2006 5:09 pm, Kris Moore - PC-BSD Software wrote: > This is a great idea! We'll have to see if it can be ported over to > PC-BSD :) # ./configure ...... config.status: executing depfiles commands Good - your configure finished. Start make now # make make all-recursive Making all in doc Making all in . Making all in en /usr/local/bin/meinproc --check --cache index.cache.bz2 ./index.docbook ..... /usr/local/bin/bash ../libtool --silent --mode=link --tag=CXX g++ -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -O2 -fno-exceptions -fno-check-new -fno-common -o kxgenerator -R /usr/local/lib -R /usr/X11R6/lib -R /usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib -lkio main.o kxgenerator.o ServerLayoutWidget.o MouseWidget.o MainWidget.o KeyboardWidget.o VideocardWidget.o MonitorWidget.o AdvancedWidget.o Xorg.o Locale.o GlobalFunctions.o MainWidget.moc.o KeyboardWidget.moc.o MouseWidget.moc.o VideocardWidget.moc.o MonitorWidget.moc.o AdvancedWidget.moc.o ServerLayoutWidget.moc.o -lkdeui libtool: link: cannot find the library `' *** Error code 1 Stop in /root/kxgenerator-0.3/src. *** Error code 1 Stop in /root/kxgenerator-0.3. *** Error code 1 Stop in /root/kxgenerator-0.3. ----------------------------------------------- why this program is so complicated is beyound me.... Looks like this program is designed for linux only... |
From: Kris M. - PC-B. S. <kr...@pc...> - 2006-07-24 14:09:35
|
This is a great idea! We'll have to see if it can be ported over to PC-BSD :) -- Kris Moore PC-BSD Software -------------------------------------------------------- ____ ____ ____ ____ ____ /\ _`\ /\ _`\ /\ _`\ /\ _`\ /\ _`\ \ \ \L\ \ \ \/\_\ \ \ \L\ \\ \,\L\_\ \ \/\ \ \ \ ,__/\ \ \/_/_ _______\ \ _ <'\/_\__ \\ \ \ \ \ \ \ \/ \ \ \L\ \/\______\\ \ \L\ \ /\ \L\ \ \ \_\ \ \ \_\ \ \____/\/______/ \ \____/ \ `\____\ \____/ \/_/ \/___/ \/___/ \/_____/\/___/ http://www.pcbsd.com 1-877-PCBSD01 -------------------------------------------------------- Gerard van Essen wrote: > > > There's a little program on KDE-Apps that we can maybe use or work > together with the developer: New kX Generator > <http://www.kde-apps.org/content/show.php?content=39085> > ** > *Description: > *kX Generator is a utilitty to configure the X server by modyfying X > configuration file. > This release (0.3) is a preview release. Of course it works and (as far > as I know) don't have any bugs. C > onfiguration file should work. I've rewritten from scratch whole app. > > > > > > On 7/23/06, *pcb...@li... > <mailto:pcb...@li...>* < > pcb...@li... > <mailto:pcb...@li...>> wrote: > > Send PCBSD-Developer mailing list submissions to > pcb...@li... > <mailto:pcb...@li...> > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/pcbsd-developer > <https://lists.sourceforge.net/lists/listinfo/pcbsd-developer> > or, via email, send a message with subject or body 'help' to > pcb...@li... > <mailto:pcb...@li...> > > You can reach the person managing the list at > pcb...@li... > <mailto:pcb...@li...> > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of PCBSD-Developer digest..." > > > Today's Topics: > > 1. VGA detection script with resolution and depth settings > (Andrei Kolu) > 2. VGA detection script with resolution and depth settings > (Andrei Kolu) > 3. VGA detection script with resolution and depth settings > (Andrei Kolu) > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 22 Jul 2006 13:24:13 +0300 > From: Andrei Kolu <an...@bs... <mailto:an...@bs...>> > Subject: [Pcbsd-developer] VGA detection script with resolution and > depth settings > To: pcb...@li... > <mailto:pcb...@li...> > Message-ID: < 200...@bs... > <mailto:200...@bs...>> > Content-Type: text/plain; charset="iso-8859-1" > > Hi! I played here with Xorg autodetection and made this litle script > for > testing- it may work on all computers I think. Xorg detects your > video card > and creates config file that is much better than PC-BSD current one. > You can > set resolution and colour depth from command line: > > # pimpmyvga.sh resolution depth > # pimpmyvga.sh 1280x1024 24 > > TODO: > 1. Add fonts path not included in autodetected config file. > 2. Make graphical interface for setting resolution, colour and > refreshrate. > 3. Make script for testing current config file within 15 seconds > where user > can interact with gui and press accept button if it works. If failed itt > would be reverted back to more conservative default resolution as > 1024x768 or > vesa driver. > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: pimpmyvga.sh > Type: application/x-shellscript > Size: 1396 bytes > Desc: not available > Url : > http://sourceforge.net/mailarchive/forum.php?forum=pcbsd-developer/attachments/20060722/ab578d8b/attachment.bin > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > ------------------------------------------------------------------------ > > _______________________________________________ > PCBSD-Developer mailing list > PCB...@li... > https://lists.sourceforge.net/lists/listinfo/pcbsd-developer > > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.1.394 / Virus Database: 268.10.3/395 - Release Date: 7/21/2006 |
From: Gerard v. E. <gva...@gm...> - 2006-07-24 07:05:42
|
There's a little program on KDE-Apps that we can maybe use or work together with the developer: New kX Generator<http://www.kde-apps.org/content/show.php?content=39085> ** *Description: *kX Generator is a utilitty to configure the X server by modyfying X configuration file. This release (0.3) is a preview release. Of course it works and (as far as I know) don't have any bugs. C onfiguration file should work. I've rewritten from scratch whole app. On 7/23/06, pcb...@li... < pcb...@li...> wrote: > > Send PCBSD-Developer mailing list submissions to > pcb...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/pcbsd-developer > or, via email, send a message with subject or body 'help' to > pcb...@li... > > You can reach the person managing the list at > pcb...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of PCBSD-Developer digest..." > > > Today's Topics: > > 1. VGA detection script with resolution and depth settings > (Andrei Kolu) > 2. VGA detection script with resolution and depth settings > (Andrei Kolu) > 3. VGA detection script with resolution and depth settings > (Andrei Kolu) > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 22 Jul 2006 13:24:13 +0300 > From: Andrei Kolu <an...@bs...> > Subject: [Pcbsd-developer] VGA detection script with resolution and > depth settings > To: pcb...@li... > Message-ID: <200...@bs...> > Content-Type: text/plain; charset="iso-8859-1" > > Hi! I played here with Xorg autodetection and made this litle script for > testing- it may work on all computers I think. Xorg detects your video > card > and creates config file that is much better than PC-BSD current one. You > can > set resolution and colour depth from command line: > > # pimpmyvga.sh resolution depth > # pimpmyvga.sh 1280x1024 24 > > TODO: > 1. Add fonts path not included in autodetected config file. > 2. Make graphical interface for setting resolution, colour and > refreshrate. > 3. Make script for testing current config file within 15 seconds where > user > can interact with gui and press accept button if it works. If failed itt > would be reverted back to more conservative default resolution as 1024x768 > or > vesa driver. > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: pimpmyvga.sh > Type: application/x-shellscript > Size: 1396 bytes > Desc: not available > Url : > http://sourceforge.net/mailarchive/forum.php?forum=pcbsd-developer/attachments/20060722/ab578d8b/attachment.bin > > |
From: Andrei K. <an...@bs...> - 2006-07-23 19:29:23
|
On Sunday 23 July 2006 10:23 pm, Charles A. Landemaine wrote: > On 7/23/06, pcb...@li... > > <pcb...@li...> wrote: > > when I run locale command I see this picture: > > # locale > > LANG= > > LC_CTYPE="C" > > LC_COLLATE="C" > > LC_TIME="C" > > LC_NUMERIC="C" > > LC_MONETARY="C" > > LC_MESSAGES="C" > > LC_ALL= > > > > and /etc/csh.login contains this: > > setenv MM_CHARSET "UTF-8" > > > > The FreeBSD base system sh does not support wide characters needed for > > Unicode/UTF-8. Other shells, such as csh, tcsh and zsh do. > > > > Default FreeBSD vi (actual program name is nvi) is old and does not > > support unicode- have to install new one from ports. > > This problem was discussed already: > http://bugs.pcbsd.org/bug.php?op=show&bugid=82&pos=3 This bug have nothing nothing in common with lack of unicode in base system. |
From: Charles A. L. <lan...@gm...> - 2006-07-23 19:23:29
|
On 7/23/06, pcb...@li... <pcb...@li...> wrote: > when I run locale command I see this picture: > # locale > LANG= > LC_CTYPE="C" > LC_COLLATE="C" > LC_TIME="C" > LC_NUMERIC="C" > LC_MONETARY="C" > LC_MESSAGES="C" > LC_ALL= > > and /etc/csh.login contains this: > setenv MM_CHARSET "UTF-8" > > The FreeBSD base system sh does not support wide characters needed for > Unicode/UTF-8. Other shells, such as csh, tcsh and zsh do. > > Default FreeBSD vi (actual program name is nvi) is old and does not support > unicode- have to install new one from ports. This problem was discussed already: http://bugs.pcbsd.org/bug.php?op=show&bugid=82&pos=3 -- Charles A. Landemaine. |
From: Andrei K. <an...@bs...> - 2006-07-23 11:08:56
|
http://opal.com/freebsd/unicode.html when I run locale command I see this picture: # locale LANG= LC_CTYPE="C" LC_COLLATE="C" LC_TIME="C" LC_NUMERIC="C" LC_MONETARY="C" LC_MESSAGES="C" LC_ALL= and /etc/csh.login contains this: setenv MM_CHARSET "UTF-8" The FreeBSD base system sh does not support wide characters needed for Unicode/UTF-8. Other shells, such as csh, tcsh and zsh do. Default FreeBSD vi (actual program name is nvi) is old and does not support unicode- have to install new one from ports. Andrei |
From: Andrei K. <an...@bs...> - 2006-07-22 12:34:02
|
VGA detection script with resolution and depth settings =A0 Hi! I played here with Xorg autodetection and made this litle script for=20 testing- it may work on all computers I think. Xorg detects your video card= =20 and creates config file that is much better than PC-BSD current one. You ca= n=20 set resolution and colour depth from command line: # pimpmyvga.sh resolution depth # pimpmyvga.sh 1280x1024 24 TODO:=20 1. Add fonts path not included in autodetected config file.=20 2. Make graphical interface for setting resolution, colour and refreshrate. 3. Make script for testing current config file within 15 seconds where user= =20 can interact with gui and press accept button if it works. If failed itt=20 would be reverted back to more conservative default resolution as 1024x768 = or=20 vesa driver. http://forums.pcbsd.org/viewtopic.php?t=3D4382&highlight=3D Looks like my previous message was eaten by spamfilter... Andrei |