Search This Blog

Monday, November 30, 2009

איך לעבוד בעברית עם writer של libreoffice?

אז איך עובדים בעברית עם writer של libreoffice?

אחרי תקופה ארוכה של שימוש לינוקסאי באנגלית, אני שוב בנסיון להפוך את לינוקס לדסקטופ העיקרי ולהתנתק מחלונות (לא אופטימי במיוחד בעניין... יותר מדי נקודות ממשק חלונאיות בסוגיות שעדיין אינן מקבלות פתרון טוב דיו בלינוקס).

כך מצאתי את עצמי מחפש ומחפש  איך מיישרים לימין.

אז כדי לחסוך לעצמי ולאחרים את החוויה העתידית המתסכלת הזו, תיעוד קצר:

הכי פשוט:
בתפריט לך אל - Tools>Options>Language Settings>Languages
שם סמן את CTL (שזה אומר Complex Text Layout)
והחיים בעברית יהיו הרבה יותר פשוטים.

קישורים נוספים שיכולים להיות מועילים




Friday, November 20, 2009

how to tell in linux if your hardware is 32 bit or 64 bit ?

How to find out in  linux if my mahine is 64bit or 32bit ? 

To check the software, any one of the following commands will do
  1. uname -a 
  2. uname -m (more specific to the data you need) 
  3. arch (equivalent to 2) 
  4. file /sbin/init
  5. getconf LONG_BIT
To check the hardware, one of the following can do the trick: 
  1. cat /proc/cpuinfo
    the output is long 
    what we seek is the flags part, in which we seek for the lm flag. 
    lm=long mode 
    (long mode - https://en.wikipedia.org/wiki/Long_mode)

  2. sudo dmidecode -t processor
    the output is not too short;
    search for the characteristics; you should see "64-bit capable"

    btw, you can also use dmidecode to get  the "Version" and search the specifications on the internet

pay attention
over the years, I ran into some reports and claims on the net that neither of the commands to find out about the hardware were accurate (in some hardware cases), and that therefore, 
if you want to be 100% sure that the hardware is capable of running a 64 bit linux software, you need to run a boot cd/dvd with a 64bit linux. 
personally, i haven't encountered a case in which the dmidecode command failed me. 

Sunday, November 15, 2009

איך יודעים אם במחשב פועלת גירסת 32 סיביות או גירסת 64 סיביות של מערכת-ההפעלה חלונות ?

בחלונות XP -
לחץ על התחל, בחר הפעלה
 הקלד "control sysdm.cpl"  (אין צורך במרכאות בהקלדה האמיתית)
וראה מה כתוב תחת "מערכת" (אם מערכת ההפעלה היא 64 ביט, זה יהיה כתוב שם מפורשות. אם לא כתוב - המערכת היא 32 ביט).

בחלונות 7 -
לחץ על מקשי WIN+R (או לחץ התחל ובתיבת "התחל חיפוש" הקלד Run ובחר)
הקלד "control /name microsoft.system"(אין צורך במרכאות בהקלדה האמיתית)
וראה מה כתוב בחלק השני של המידע (system) ליד System Type



עודכן/נבדק לאחרונה: דצמבר 2012.

Monday, November 2, 2009

File not found (WFMLRSVCApp.ear) during Oracle 11g release 2 installation

A friend called yesterday evening, sad and worried. He was trying to install the new Oracle Database - 11g Release 2 - but got stuck. He kept getting the a "File not found" error during installation, and couldn't find where did he go wrong.



He followed me through his steps - He downloaded the installation zip files. He verified that they downloaded ok. He unzipped each one into a designated folder. Then he  followed all the pre-installation prerequisites like a good DBA. And yet, that horrible error message kept appearing, and he could find no where online why this happened to him....

Between the lines I could understand that the best part of his Saturday has been spent in repeating attempts to find why WFMLRSVCApp.ear was missing.

As I've had this dubious experience myself in the past, the solution was easy. In the past, Oracle installations that spanned several CD-ROMs were asking during installation for the next CD. During the passage to the age of downloading it all from the web things changed. Although the instructions on Oracle's website clearly state: "Download and unzip both files to the same directory" they are sometimes missed.

All he had to do was move all the files under \file-number-2-extraction-folder\database\stage\Components into the parallel ..\database\stage\Components underneath the first zip extraction folder, re-run the installation (after wiping away the left-overs from his failed installations) and the installation worked smoothly.