Some questions b4 i try to compile my first custom kernel

Hi all, i'm tempted to try and configure my own custom kernel but i need to ask a few questions before i try...
http://wiki2.archlinux.org/index.php/Ke … ompilation
the first 5 instructions on this wiki were to do this:
# cd /usr/src
# mv linux-2.x.x linux-2.x.x.arch
# mv /lib/modules/linux-2.x.x /lib/modules/linux-2.x.x.arch
# mv /boot/vmlinuz2x vmlinuz-2.x.x.arch
# mv /boot/System.map2x System.map-2.x.x.arch
# mv /boot/kconfig2x /boot/kconfig-2.x.x.arch
if i just want to compile a new, seperate kernel from my current one, why would i need to do this? if i followed these 5 commands, i wont be able to boot up back into my old kernel unless i use a rescue disk to copy the files back into their original locations, not?
also, what other steps would i have to take to ensure that i dont accidentally overwrite my old kernel? Or other things i should look out for, for a first timer

[LONG POST]
There are two different kinds of people : those who prefer the /usr/src way, and those who use dibble's PKGBUILD.
To my opinion, someone who's never compiled a kernel should first try to do it the manual way. What is PKGBUILD for if you don't understand what's in ?
pacman -R kernel26
cd /usr/src
wget ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.11.8.tar.bz2
tar -xvjf ./linux-2.6.11.8.tar.bz2
ln -s linux-2.6.11.8 linux
cd linux
make menuconfig # some tips below
make && make modules_install
# Don't do a make install
cp arch/i386/boot/bzImage /boot/linux
cp System.map /boot
cp .config /boot
nano -w /boot/grub/menu.lst
# I assume your / is on /dev/hda2 and /boot is on the same partition
title Arch Linux [/boot/linux]
root (hd0,1)
kernel /boot/linux root=/dev/hda2 ro # lapic devfs=nomount
title Windows
rootnoverify (hd0,2) #Windows on /dev/hda3
makeactive
chainloader +1
If you use lilo :
nano -w /etc/lilo.conf
boot=/dev/hda
prompt
timeout=100 # =10 seconds
default=linux
image=/boot/linux
label=linux
read-only
root=/dev/hda2
#append="some options like devfs=nomount or lapic"
other=/dev/hda3
label=windows
If you use lilo, DO NOT FORGET to run 'lilo' after editing /etc/lilo.conf.
Kernel Options
- Enabling an option generally does not hurt so if you are not sure, enable the option.
- Compile as modules only what you do not use, for removable devices, and things you would not like to be automatically loaded ( a NIC on a laptop for example)
- Try googling around to see what modules are needed for some of your exotic hardware if you have to.
- Know you hardware (run lspci,lsdev, use hwd)
To answer to what you said, a self-compiled kernel is not that much faster... However, it is surely not bloated anymore since it probes only for the hardware you actually have. Hotplug wont desperately try to load uncorrect modules for hours(and you wont have to blacklist them), and you have the options YOU chose, for example use udev as default.
Compiling the kernel also enables to patch it for example with reiser4 support(fastest fs on earth), -ck speed improvements, -nitro patch set.
I suggest you google around and see what patches are available, though I would not do that if you never compiled a kernel.
To patch :
cd /usr/src/linux
patch -p1 < /path/to/xxx-patch.bz2
Oh, I nearly forgot to say that if you compile the kernel yourself, binary modules provided by pacman do not work anymore. You will have to recompile them too(for example ipw2100, nvidia, etc). This is made easy with ABS.

Similar Messages

  • When I try to buy something with my gift card they ask me some questions that I do not know which is the answerd

    when I try to buy something with my gift card they ask me some questions that I do not know which is the answerd!!

    Arlenefromtn wrote:
    I need help on this.I don't know these questions ...
    See Here.  Apple ID: Contacting Apple for help with Apple ID account security
    Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact

  • [SOLVED] Some questions about a recently submited package (cgames)

    Hi there, when searching for ncurses sokoban-like games I ended up finding a great one that wasn't at the AUR yet. I submitted it (the package is named cgames) but I have some questions.
    1- The source code provided by the developer has 3 games. Should I have packaged each one individually? I decided this way because they are so small that I figure nobody would have a problem in having them all even when just wanting to play one of them (you can always change the make command in the PKGBUILD if you want a single game).
    2 - The original package had some compiling problems due to a function called getline (already existing in stdio.h) and I solved this problem with a sed command. Is this the proper way to do it? Should I have created some patch file or something?
    3- I'm 99% sure the game works in 64bit archs, but 99 isn't 100. Can anyone try it out for me, so that I change the PKGBUILD? I know I should have tested it but I don't have the time to install a 64b arch in the next few days.
    Thank you in advance
    Last edited by jlcordeiro (2010-03-29 15:33:58)

    Yeap, a bit
    Anyway, all done (i think)
    Second release:
    - Replaced sed command with a patch
    - Added x64 arch
    - Fixed a little bug with the configure command
    Last edited by jlcordeiro (2010-03-29 15:32:42)

  • Some questions on versioning and synchronizing metadata

    Hy all!
    I am quite new to warehousing and Oracle Warehouse Builder, and so i would have some questions regarding on some common issues. I would appriciate if you guys would who have experience in this domain to share some good practice knowledge :)
    I am using OWB 10.2
    So first of all i would like to know if you have some proposal of the way of versioning control and synchronizing projects between team memebers when working on a bigger project, team memebers that don't work on the same repository (cause i saw that OWB has an integrated multiuser support for handeling object locks and user sessions).
    I saw that a way of migrating data from one place to a nother is using the import/export options integrated in OWB. This creates mdl files wich are some kind of "dumps" of the metadata informations, but the thing with these mdl files wich i don't think is a good way to synchronize is that first of all the .mdx and .xml files contained in the .mdl (wich is kind of a zip) contains many informations in it (like creation date, some timestamps, etc) wich are always updated when exporting, and if synchronizing these files maybee using CVS, we always will get differences between the files alltough they would contain the same thing, only timestamps changed.
    Then a nother issue with this, is that we could have 2 alternatives: dump the whole project, wich is odd to have to synchronize a single file between users, especialy on a big project, then the orher way would be doing for each object from the project (each mapping, each table, etc) an separate .mdl filem then to synchronize each file of each object, wich will be unefficient on reimporting each file in part.
    So please if you can share the way you work on a big project with many implementers with OWB, i would really appriciate.
    A nother thing i would like to know is: is there a way to generate from an existing project (like one created with OWB) the OMB commands dump (maybee in a tcl script)? Cause i saw that the way the exeprienced users implement warehousing is using TCL with OMB language. I downloaded the example from oracle for warehouse project, and i saw that is entirely made from tcl scripts (so no mdl file involved). And this i think would be nice, to have the OMB commands generated from an existing projects.
    I see this OWB projects like a database wich can be built up from only OMB commands and OWB a graphical tool to do this (same as constructing a database only from DDL commands or using SQL developer to do this), this is why i am asking about a way of dumping the OMB commands for creating an OWB project.
    Please give me some advices, and correct me if i sad some dumb things :D but i really am new to warehousing and i would really appriciate if you guys with experience could share some informations.
    Thank you verry much!
    Alex21

    Depends. Having everyone working on the same project certainly simplifies things a lot regarding merging and is generally my preference. But I also recognize that some projects are complex enough that people wind up stepping on each other's toes if this is the case. In those cases, though, I try to minimize the issue of merging changes by having common structural objects (code libraries, tables, views, etc) retained in a single, strictly controlled, central project schema and having the developer's personal work areas reference them by synonym, thus being unable to alter them to the detriment of others.
    If they want to change a common object then need to drop their synonym and make a local copy which they can alter, and then there is a managed process by which these get merged back into the main project schema.
    This way any changes MUST go through a central schema, we can put processes in place to notify all of the team of any impending changes, and can also script updates across the team.
    Every hour a script runs automatically that checks for dropped synonyms and notifies the project leader. It especially checks for two developers who have built local copies of the same object and notifies each that they need to coordinate with each other as they are risking a conflict. When a structural change is submitted back to the central shared schema, it is added to a batch that is installed at end of business and a list of those impending changes is circulated to the team along with impact analysis for dependencies. The install script updates the main schema, then also drops the local copy of the object in the developer's schema who made the change and re-establishes the synonym there to get back to status quo for the change monitoring. Finally, it then updates itself in all of the developer areas via OMBPlus. So, each morning the developers return to an updated and synched environment as far as the underlying structure.
    This takes care of merging structural issues, and the management of the team should minimize other metadata merging by managing the worklist of who is to be working on a given mapping or process flow at a given time. Anyone found to be doing extraneous changes to a mapping or process flow when it is not in their job queue without getting pre-approval will be spoken to VERY firmly as this is counter to policy. And yes, OWB objects such as mappings are then also coordinated to the central project via import/export. OMBplus scripts also propogate these changes daily across the team as well.
    Yep, there is a whole lot of scripting involved to get set up.... but it saves a ton of time merging things and solvinv conflicts down the road.
    Cheers,
    Mike

  • Some questions about the integration between BIEE and EBS

    Hi, dear,
    I'm a new bie of BIEE. In these days, have a look about BIEE architecture and the BIEE components. In the next project, there are some work about BIEE development based on EBS application. I have some questions about the integration :
    1) generally, is the BIEE database and application server decentralized with EBS database and application? Both BIEE 10g and 11g version can be integrated with EBS R12?
    2) In BIEE administrator tool, the first step is to create physical tables. if the source appliation is EBS, is it still needed to create the physical tables?
    3) if the physical tables creation is needed, how to complete the data transfer from the EBS source tables to BIEE physical tables? which ETL tool is prefer for most developers? warehouse builder or Oracle Data Integration?
    4) During data transfer phase, if there are many many large volume data needs to transfer, how to keep the completeness? for example, it needs to transfer 1 million rows from source database to BIEE physical tables, when 50%is completed, the users try to open the BIEE report, can they see the new 50% data on the reports? is there some transaction control in ETL phase?
    could anyone give some guide for me? I'm very appreciated if you can also give any other information.
    Thanks in advance.

    1) generally, is the BIEE database and application server decentralized with EBS database and application? Both BIEE 10g and 11g version can be integrated with EBS R12?You, shud consider OBI Application here which uses OBIEE as a reporting tool with different pre-built modules. Both 10g & 11g comes with different versions of BI apps which supports sources like Siebel CRM, EBS, Peoplesoft, JD Edwards etc..
    2) In BIEE administrator tool, the first step is to create physical tables. if the source appliation is EBS, is it still needed to create the physical tables?Its independent of any soure. This is OBIEE modeling to create RPD with all the layers. If you build it from scratch then you will require to create all the layers else if BI Apps is used then you will get pre-built RPD along with other pre-built components.
    3) if the physical tables creation is needed, how to complete the data transfer from the EBS source tables to BIEE physical tables? which ETL tool is prefer for most developers? warehouse builder or Oracle Data Integration?BI apps comes with pre-built ETL mapping to use with the tools majorly with Informatica. Only BI Apps 7.9.5.2 comes with ODI but oracle has plans to have only ODI for any further releases.
    4) During data transfer phase, if there are many many large volume data needs to transfer, how to keep the completeness? for example, it needs to transfer 1 million rows from source database to BIEE physical tables, when 50%is completed, the users try to open the BIEE report, can they see the new 50% data on the reports? is there some transaction control in ETL phase?User will still see old data because its good to turn on Cache and purge it after every load.
    Refer..http://www.oracle.com/us/solutions/ent-performance-bi/bi-applications-066544.html
    and many more docs on google
    Hope this helps

  • I'm going to install Arch this weekend but I have some questions

    Currently I use Linux Mint on my primary PC, but I've installed Arch on my older PC at my parents house.  I like it a lot and I think I want a distro that is rolling release and also that I build myself (as opposed to installing all of the bloat on Mint).  However, I do have some questions; Linux is pretty new to me (been using it since about November) so I don't know exactly how everything works.
    1)  How do I know what packages I have to have installed for building C/C++ programs?  I know in Ubuntu install gcc/g++ by itself doesn't get the job done, you need build-essential to get all of the libraries.  Also, what packages do I need for OpenGL and SDL?  I'm a CS major and I'm in an OpenGL class so I need to be able to compile OpenGL programs; SDL is for my own purposes, but I'd still like to have it.
    2)  I use Amarok to transfer songs to my iPod.  Amarok 1.48 and libgpod 0.6.0 are in the repos and I know both of those are compatible with my 6th gen.  However, I do have a question about transferring album art.  On Mint, Amarok transfers the album art as I transfer the album, but someone told me that Amarok doesn't do that by default; there must have been a setting changed somewhere to do that.  I looked through Amarok's options and didn't see anything like that... anyone know if I can do that in Arch, and how?  There's no real information about Amarok in the wiki.
    3)  I'm going to use Gnome environment but some KDE apps (like Amarok).  Will there be any problems with that that I should know about in advance?
    I'll probably have some more questions once I actually install Arch, but that will do for now   Those are the important ones.

    1) You know by seeing its dependencies on pacman or by the developer documentation. Unlike other distros, you don't need to install dev packages. Example: You have gcc and all the basic gnu tools installed, and you want to compile a program that is not in a arch linux package yet (if theres a package, you can build it using abs / makepkg and pacman will handle the dependencies) and requires, for example, a library called "xyz", you only need to download "xyz" from pacman, and all the dev stuff will come together (like header and etc).
    I hope it helps.

  • Picked up a B/W.. have some questions

    Hey guys. I picked up a B/W yesterday for a nice spare computer and i have some questions.
    1. The former owner upgraded to 10.3 but the computer is lacking serious speed. I know it's not going to be fast but i have a feeling the Memory and video card is holding it back. It only has 256 megs of ram and i would like to add some more. What the max amount i can add? I heard 1GB but is it possible to do more? THe video card is the original and seriously *****. Whats a great card everyone runs? I was looking at the new HD series on new egg but i think it's designed for a pc. Will it work?
    Also.. What's the best place to buy pieces for this mac? Any good online retailers? Thanks again
    Ron

    Before you even think about investing in this computer you might want to check if it is a Rev. 1 or Rev. 2 model. I can't tell you how because I have never laid hands on a BW but apparently the Rev. 1 starts behaving really erratically when you try to upgrade things like the hard drive, and you may quickly tire of a tiny hard drive.
    As for parts, there's the old standby www.mac-sales.com but once you start buying new upgrades for that computer you will quickly outstrip just buying a used G4 instead. LowEndMac Google groups is a good place for aged machines, and of course there's e-bay. There's also a variety of used Mac and parts retailers, though I think a BW is even outside their interest range now since nobody wants to pay for parts for a G3 what they have to charge to stay in business.

  • Some questions regarding CO-PA

    Hello Experts,
    I have some questions regarding de COPA module:
    1-Where can i find wich G/L accounts are assigned to a especific condition type? Is there any transaction where i can check the g/l accounts for the condition types?
    2-I heard that the condition type VPRS is statistical, can anyone explain me this concept?..wich accounts are assigned to this condition type?
    3-Does anyone has a list of the most relevat transactions for COPA? especially regarding the value flows and the closing.
    Thnak you for your support!
    Leandro.

    Hi,
    a) VKOA transaction
    b) try reading this one: http://help.sap.com/erp2005_ehp_04/helpdata/EN/40/c52df80d1e11d2b5cf0000e82de856/frameset.htm Statistical means that the value in the CO-PA document for VPRS is also updated (truly) in other CO component. For example, revenue could be assigned truly to CO-PA segment and statistically to, let's say, cost centre. With material costs - it's the opposite.
    c) most of the data is flowing to CO-PA from other modules. However, just go to the standard menu: the transactions for CO-PA are not so many.
    Regards,
    Eli

  • Some questions..

    Hello all,
    I am new to ABAP. I am learning now.I have some questions.
    1. What is the typical structure of an ABAP program?
    2. What are field symbols and field groups? Have you used "component idx of structure" clause with field groups?
    3. What should be the approach for writing a BDC program?
    4. What is a batch input session?
    5. What is the alternative to batch input session?
    6. What are the techniques involved in using SAP supplied programs? Do you prefer to write your own programs to load master data? Why?
    Best Regards,
    Purna

    Hi Purna,
    phew! these are lots of questions. Now let's see:
    4. A batch-input session is a way (but not THE ONLY WAY) to massively process SAP transactions. That means, you store in such a session:
    - what transaction(s) you want to run
    - what screens you visit
    - what fields you fill in each screen
    - what pushbuttons/function codes/ok-codes (that is, what ACTION) you want to perform into each screen
    So all this information is stored in a so-called "batch-input session". A typical example is the batch input session generated by the depreciation transaction (AFAB)
    3. Maybe the easiest way to do so is to record a batch-input session (via SM35 > Record), and then write your ABAP code. You will find very useful a form like this:
    *&      Form  dynpro
    *       Inserta datos de CALL TRANSACTION (o BATCH-INPUT) en
    *       tabla interna
    *      -->_DYNBEGIN  'X' empieza dynpro nuevo; ' ' mismo dynpro
    *      -->_NAME      Si DYNBEGIN 'X' programa; si no, nombre campo
    *      -->_VALUE     Si DYNBEGIN ' ' nº dynpro; si no, valor campo
    FORM dynpro USING _dynbegin
                      _name
                      _value.
      IF _dynbegin = c_yes.
        CLEAR bdc_data.
        bdc_data-dynbegin = c_yes.
        bdc_data-program  = _name.
        bdc_data-dynpro   = _value.
        APPEND bdc_data.
      ELSE.
        CLEAR bdc_data.
        bdc_data-fnam     = _name.
        bdc_data-fval     = _value.
        SHIFT bdc_data-fval LEFT
          DELETING LEADING space.
        APPEND bdc_data.
      ENDIF.
    ENDFORM.                    " dynpro
    ...and then you should call this form once per line generated by the recording of the batch-input session... We all can give you some more details on this if necessary (won't we guys?? :-D)
    5. Well, there are many other tecniques. You mean: for massive upload? For massive execution of transactions? Maybe CATT (Computer-Aided Testing Tool, transaction SCAT) could be used for this purpose as well. Or direct-input, for example if you want to upload material master records. Or just the straightforward INSERTs, but I seriously recommend you NOT to use it O:-)
    6. I personally try to use standard SAP ways to upload master data. Thus you can take advantage of all SAP validations. But of course your legacy system needn't be SAP, so you'll have to develop your own ABAP code in order to perform some sort of "conversion" between the legacy format (mostly a plain text file) and the format expected by SAP.
    Wow! I hope you reached this point. Pls write back if you need some more help. Or if this is enough, pls let us know anyway. BR,
    Alvaro

  • Some question for Sun Java System

    Dear all:
    I use Sun Java System We Server 7.0 for my project.
    But I have some question on SJSWS 7.0
    My server runtime information
    1. OS is RedHat Enterprise 3
    2. memory: 2G
    3. SJSWS version: 7.0 preview 3
    My questions
    Q1. The speed that download image is slower than the speed that run JSP page . The image's size to smaller than 5 KB. Is it possible to speed up download image
    Q2. My machine has 2GB memory, The system use swap area always. I think it isn't enough of SJSWS 7.0. How much memory size that SJSWS 7.0?
    Many thank for everybody

    first off, please try the Update 1 release in stead of technology preview releases: http://www.sun.com/download/products.xml?id=467713d6
    Q1> So I want to ask it is possible to display image and text at the same time like use Tomcat ?
    there is nothing in the server end (whether it's Tomcat or any other web server) that affects how the content is displayed on the browser.
    Q2>I detect The ram was used over 800M~1G by SJSWS7. My website has 80~150 user in workinghour
    Are you seeing Web Server process measuring so much memory?
    Q3> Is it possible that the admin server use SJSWS7U1 and some or all of node use SJSWS preview 3, because the server is running on line, I can't stop them for update server
    No - you want to switch to U1 anyway, since it's a released version (and is absolutely FREE for production use).

  • Potential new T61 user with some questions about product/su​pport/etc.

    Hi all!
    I've been using Dell Latitude's for last 7+ years and been happy with them thus far, as I was able to stay within the C-series thru 3 systems and reuse some components such as batteries, CD-ROM, etc. but now that I'd have to go to D-series, that gives me the choice of going to new vendor...and IBM/Lenovo was the only other choice due to my OS requirement: XP Pro!
    So now I'm here asking some questions that I'm still having issues with:
    (I'm comparing the T61 to Dell D530 and/or my C610)
    1) Features that I've used on existing Dell that I don't see on T61 :
        a) Infared port --- I've used to transfer stuff from one sys to another
        b) S-Video out --- I've used to display on TV for some situations  
        c) Serial port --- can't recall using it but with my luck, I'd need it sometime. 
        d) Parallel port (C610) --- for my really old printer used on rare occasions
        e) Floppy drive --- yes, I still use it for some unusual situations
    2) On Dell, I can put a 2nd battery or floppy drive in the media bay instead of CD/DVD...what about T61?
    3) Support:
        a) Dell forums have 7+ yrs of history and are well used...this forum seems brand new...was there another one before it?
        b) My Dell's have lifetime tech support (ok, so sometimes understanding the folks from India can be an issue) but IBM seems to limit this to life of warranty.
    4) Pricing: T61 would be seem to be, at minimum, about $150 more than similar Dell even with current "sales"...I'm having trouble justifying this...
    5) Things that I see that T61 has that new Dell D530 doesn't:
       a)  built-in mike --- my current Dell has it and I use it now and then so this is a plus!
       b) keyboard light --- nice feature, but couldn't I use a USB one instead if I really needed it?
       c) fingerprint reader --- never used one...how often do people use it?
       d) 2nd card slot for Express cards --- current Dell has two standard slots and I'm using both, though one is wi-fi which C610 didn't have built-in...and other is modem to replace failed built-in...D530 has only one slot, so having 2nd of any type is good.
       e) middle mouse button --- is that what I'm seeing? Or is it something else?
       f) recovery partition --- ok, nice but how much room does it take?
    6) Things that D530 has that T61 doesn't:
       a) 4th USB --- I'm used to only 1 now so even 3 would be big step up...
       b) 15" standard screen --- T61 is only a 14.1" screen and that extra bit of size would likely help, but I'm limited on physical dimensions to 13.5" total width (unusual situation) so a 15.4" wide screen isn't possible...I'm looking at SXGA+ in either case to maximize usage.
       c) recovery CD is standard --- so I'm presuming I'd have to create my own here?
    That, I think, about does it...so...any users willing to help me decide if a switch is good for me?
    Thanks!!!
    Update: It seems that phone tech support is only available for warranty period with IBM, whereas with Dell, I can still call for hardware tech help (to diagnose problem at least) for "lifetime" or well past paid period, as I've already done in past...comments?
    Update #2: Changed the incorrect "R"s to "T"! Duh!
    Message Edited by J_Hallgren on 12-28-2007 07:50 PM
    A current Dell Latitute user who was looking to maybe switch...But didn't.

    I finally made the switch to Lenovo and the Thinkpad line of notebooks and think this was the best move I have ever made in years! I've spent far too much money maintaining a separate notebook (Dell Latitude L400) several custom built desktops.  This December, I sold my desktops, my laptops (I had 2 L400's), and my 20" Aquous LCD TV to finance my Thinkpad T61.  It was well worth it!  I will try to answer your questions in this checklist, which I found to be quite similar to my own .... frighteningly exactly like my own....:
    Hardware Requirements
    IR: This is pretty outdated but functional.  I used to use a Palm with IR as well as an IR laser printer.  I ditched both for a PDA phone with bluetooth.  The laser printer is networked now
    S-Video: You might be able to get away with a TV tuner cardbus or a expres card.  There might also be external converters that convert from your VGA/DVI (DVI via port replicator) into any variety of video outputs.
    Serial: My older Palm had a serial port for the docking station - bluetooth is a good replacement
    Parallel port: I currently have a USB to parallel adapter in my bag just in case.  These are cheap cables and work well.
    Floppy: I keep a USB one of these just in case.  I find that having fewer input devices on my laptop and leaving them external help keep the machine lighter for my mostly mobile usage (e.g., my L400 with no inputs at all except 1 USB port).
    T61 Spare Battery: Uses ultrabay battery - I rarely use the DVDRW drive and leave the ultrabay battery in there while on the go.  DVDRW drive stays in the bag until needed.  I recommend you upgrade to the 9 cell battery with the advanced ultra bay battery, which will give u something like 9 to 12 hours of operating life.  If you are not a fan of the battery pack sticking out like crazy, stick to the letter box format laptop (not widescreen), which will provide the minimum amount of battery pack stick-out with the 9 cell battery.  The 6 cell will not stick out with the letterbox laptop but will stick out with the widescreen version.
    Support Options:  I rarely call support so I have no opinion here.
    Pricing: Price was not really a concern for me.  I purchased mine for the business look mainly, which Lenovo maintained well.  I don't like the shiny/plastic/toy look of Dell and Apple computers these days.  If anything, consider the premium an investment in the build quality of these machines (or a premium just for the good looks).  I particularly like the roll cage as well as active protection system that stops the hard drive as soon as the system detects excessive motion. 
    Included Hardware Comparison:
    I like the mic, use it often for Skype and the built in 1.3MP webcam as well. 
    Keyboard light.... kinda cute but not as functional because it simply is too small.  It was a cute idea that could have been made better had Lenovo opted for a backlit keyboard instead.  That would have been more functional and added to the "cool" factor. 
    With regards to the Express Card and PCMCIA card slot, I rarely use either because everything is built in.  However, if you want that TV tuner, an express card or PCMCIA card slot is good.  If you opt for the built in media reader, you will be unable to use the express card as the media reader takes up that slot (I might be wrong, but I think the card reader is large enough that it takes up both slots, so u can't add anything anyway - but you should call pre-sales to answer that question). 
    Middle mouse button: The three buttons in the middle are used for the trackpoint/joystick mouse controller.  I think the middle button is configurable to do various things.  I personally hate the joystick and can only use the touchpad.  The lack of a touchpad was the only reason I did not stick to the smaller 12.1" X line of laptops, which was really more in tune with my size requirements (too used to using the L400 sized machine).
    Recovery Partition: This is a cheap way for manufacturers to make it easy for people to recover their systems in case of crash - without the need for any documentation or disc media.  However, it makes it hard for people like me who only use machines after a clean format and customized install of Windows.  This partition is about 10GB and can be erased with special disk format or partition tools.  Windows itself cannot read or delete this partition.  With the minimum size of the hard drives available, this should not be an excessive space killer for most people.  I personally need only 7GB total for OS and apps.  The remaining data I work with is actually streamed from a 500GB gigabit NAS.  I might switch to a 32GB solid state disk one of these days when their performance comes more in par or exceeds traditional drives.
    Recovery CD: You can create your own from the recovery partition since Lenovo does not provide any.
    4th USB: I only use 1 or 2 as well.  1 for an external micro mouse (I love my touchpad, but it's just hard to use with Photoshop or CAD apps) and a second for a USB memory key.  My other devices i.e., scanner, external mouse, keyboard, are plugged in on my desktop through a USB hub that goes to a single port on my docking station.  So yes, your docking station will probably remove the need for more than 2 ports.  Although, I do find it odd there are only 3 ports... such an odd number.
    Screen Size: I personally wish I could have gotten the X series of laptops but the 14.1 was the only other mobile solution.  For the larger screen size, docking station to my 24" Dell 2405FP.  The compact nature of the T series makes it pretty thin and compact though... it was not too much bigger than my L400 - at least, not uncomfortably bigger.
    But yeah, I think if you make the switch, you'll be getting yourself a solid machine that will keep u going for years.  The Latitude line of Dell's were really good, but overall, I feel that the nature of Dell's manufacturing process is making it too "cookie cutter" and reducing its overall quality level.  Their earlier lines were awesome, like the D lines you mentioned.  But unless you get the ATG line, you just won't get the same level of quality they used to offer (in addition, the ATG line is wickedly too expensive - I'd rather get a Durabook for military grade spec at a fraction of the price). 
    Anyway, have fun shopping! :-)
    And moderators or employees of Lenovo, don't you guys get referral bonuses for giving your employee discount code to friends and family?  *wink*
    T61_Wide | Model No. 7662 - CTO
    Core 2 Duo T7250 | 2GB OCZ DDR2-800
    82566MM Gigabit | 4965AGN Centrino Pro

  • Some questions about TLF component

    Hi,
    I'm using the TLF component (v. 0.207.0) in a Mac OSX and I've encountered with some things that I can't resolve.
    (First at all sorry about my english)
    - I'm trying embed some fonts with the component (Univers LT 55 Roman and Univers LT 65 Bold, for example). When the file is published, Univers LT 65 is correctly embedded but Univers LT 55 is not, even bought in the same package family font. With other fonts I have the same problem. In Mac the default font is very similar (even antialiasing is not working, its readable) but in Windows it shows an Time News Roman or similar. Actually I'm using the Helvetica Neue, is very similar to the Univers 65 and dont have this problem. Is this a problem from the font name? from the opentype font? or the embedding thing or something?
    - The font type it is showing in the stage is the default one? Can flash (or the component, I don't know) render the embedded font? I really would like see my paragraph real size.
    - Now or in the future the component could link the containers and flow text in? (maybe can now and I dont now!)
    - When write a looong text in the component panel and the component is placing in the stage and it is very long too, I can't do scroll the text in the panel. When the stage component is very short there not problem, selecting the text I can scroll down.
    - Can I change the text layout component background color? If my text is white I can't see it.
    - If I have a text in japanese can I embed only this characters? I can use a range with
    [Embed(systemFont="--", fontName="--", mimeType="application/x-font", unicodeRange="U+0041-U+005A")]
    or include in the unicodeRange every character. There are another way?
    I really apreciate your effort building this library, until now Flash always was weak with the text thing, specially with languages as japanese.
    I was in the speech who Nat McCully did about the TLF in F-site in Tokyo and I relly excited about the TLF.
    From now I would like to try more the script than the component, maybe there some more questions coming...
    Thanks in advance.

    Try adding the images to the container dynamically
    var img : Image = new Image();
    img.load("{appURL}+{data.picname}")
    img.addEventListener(Event.COMPLETE,imageLoaded);
    private function imageLoaded(event:Event):void
                  var img : Image = event.currentTarget as Image;
                   // now add the img to the container
    cheers
    Varun Rathore
    http://www.vrathore.blogspot.com

  • Some question on IDOC (Control Record/Data Record/Status Record)

    Dear all,
    I am new in this area, and would like to enquire some question on this topic.
    When I view a IDOC via WE02, each of the IDOC record will consist of Control Record/Data Record/Status Record).
    Questions:
    I notice that the data records consists of many segment (i.e. E1EDK01, etc) which are use to store application data.
    1 - My question is do I have to manually create all these segment and do a mapping to my application field one by one (i.e. that is when I want to create a brand new message type from scratch)?
    2 - If question no. 1 is Yes, how to do it, what are the transaction code to create it? can you show me the step by step.
    3 - I don't have to create the Control record and the status record for my new message type right ? because those field value will automatically pull out from partner profile and system status message, am I correct?
    Thanks.
    Tuff

    Hi Tuff,
    As everything in SAP, with IDOCs too there are
    1) Standard IDOCs
    2) Standard IDOCs(Extending - Enhancement to an IDOC, to accomodate for custom values)
    3) Custom IDOCs
    And every IDOC has,
    Control record - EDIDC Structure - This mostly reflects the partner profile information, along with few more details which are used for IDOC extension, Sequencing etc
    Data Records - EDID4 Structure - These records contain the actual business data of the document in concern. So for ORDERS05 it would contain order details, INVOIC02 - Invoice details so on...
    Status Records - These records capture the status of an IDOC from the time it is received/sent from your system and a corresponding business document is created/changed. So this will have messages like "IDOC sent to the port OK" etc which are status from the communication layer(ALE) to application specific messages like "Sales Order XXX created" or "Invalid Material" etc.
    You would have noticed something called as Process code in the partner profile, this is associated with a FM(or work flow task etc) which has the business logic coded in.
    So in case of an Inbound IDOC, the sending system updates the IDOC - Control and Data records, and sends it to the receiving system. On the receiving system the IDOC's control record is validated against the partner profiles set, if an entry is found then using the process code it finds the associated FM which will decode the data from the IDOC data records as per the IDOC type and then use it to post data into SAP (VIA BDC, Batch Input, BAPI etc).
    And all this while the Status records are being updated accordingly.
    So with the above context will try to answer your questions,
    1 - My question is do I have to manually create all these segment and do a mapping to my application field one by one (i.e. that is when I want to create a brand new message type from scratch)?
    In case of a custom IDOC, yes you will have  to.
    In case of a standard IDOC, you wouldn't have you just have set up the necessary configuration (Partner Profile, Process code etc)
    In case of a standard IDOC extended to accommodate for some custom values(for which there are no fields in standard IDOC - Let us say you have added some new fields on VA01) - In this case you can still use the standard Process code and Standard FM associated with it, SAP provides several Function exits in these FM's which you can leverage to add your custom logic.
    2 - If question no. 1 is Yes, how to do it, what are the transaction code to create it? can you show me the step by step.
    There are several documents available on the net and on SDN detailing step by step approach for all the above three cases,
    just search for step by step guide for IDOCS - sap.
    3 - I don't have to create the Control record and the status record for my new message type right ? because those field value will automatically pull out from partner profile and system status message, am I correct?
    Again it depends, in case of using a standard IDOC you wouldn't have to. But in case you have some customizations/enhancements then you might have to.
    For Ex: updating the control record accordingly for indicating that you have extended the standard IDOC. Or append custom messages to the status record as per the business logic.
    Try out the examples you find on the net and post any specific questions you might have.
    Regards,
    Chen

  • Some questions on JFormattedTextField

    I more or less manage to work with JFormattedTextField, but have not mastered this control fully. I hope that someone can help me with some questions I still have.
    JFormattedTextField field = new JFormattedTextField(); // no-args constructor
    double d = 1.23456; // primitive type will be autoboxed to Double
    field.setValue(d); // AbstractFormatterFactory based on DoubleNow, when the field has the focus, a text value of +1.2+ is displayed. As soon as it looses focus, the text value is changed into +1.235+. I find that weird behaviour and would rather see it the other way around or see the same text in both situations. Can anybody explain me what's happening here? I do not observe this behavior when using one of the other constructors.
    Another problem has to do with internationalization. The Dutch locale, for example, uses a comma as a decimal separator. Users having a scientific background, however, often override the default settings and use a period as a decimal separator (on Windows by changing the regional options). Is there a way of using whatever separator a user has chosen for his system when formatting numbers in Java? I know you can use the DecimalFormatSymbols class to change symbols for a specific locale, but that does not take into account user-specific settings.

    Hi.
    Try this:
    DecimalFormatSymbols fs = new DecimalFormatSymbols();
        fs.setDecimalSeparator('.');
        fs.setGroupingSeparator(',');
    DecimalFormat format = new DecimalFormat("##.#", fs);
    AbstractFormatter formatter    = new NumberFormatter( format );
    AbstractFormatterFactory ff = new DefaultFormatterFactory( formatter, formatter, formatter);
    JFormattedTextField field = new JFormattedTextField();
    field.setFormatterFactory(ff);

  • Some questions on Labview under KDE4 and GNOME

    I have some questions regarding KDE4 an GNOME with Labview for Linux. I'm trying to help a colleague get somethings working with regards to these desktop environments.
    1. KDE4: When I try to open a VI directly through Dolphin (the default file manager under KDE4)..and the file (lets say ABCD.VI) is located in say /home/user/Test VI/ABCD.vi. When I double click, Labview starts and says that "/home/user/Test" is not a valid VI and it just errors out and refuses to open. It refuses to honor any whitespaces under KDE4 is what I've noticed. I haven't noticed this under KDE3. 
    2. GNOME: There are no icons for .vi files after installation, even though the desktop support for GNOME is installed during the install process.  
     Would appreciate some help!

    Hi Anshul,
    What version of Mandriva do you see this in?  We only official test for and support a couple distributions (SUSE is only supported up to 10.3): http://digital.ni.com/public.nsf/websearch/35D2B5E483A001A18625716B005BE464?OpenDocument 
    Regards,
    Jeremy_B
    Applications Engineer
    National Instruments

Maybe you are looking for

  • How can i get back to ios6 from ios7

    new ios7 makes my phone's app messies and it dosen't look gowjus rather it looks cheaper. i feel my phone got operating system with ios7 like so funny. this so dmmn **** apple gonna lose their reputation as they realesed iphone5c as well. this totaly

  • IMessages and OS 10.9.2

    Has anyone figured out how to fix this?  Some, not all of my imessages are not working correctly on macbook pro.  I can type to the contact - and then i see the dots letting me know their typing - but then it shows up on phone but not on computer.  B

  • Apex in IFRAME login problem (P3P IE6+)

    Hi I have problem with Apex application in Frame. I can't login to my APEX app because IE6 or 7 blocked cookies. I browsed internet about it and problem is in P3P. At this time I add to my Apex app this meta tag (changed Templates) *<meta http-equiv=

  • Question marks in workspace

    when i log into workspace i am seeing questions: i changed the admin password and restarted the services. attached is the picture. Thanks

  • Implementing listener in JcomboBox

    I am trying to create JcomboBox in which its item are a)1 b)2 so that when a user click on 1. In a JTextField called "add"the content of textfield should be increased by 1 and when 2 is clicked content of textfield should be increased by 2 thanx