Pages

Search

partition structure/layout - Forums Linux

partition structure/layout - Forums Linux


partition structure/layout

Posted: 26 Dec 2009 07:43 PM PST

Wanna-Be Sys Admin wrote: 



He is a well know troll
kill-filed by most here

Packet.dll and which wpcap.dll

Posted: 25 Dec 2009 08:24 AM PST

karthikbalaguru wrote:
 

.....

So, you knew, but didn't care? I saw after I posted this, that you had
several Windows OS related questions posted in a few Linux groups.
Anyway, I guess you know better for the future. Thanks.
--
Not really a wanna-be, but I don't know everything.

Ethereal on cygwin - 'which Packet.dll' and 'which wpcap.dll' ??

Posted: 25 Dec 2009 08:12 AM PST

On Dec 26, 3:27pm, Jens Stuckelberger
<net> wrote: 

But how else will he find someone with an actual clue?

Admittedly, the cross-posting is excessive, and a Followup-To: should
be set. But I've often found that the Linux support groups are much
better for network, cross-platform, or GNU toolchain issues than pure
Microsoft groups where they may not even know how to build things with
gcc and a real autoconf setup.

Scanning windows from linux

Posted: 24 Dec 2009 11:53 PM PST

On Monday 28 December 2009 19:09 in comp.os.linux.setup, somebody
identifying as karthikbalaguru wrote...
 

Of course not - last thing I heard nobody was giving away USB sticks for
free yet. ;-)
 

You are not going to find one, since USB sticks cost money. Most
distributions do however have the necessary tools for creating a
USB-stick-based GNU/Linux distribution, and some may even have
preconfigured and automated utilities to do such a thing for you.
 

Google is your friend.
 

Then you didn't look well enough. ;-)
 

Well, good luck with that then. The 2.6 kernel doesn't even fit on a
floppy anymore, so you'd be stuck with an old kernel, which may not
support all of your hardware. For instance, I don't even know whether
2.4 supports SATA hard disks.
 

If they are floppy-based, then they will certainly not hold any decent
antivirus software, given the size of such software suits.
 

Then why even consider it? ;-)
 

That is not what it was designed for, but in theory, you should be able
to make a bootable USB stick with the contents of that CD, yes. On the
other hand, you'd be far better off with a more complete distribution,
e.g. Knoppix.
 

I can't really help you with that. I've only used it once or twice, in
order to detect hardware errors on one of my machines.
 

Yes, that is what I wrote higher up already. You'd be far better off
with a "real" distro. There are several live-CD based distros, and
other distros allow you to make a live-CD with a few simple
mouseclicks, or a bootable USB stick. Look here and see whether you
can find something to your liking:

http://www.distrowatch.com
 

They will probably not have such scanners "on board", so you'd have to
add them yourself. The simpler the base you start from, the more work
you'll have at producing a bootable USB stick with a working distro
*and* a virus scanner.
 

USB sticks and floppy disks are not "embedded Linux". Embedded
(GNU/)Linux is what you find in routers, cellphones and satnav systems,
i.e. the "system on a chip" approach. Such systems usually don't come
with antivirus software, and most of the time those devices are
configured to not work as if they are complete UNIX systems.

For instance, a Linksys WRT router has a Linux-based system in firmware,
but other than approaching it via a webbrowser to make a few changes to
the settings, you can't do much with it, since the device was never
designed for any other purposes than being a router. Alternative
firmware downloads do exist, but they really *are* alternative, i.e.
you'd have to install it yourself. And for your intended purposes, the
issue is moot.

--
*Aragorn*
(registered GNU/Linux user #223157)

Virtualization : Clarification needed on Xen Hypervisor

Posted: 23 Dec 2009 02:44 AM PST

On Wednesday 23 December 2009 11:44 in comp.os.linux.setup, somebody
identifying as bzaman wrote...
 

That's how Wikipedia describes it. :p However, I prefer using different
nomenclature myself. I call the above-mentioned "type 1"
a "hypervisor", and the "type 2" a "virtual machine monitor".
 

Okay. ;-)
 

This is no longer required. As of Linux 2.6.30, the kernel supports use
on the bare metal, as a privileged Xen guest (dom0) or as an
unprivileged Xen guest (domU), all in the same kernel image. The
kernel will detect in which cirstances it is being booted.

The "kernel-xen" packages are probably 2.6.18 kernels which have been
patched with Xen compatibility by Xen.org themselves, because back at
the time of that kernel generation, Linux did not support
paravirtualization yet.
 

That's the actual hypervisor itself.
 

Not "host", but "privileged guest". The dom0 kernel runs on top of Xen
and is bootstrapped as a module to Xen when the machine boots, but it
too is virtualized. The bootloader actually loads Xen instead of
loading a Linux kernel, and Xen then loads and boots the dom0 kernel
via the "module" statement in "/boot/grub/menu.lst".
 

The unprivileged guest does not run on top of the dom0 kernel, but
*alongside* of it, on top of the Xen hypervisor itself. If it is a
paravirtualized guest, then its hardware access is relayed onto
back-end drivers in dom0, but under control of the hypervisor, as even
dom0 is a virtual machine and its operations are scheduled by Xen.

If the machine has hardware virtualization extensions, then the
unprivileged guest can be an unmodified operating system, and in that
case, Xen emulates certain hardware and traps the unmodified operating
system's hardware accesses with assistance from the virtualization
hardware.
 

No, that is incorrect. That which you are running in the dom0 GNU/Linux
virtual machine is "xend", a daemon which hooks into the hypervisor and
allows you to boot domU virtual machines and resize their memory in
realtime, among other things. It also helps in live-migrating a
running virtual machine to another physical computer which also runs
Xen - provided that you're not trying to move a 64-bit virtual machine
to a 32-bit physical machine, of course.
 

Xen runs on the bare metal, and that which is quite often mistakingly
called "the host" is in fact a virtual machine in itself, but it is a
privileged virtual machine. It is privileged because it has access -
via the xentools package, not via its own operating system tools - to
the memory of the unprivileged virtual machines, i.e. it can start and
stop unprivileged virtual machines via the xentools, and it
can "inflate" the memory of the unprivileged virtual machine via the
so-called "balloon driver".

The privileged virtual machine is also the primary "driver domain". It
contains back-end drivers for all the hardware, and the unprivileged
paravirtual guests contain front-end drivers, which are an abstraction
layer and which relay the hardware access onto the back-end drivers in
dom0, via the hypervisor. It is however possible to hide certain
physical hardware from dom0 so that it can be directly accessed via a
real driver from within an unprivileged guest, making this unprivileged
guest into an additional "driver domain". Yet all virtual machines run
directly on top of Xen, including dom0 itself.

--
*Aragorn*
(registered GNU/Linux user #223157)

Fedora 12: Problem with software update using Yum.

Posted: 22 Dec 2009 11:59 PM PST

I saw the same issue on a Fedora 12 update at the same lines. "yum
update" ran through the whole update process. Now the "software
update" process reports the machine is up to date.

Help needed for Lotus Notes on Ubuntu 9.04

Posted: 16 Dec 2009 12:33 AM PST

On Wed, 16 Dec 2009 00:33:41 -0800, kaari wrote:
 
Caveat: I am not running Ubuntu. However, I am running Notes 8.5.1 on
Slackware 12.2.

I think the answer is to get a registered version. The registered version
is obtained via IBM's passport advantage site, and must be paid for via
some method.

--
Douglas Mayne

virtualized redhat partioned

Posted: 14 Dec 2009 11:41 AM PST

On Saturday 19 December 2009 20:17 in comp.os.linux.setup, somebody
identifying as syd_p wrote...
 

Well, yes and no... It's a restriction of the legacy real mode BIOS
code and MS-DOS. Because of the required backward compatibility with
DOS and the DOS-based Windows versions - which were still being sold up
until the year 2000 - this is still being used today.

By design, any x86 processor - even x86-64 - default to the
DOS-compatible real mode at power up, and usually it's the
bootstrapping code in the operating system's kernel which sets up the
pagetables and descriptor tables and switches the processor in
protected mode.

On the other hand, machines with an EFI BIOS - such as the Intel-powered
MacIntosh - or a CoreBoot (a.k.a. LinuxBIOS) have a BIOS which switches
the processor into protected mode itself. Such systems then require a
special protected mode bootloader and a kernel without real mode
boostrapping code. Such machines can make use of a whole new
partitioning system which allows for up to 128 primary partitions per
disk.
 

Ehm, you are confusing a few things. An extended partition is not the
same thing as ext3, which is a *filesystem.* Also, Solaris - at least
on its native (Ultra)SPARC hardware - uses a kind of EFI BIOS, as do
MIPS machines with IRIX and machines with an Intel Itanium processor.
 

Not yet. ;-) The "no more than 4 primary partitions" is a limitation of
the x86 platform with a legacy BIOS. Non-x86 machines or x86 machines
with EFI or CoreBoot can use 128 primary partitions.

That said, there is an additional limitation for SAS/SCSI/SATA/USB hard
disks and PATA hard disks addressed via the new /libata/ drivers, i.e.
all disks that appear as "/dev/sd?". Such disks or even arrays of
disks can only make use of 15 partitions per disk, even if there are
more partitions than that - primary or extended is irrelevant. This
limitation exists because of programming confinements in the Linux
kernel SCSI midlayer, but it has nothing to do with the SCSI hardware
itself, whether used on x86 or on another hardware platform.

--
*Aragorn*
(registered GNU/Linux user #223157)

Limitation of partition's capacity with Fdisk ?

Posted: 10 Dec 2009 07:01 AM PST

On Dec 12, 4:29am, co.uk wrote: 

Well, fdisk might work well with the most venerable of controllers:
not everyone is going to have 2 TB disks to support yet! Not upgrading
such core utilities until you have to is a basic step to preserve
stability. And the friendly installers would have to be rewritten to
use parted instead of fdisk, which is a tricky bit of work. It
certainly seems worth doing, as gpt partition tables become more
reliable or even universally available.

Knoppix remastering. Where to configure keyboard layout?

Posted: 09 Dec 2009 06:29 AM PST

On 21 Dec, 08:30, Bengt T <com> wrote: 

Finally this issue was solved by putting "...xkeyboard=se..." into
relevant lines of the isolinux.cfg file during the remastering
process.

There are probably more elegant ways to define the keyboard but I can
survive with this.

Thank you all who bothered to assist me.

/Bengt

KERNEL - Thermal, fan, processor and other modules built-in

Posted: 08 Dec 2009 02:55 AM PST

On Dec 8, 3:05pm, Stefan Patric <com> wrote: 

It's a bit more than that. ext2 has some serious problems with too
many files in one directory, that are significantly eased by ext3.

Problem when upgrading Debian from stable (lenny) to testing(squeeze)

Posted: 07 Dec 2009 11:02 AM PST

Wookai writes:
a) File a bug report against sysv-rc.
b) Post your question to debian.org.
 

There is no file by that name. Please paste the exact command and the
exact result.
--
John Hasler
com
Dancing Horse Hill
Elmwood, WI USA

network doesnt start on bootup

Posted: 07 Dec 2009 03:53 AM PST

On Dec 8, 12:15pm, Allen Kistler <moc> wrote: 

Yes, in linux, chkconfig is very helpful and easy to use for
configuring the services.
The chkconfig command can be used to Enable/Disable certain services.
You can get the list of system services that are either Enabled/
Disabled by
using the chkconfig --list command. Here, you check whether the
network is ON/OFF.
If OFF, use chkconfig to enable network to be started in a specific
runlevel.

Checkout -
http://www.redhat.com/docs/manuals/linux/RHL-7.3-Manual/custom-guide/s1-services-chkconfig.html

Karthik Balaguru

Help setting up sshd, please

Posted: 04 Dec 2009 02:40 PM PST

Hi, Nico!

Nico Kadel-Garcia <com> wrote: 
 
 
 
 
 
 
 

Batch?
 

You're not short of choice, then. ;-) I have come to hat installers
that just ask a lot of questions, then do things behind your back. It's
great until something doesn't "quite" work. Particularly networking not
working. It never did for me, up until I got a broadband link with a
dhcp router.

The problem I stumbled over is just a bug in the gentoo installer. I'm
going to report it as such, and I expect they'll fix it.

--
Alan Mackenzie (Nuremberg, Germany).

Ubuntu 9.10: installation setup propaganda screen (reposted)

Posted: 03 Dec 2009 09:03 AM PST

* John Thompson <dhs.org>: 

Sounds like you used the Alternate Install CD for Xubuntu rather than
the Live CD. However, I don't think that the graphical installer on the
Live CD has the same informational "ad" screens that are in the latest
Ubuntu installer.

--
James Michael Fultz <as.invalid>
Remove this part when replying ^^^^^^^^

yum - No module named yum

Posted: 01 Dec 2009 08:32 AM PST

Ok I think I solved it, believe it or not, relatively
painlessly. I installed something called 'smart'
http://labix.org/smart

I removed yum-utils via the smart tool,
then downloaded (seperately) the yum package rpm,
installed it, and wallah, it worked!


Automatic install

Posted: 21 Nov 2009 01:21 AM PST


Thanks


Regards


Puppy Linux with windows manager style Xp

Posted: 19 Nov 2009 02:43 PM PST

news.tiscali wrote: 
have fun with it

Fedora Core 11: not booting

Posted: 18 Nov 2009 10:29 AM PST

John Goche wrote: 
 
 
 
 

Now I am confused. The "bubble" is what you get after the system is installed
and you are booting from the HD. Exactly what did you install or do before you
got this problem? Did you install the system?

When you boot the install disk you should get nothing but text messages which
are a no particular value. Then should come some questions on language,
keyboard type and such in ascii graphics.

--
If the world adopts Israel's view of the Goldstone report then the world
at least owes Milosevic a posthumous apology and possibly also to Hilter.
-- The Iron Webmaster, 4206
http://www.giwersworld.org/holo3/holo-survivors.phtml a3
Wed Nov 25 04:35:29 EST 2009

denyhosts is always denying

Posted: 17 Nov 2009 12:46 AM PST

On Mon, 23 Nov 2009, in the Usenet newsgroup comp.os.linux.setup, in article
<hedkdp$fg2$eternal-september.org>, John Taylor wrote:
 
 

Whoops!!! That's certainly not going to help ;-)
 

I don't think I've ever seen that, so I'd have to say it's not the
default. The only "ALL:" line I expect to see there is for the
loopback addresses.
 

Keep an eye on the size of /etc/hosts.deny to make sure it isn't
growing out of control. If it does, you can be wasting more CPU
cycles checking libwrap for each and every connection than you
would letting the script kiddiez connect and continue to guess
wrong. That's the 'PURGE_DENY' value.

Old guy

OpenVPN

Posted: 16 Nov 2009 05:26 PM PST

On Nov 18, 1:14am, Lew Pitcher <com> wrote: 

Thank you Very much Pitcher.
I have successfully connectd vista clients to the VPN using the note
you gave..

Thank you very much and I thankful to others too who have replied to
me...

Regards

GDM freezes after Ubuntu upgrade

Posted: 15 Nov 2009 06:22 AM PST

I demand that Ian Briggs may or may not have written...
 
 
[snip] 

BIOS and/or kernel upgrade, perhaps?

--
| Darren Salt | linux at youmustbejoking | nr. Ashington, | Doon
| using Debian GNU/Linux | or ds ,demon,co,uk | Northumberland | Army
| + http://www.youmustbejoking.demon.co.uk/ & http://tlasd.wordpress.com/

programming: n. The process of putting bugs into a program.

alpine email client and yahoo

Posted: 08 Nov 2009 04:58 AM PST

Jon Solberg wrote:
 

Pardon, I figured I could have looked, but the question of how to
configure it to work with Yahoo! mail led me to believe it's unrelated
to this group (about Linux, rather than just settings on an application
that can run on Linux). Not a big deal though.
--
Not really a wanna-be, but I don't know everything.

Keeping End Date Always in View Microsoft Project

Keeping End Date Always in View Microsoft Project


Keeping End Date Always in View

Posted: 23 Feb 2006 07:01 AM PST

In article <com>,
"Dann" <microsoft.com> wrote:
 

Dann,
Great and you're welcome.
John 

group by dropdown in Project Professional 2003

Posted: 23 Feb 2006 06:31 AM PST

Hi Steve,

AFAIK groups are saved in the project itself so once defined it will stay
available in teh project after dsaving and reopening.

--
Jan De Messemaeker, Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
For FAQs: http://www.mvps.org/project/faqs.htm
"steve" <microsoft.com> schreef in bericht
news:com... 
group. 


Actual start based on Status Date update of duration vs start date

Posted: 23 Feb 2006 06:29 AM PST

It sounds like you have a constrant on your start date or logic is holding
the date out. Add a column for Actual Start or add the ICON for Update Task.
You'll need to tell the task when it started and possible revise your logic.

"Bryan" wrote:
 

moving task bars

Posted: 23 Feb 2006 01:23 AM PST

Hi,

May I first quote you?

By my logic the
alap tasks should only finish at the start of the following tasks that were
set as asap

Wel, by my logic as well, and I've been asking for that development over the
past 5 years or so, but to no avail. An ASAP task becomes critical and is
"stronger" than any asap following, causing those to become critical as
well.

--
Jan De Messemaeker, Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
For FAQs: http://www.mvps.org/project/faqs.htm
"Nils214" <microsoft.com> schreef in bericht
news:com... 
asap 
the 
were 
case...illogical 
logic 
the 
did 
Now 
task, 
date. I 
the 
project 
rescheduled 


New task in existing plan to start LATER

Posted: 22 Feb 2006 09:27 PM PST

Thanks. That's what I do now. I was hoping for something else! This task
really isn't a successor to any particular one. When I do this, if the linked
task lags, it pushes this new task out in the schedule, and I don't really
want that to happen. In a big project, I might miss that I did that to the
task and it then doesn't get started when it needs to. The other method I've
used is to put a date constraint on it, but that has it's negatives too.

Oh well. Thanks again!

"Rod Gill" wrote:
 

Project 2003 Professional vs Standard?

Posted: 22 Feb 2006 07:47 PM PST

Hi,

Was this a mistype or a misread? Project Professional is significantly more
expensive than Standard!

--
Jan De Messemaeker, Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
For FAQs: http://www.mvps.org/project/faqs.htm
"Robert" <microsoft.com> schreef in bericht
news:com... 


Remove a combination view

Posted: 22 Feb 2006 07:24 PM PST

Many thanks, Dale. I actually did find it eventually at about 10 pm - and
proves that I'm an entirely unproductive person after 9pm at night. But it
is good to have this as a vehicle to answer questions and I appreciate your
response.
Kind Regards

"Dale Howard [MVP]" wrote:
 

i need a project planner for my pocket pc

Posted: 22 Feb 2006 01:41 PM PST

Hi Harry,

Look at Project Plan from Twiddlebit, go to www.twiddlebit.com.

As Rod mentioned though there are limitations around what is visible and
that is obviously a function of the PDA size.

Hope this helps

Regards

DavidC

"harry graves" wrote:
 

Indenting tasks/Duration issue

Posted: 22 Feb 2006 11:18 AM PST

Hi Felix, thanks for the reponse. The time period between the tasks is only
1 day. I've pasted the contents below. The last two are indented into the
first one. Kinda funny, if I paste them into a new project the times show up
correctly. Project is very frusturating...

Task Name Duration Start Work
Finish
Move Servers 14 days Thu 3/16/06 0 hrs Fri 3/17/06
Install DHCP 2 hrs Thu 3/16/06 0 hrs Thu 3/16/06
Move servers 2 days Fri 3/17/06 0 hrs Fri 3/17/06

"Felix" wrote:
 

work entered in seconds

Posted: 22 Feb 2006 11:08 AM PST

I have to ask - Why would you want to schedule in seconds?

"Nelson" wrote:
 

Difficulty downloading Project Trial

Posted: 22 Feb 2006 10:15 AM PST

Thanks for the tip.

"DavidC" wrote:
 

Problems with assigning calendars

Posted: 22 Feb 2006 09:35 AM PST

Thanks for the responses, I have found the problem, tasks that are not
assigned as of 'fixed duration' will not resize themselves according to the
calendar.


"Nils214" wrote:
 

i have problems with outdenting tasks and summary bars

Posted: 22 Feb 2006 09:35 AM PST

In article <com>,
"Nils214" <microsoft.com> wrote:

Nils214,
See responses below. 
Yes. When setting up a hierarchy in Project care must be used. Sometimes
the user may have to go an extra step to correct an erroneous indent or
outdent. 
There have been several comments over the years about the single undo of
Project. I don't recall for sure, but the level of undos "might" be
expanded in Project 12. Nonetheless, what it means for existing versions
is that the user must be careful and perform regular saves and/or
backups - but then that's just smart computing with any application or
OS. Powerpoint is a very slick application but it isn't worth a darn
when it comes to planning and scheduling.

John
Project MVP 

General

Posted: 22 Feb 2006 08:42 AM PST

Thank you Jan

"Jan De Messemaeker" wrote:
 

Project Summary Form in Project2000

Posted: 22 Feb 2006 06:29 AM PST

In article <com>,
"Peter Allanach" <microsoft.com> wrote:
 

Peter,
The things you describe look like they are out of Project Server, which
you mentioned in your original post. Project 2000 does not have that
functionality built-in although customized data could be created with a
VBA macro or SQL queries. It all depends on how much effort you want to
invest versus upgrading to Server.

John
Project MVP 

could not log on to PWA other than Administrator in project12

Posted: 21 Feb 2006 10:46 PM PST

madhur:

A couple of things: You're discussing a product version that is not
available to many people. More importantly, you're discussing subject matter
that may be under non-disclosure agreement with your company and could place
both your job and your company's relationship with Microsoft in jeopardy.

With that said, I've seen the problem you describe, even with domain admins,
and I can't offer you a resolution. Please redirect your inquiries to your
points of contact at Microsoft or the partner organization you're working
with.

--


Gary L. Chefetz, MVP
"We wrote the books on Project Server"
http://www.msprojectexperts.com

For Project Server FAQs visit
http://www.projectserverexperts.com

For Project FAQs visit
http://www.mvps.org/project


"madhur" <com> wrote in message
news:googlegroups.com... 


How do I print a schedule on one page in Project?

Posted: 21 Feb 2006 02:20 PM PST

Look at Format>Timescale. You can adjust the type of scale yoy need here -
Days, Weeks, Months.....

"JB" wrote:
 

Tracking different cost categories

Posted: 21 Feb 2006 01:41 PM PST

Thank you. I did discover the FAQ, will try it out. I suspected some part
of the answer involved VBA and exportation of data. I don't know where to
start with VBA, sigh.

Most disappointing is the inability to do timescaled representation of a
custom field. Since my tracking granularity for some of these other
categories is monthly, maybe I could define a number of custom fields, one
for each month, and export those out to Excel for summation. While somewhat
artificial, it would allow me to at least maintain the data in a single tool
(Project) and use Excel to present that data.

Thanks again. I am grateful for your advice.

Microsoft Word - Saving Word Docs on IPad to ICloud

Microsoft Word - Saving Word Docs on IPad to ICloud


Saving Word Docs on IPad to ICloud

Posted: 08 Mar 2015 03:41 PM PDT

I have a new Ipad with Word downloaded on it. Documents are automatically saved to One Drive - wherever that is - but I would like to save them to ICloud so that I can access them and vice versa from my desktop. I can't find a way to Duplicate to I-Cloud, which seems silly, since the new Word app is specifically for the Ipad. What am I missing?

Word 2010 macros using search-and-replace work only in text or in footnotes, not both at once

Posted: 08 Mar 2015 01:33 PM PDT

When I create a macro that uses a search-and-replace (literal or wildcard) operation, the macro works only in the text or only in the footnotes, wherever my cursor happens to be when I run it. How can I make the macro run in both the text and the notes simultaneously?

Adding to an existing list

Posted: 08 Mar 2015 12:00 PM PDT

Hello,

         I have created a document in Open Office. One for the players in my golf league and the other for a sub list. Today I tried to add names to that list and I was not able to get the cursor to the spot under the last name to add another. I just want to be able to add or delete names. Thank-you for any help.

                         ohputter

Certain sections of text change when Word is opened or closed.

Posted: 08 Mar 2015 11:51 AM PDT

Help!  I'm editing a document for a friend.  I believe they have a Mac while I have a PC, so this may be the root of the problem.  I'm just not sure what to do.  When I close the document and then reopen it, some sentences have changed.  The font size is usually smaller (10 instead of 12), is in bold, and in all caps.  I correct the sentences, close out Word, and then open the document again and they've done this again!  Sometimes there are additional areas that are messed up too.  This keeps happening over and over. 

Word - Insert Object Tool - Adobe

Posted: 08 Mar 2015 08:29 AM PDT

I have an issue trying to finish a document. I have Insert-Object-adobe pdf into a word document to save space in the appendices. Readers can double click on an object image to open the entire document in adobe. Now I am trying to save the entire word document as a pdf and the embedded pdf now does not work. The new document has flattened the embedded pdf and it doesnt open anymore. I tried Save and Send command as well using the pdf/xps command and that also fails. Is there any way to use that feature of word 2010 to insert the object. and then to be able to save the entire file as a pdf?? 

Very useful to insert the document. saves a lot of space in the appendices

Microsoft equation editor 3.0

Posted: 08 Mar 2015 07:00 AM PDT

I use Microsoft  2007 and  I have a problem when I use the Microsoft equation editor. When I type an equation many mathematical symbols ( { ,-, ] ;.....) do not appear on my screen. This problem is not related to the version of Microsoft office that I use because this problem doesn't occur in another PC with the same version. If it is related to the editor itself, How can I uninstall it.

How to create a dictionary for an unsupported language in Word

Posted: 08 Mar 2015 04:36 AM PDT

The custom dictionary is an addendum to the main one, that is, it refers to a language that already exists. But what if I want to add a new dictionary for a language that is not listed by Word?

WORD "disappeared" from my Dell

Posted: 08 Mar 2015 03:11 AM PDT

I purchased MS Word with my Dell computer when I ordered it online. It worked fine for a while and then the program just disappeared. I did not lose any saved work, and the WORD icon is still present. When I click on the icon though, it takes me to a screen where I have the option to buy WORD or if I have a 25 character key or active MS account I can "sign in" or use the key to access WORD, but I don't have the key. The only MS account I have is for XBox, and it won't accept that.

Has anyone encountered this? Any suggestions?

Microsoft Word 365 not responding, locks document

Posted: 07 Mar 2015 04:51 PM PST

When creating a Word document in 365 the application freezes and I have to force it closed. Upon reopening, the document is locked "In use by another user". This requires a reboot to access the document again. Anyone out there know what's going on with this? I've had so much trouble with 365 I'm about ready to ask for a refund. I have to get my work done and cannot continuously reboot.

How to disable NIS in Linux - Forums Linux

How to disable NIS in Linux - Forums Linux


How to disable NIS in Linux

Posted: 09 Nov 2009 02:34 PM PST

On Nov 9, 7:25pm, BBH <com> wrote: 

It looks you've disabled NIS. What does "ypwhich" say? And What
happens if you delete the account and attempt to re-add it? And is /
home perhaps NFS mounted, with root permissions disabled, which would
block "useradd" from creating accounts?

Framebuffer on a modern graphics card?

Posted: 08 Nov 2009 01:54 PM PST

Aragorn wrote:
 

I have not seen the problems that "others report".

I use ATI an currently have a 4670HD, works flawlessly with the radeon,
radeonhd driver or catalyst drivers.

No problems.

Error when installing the latest nvidia driver on Ubuntu 9.04

Posted: 31 Oct 2009 09:02 AM PDT

On Sat, 31 Oct 2009 18:15:48 -0500, John Thompson
<os2.dhs.org> wrote:
 

You were absolutely right! There were old drivers and symlinks to them in
/lib32 and /lib32/tls. I manually removed the files and the installation
went without problems. 32 bit support (Google Earth) works fine. Thank you!

--
//ceed

Trouble with non-ASCII characters over SSH. Help, please!

Posted: 30 Oct 2009 01:01 PM PDT

* Unruh <ubc.ca>: 

Agreed except ssh might be part of the solution, explained below.
 

There are ssh configuration options for client and server for passing on
environment variables. I was thinking of this earlier having recently
read about it in another discussion but could not clearly recall it at
the time of my reply

Quoting ssh_config(5):

SendEnv
Specifies what variables from the local environ(7) should be sent
to the server. Note that environment passing is only supported
for protocol 2, the server must also support it, and the server
must be configured to accept these environment variables. Refer
to AcceptEnv in sshd_config(5) for how to configure the server.
Variables are specified by name, which may contain the wildcard
characters '*' and '?'. Multiple environment variables may be
separated by whitespace or spread across multiple SendEnv direc-
tives. The default is not to send any environment variables.

Quoting sshd_config(5):

AcceptEnv
Specifies what environment variables sent by the client will be
copied into the session's environ(7). See SendEnv in
ssh_config(5) for how to configure the client. Note that envi-
ronment passing is only supported for protocol 2. Variables are
specified by name, which may contain the wildcard characters '*'
and '?'. Multiple environment variables may be separated by
whitespace or spread across multiple AcceptEnv directives. Be
warned that some environment variables could be used to bypass
restricted user environments. For this reason, care should be
taken in the use of this directive. The default is not to accept
any environment variables.

--
James Michael Fultz <as.invalid>
Remove this part when replying ^^^^^^^^

Linux / UNIX Distributions VAIO Laptop Installation

Posted: 28 Oct 2009 12:37 AM PDT

On Oct 28, 2:37am, "com" <com>
wrote: 

Download and burn an iso of the new Ubuntu live CD.
Boot from it and check to see if video, network, sound etc work.
If they do then install it.

Richard Stallman On FOSS GNU And Freedom

Posted: 24 Oct 2009 01:06 PM PDT

On Sunday 25 October 2009 03:46 in comp.os.linux.setup, somebody
identifying as Nico Kadel-Garcia wrote...
 

The OP would probably raise more of an interest if he had posted it to
gnu.misc.discuss, but then again, the OP uses Google Groups as a User
Agent and multiposts, so I guess that says enough... ;-)

--
*Aragorn*
(registered GNU/Linux user #223157)

working directory

Posted: 22 Oct 2009 07:00 AM PDT

The Natural Philosopher wrote:
 

The OP stated they didn't need the data on the mounted directory, so
everyone's mention that they are ed until they copy data is
probably not correct. Anyway, if a forced umount doesn't do the trick,
as others have mentioned, you need to put in a new USB stick and then
umount it. Then restart MySQL.
--
Not really a wanna-be, but I don't know everything.

reliability of monitoring tools

Posted: 19 Oct 2009 07:44 AM PDT

Thanks, it helped me to understand the process of CPU-Monitoring a little
bit better.
Jacob

"Sidney Lambe" <invalid> schrieb im Newsbeitrag
news:net... 


Can someone help me with permissions please.

Posted: 19 Oct 2009 03:34 AM PDT

Dave wrote:
 

What are the permissions on the /home/dave directory itself? Likely
Apache doesn't have permissions to access the main account root
directory. Anyway, consider using SuEXEC CGI wrapper if this is a
system other users have access to run PHP or CGI scripts on. If not,
then it's safer to keep it as the global Apache user like you have it
now. And, no, chmod 0602 will not give permission on a directory, even
if the owner is set to the Apache user. For a file it would work at
600, if it's the right owner (read and write), but directories need to
be higher (700 at least, if it's the same user for read, write and
create access).
--
Not really a wanna-be, but I don't know everything.

Quicker access to "More Views.." selections? Microsoft Project

Quicker access to "More Views.." selections? Microsoft Project


Quicker access to "More Views.." selections?

Posted: 22 Feb 2006 06:42 AM PST

To add a tool bar of views: View>View Bar
For the view to be visable in the tool bae you'll need to follow Jan's
suggestion first.

"Pat" wrote:
 

Week Ending not Week Begining?

Posted: 22 Feb 2006 03:00 AM PST

I am always confused when I see date ending weeks. But you might look at
Tools>Options>Calendar and chanege the Week Starts On. I've never changed
this from Sunday so good luck.

"tbardlse" wrote:
 

% Completed vs. % Estimated

Posted: 21 Feb 2006 10:56 PM PST

Absolutely, Rod. A more basic item that many Newbies shol dunderstand is the
dofference between % Complete and % Work Complete. In your explaination of
updating the Duration, versus updating the Work, the two different fields
will soon "go out of alignment" with one another. It confuses many people
when they don't understand that:

% Complete - tracks progress through the task's DURATION
% Work Complete - tracks progress toward completion of WORK

There is also a third field called "Physical % Complete". it is an
alternative field that can be used to calculate BCWP for EVM. The
description of this field and recommended use is clearly described in the PSm
2003 Help files.


--
RTucker, PMP


"Rod Gill" wrote:
 

How do I create a time-phased budget in MS project?

Posted: 21 Feb 2006 09:12 PM PST

In article <com>,
corina <microsoft.com> wrote:
 

corina,
Some might say that the Baseline Cost field is the budget but it kind of
depends on how you view a "budget".

I suggest you set up your plan complete with resources. The original
estimated cost will be the Cost field and this would be treated as the
budget. When it is all set up, go to Tools/Tracking/Save Baseline and
save a baseline for the entire project. Project then captures all the
data in the Cost field and saves it in the Baseline Cost field so it can
be used for earned value calculations or any other comparative ysis.

Hope this helps.
John
Project MVP

Question mark in Task Duration

Posted: 21 Feb 2006 05:21 PM PST

In article <googlegroups.com>,
com wrote:
 

Cole,
You're welcome.
John

MS Project Standard Compatibility

Posted: 21 Feb 2006 03:56 PM PST

Thank you Rick

"Rick Roszko" wrote:
 

Why does an 8 hour day start on 1 day and finish on the next?

Posted: 21 Feb 2006 12:11 PM PST

Thanks for the reply. I figured out what I was doing wrong. It has to do
with some people working an 8 hour day and some people working a 6.4 hour day
on the same calendar. I just messed up the time allocation so that it always
seemed to just be over 1.00 days of work.

Thanks anyway.

Roadrawts


"Gilgamesh" wrote:
 

setting up cost per hour

Posted: 21 Feb 2006 12:07 PM PST

Thanks for you feed back. I added the column like you said. I'm not really
sure what the deference is between work, actual work is. I guess work is how
much I have and actual work is how much can be done?. I'm still not clear on
setting up cost for work being done.

"Rick Roszko" wrote:
 

resources instead of tasks

Posted: 21 Feb 2006 10:39 AM PST

Hi,

Will the Resource sheet view not give you what you are looking for? This
view groups tasks by resource and shows the hours being worked on each task
each day.

Hope this helps

Regards

DavidC

"kotoman" wrote:
 

Using Project for manufacturing

Posted: 21 Feb 2006 09:29 AM PST

The great advantage Project has for Custom manufacturers is distributed (web kiosk)
task sheets and status updates in the Server version. Many full scale Manufacturing ERP systems
don't even include this, while some can achieve it via bar scanning as a data colection point. Custom often
means a whole lot of unknows (and worse cowboys running through your plant playing hero to keep their customers happy,
and everybody else) so if you can find out the reality of your present situation you can make good scheduling
decisions with bottom line company wide impact of those decisions.
An offshoot of capturing the ebb and flow of work on the shop floor is that with a simple coding system, any cost
evaluation is a data query away. This can blend with existing process/material/production/sales systems already in place.

Job A had 5 hours framing-2 hours finishing-1 hour packing. This is a simple audit after the production of Job A has been completed.
This then becomes your actual hours vs. quoted hours(revenue or operational)....mix that with the materials per Job A and voila,
done.
All enabled by real time recording of actuals from the shop floor on
task completion,
task change,
end of shift.

The closer you can get to real time status the more accurate and better performance the shop will have
because true limits to production are easy to spot. This discipline lets cost calculations be a non issue.
Just go use the information you had to gather anyway in order to time the events of transforming "materials and work" into
"product:"

So Project does the same thing as Project server, you would just need a way to record the actual status of the shop floor
and get it into the files. (Clipboard and running shoes come to mind).


"John" <com> wrote in message news:microsoft.com... 


Is there a Wizard in Project 2000 that reviews the schedule

Posted: 21 Feb 2006 08:20 AM PST

Hawnp --

I believe the QuantumPM Schedule Auditor is the tool you are describing:

http://www.quantumpm.com/qsa.aspx

Hope this helps.

--
Dale A. Howard [MVP]
Enterprise Project Trainer/Consultant
http://www.msprojectexperts.com
http://www.projectserverexperts.com
"We wrote the book on Project Server"


"Hawnp" <microsoft.com> wrote in message
news:com... 


Schedule Template w/ Customized Sub Menu's

Posted: 21 Feb 2006 08:00 AM PST

Which option would you like me to comment on?
I have experience with all of them.

--
Jan De Messemaeker, Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
For FAQs: http://www.mvps.org/project/faqs.htm
"VSAT Ryan" <microsoft.com> schreef in bericht
news:com... 
them 
to 
company 
created 
is 
creating 


How do I outdent tasks that are indented (Project 2003)

Posted: 21 Feb 2006 02:41 AM PST

Moderator,

please close/delete this thread since it a duplicate.

Thanks.
Kav.



"kav" wrote:
 

Duration of task & subtask, assigned to resources % of their time

Posted: 20 Feb 2006 09:29 PM PST

A project produces a specific output. The duration of a project (and the
tasks within it) is whatever time it takes to produce that output. The more
resources you have and the harder they work, the less time it will take to
produce that output with the rare exception of physical processes that take
a specific time, like the time it takes concrete to harden. The planning
process is one intended to help you get the required output completed in the
shortest time and lowest consistent with the quality objectives you need to
achieve.

Notice that my focus here is on the output. You don't start with a defined
block of time - 3rd quarter of 06, for example - and then fill it up with
activity. Instead you start with the knowledge that you have to generate a
marketing plan that involves shooting 6 30-second TV commecials, placing
weekely ads in 15 national magazines, and hosting a customer appreciation
conference in the Bahamas. When you sit down with project, you're seeking
to answer the question "If I start the whole process next next Monday, when
should I tell the production company to start shooting the 4th ad in the
series, when should I schedule the meeting with the ad agency to finalize
selecting the photos for the print campaign, and what dates do we need to
reserve at the hotel in the Bahamas?" When you input what is essentially
the flow chart of the process of the campaign along with your estimates of
how much work each step of the process will require, MS Project calculates
those dates for you. Note that the purpose is not to doent dates that
are predetermined. Rather it is to compute dates that are NOT yet known.
You have certain targets that are known, true enough, but Project's job is
not to list the targets, it's to help you figure what concrete steps you
must take to achieve those targets.

HTH
--
Steve House [MVP]
MS Project Trainer & Consultant
Visit http://www.mvps.org/project/faqs.htm for the FAQs



"Reb T" <microsoft.com> wrote in message
news:com... 

How to retrive Calendar variantions from Microsoft Project

Posted: 20 Feb 2006 04:57 PM PST

Thank You John for acting on it so quick.
sorry for the insufficient information.
i am taking to the Microsoft objects using its disinterfaces. or
fvMSApplication := CreateOleObject('MSproject.Application');
ie. i am not getting data from database or xml.

My application has the similar objects as in the microsoft project. I
am populate my objects properties with Microsoft Project Objects
properties.
The application is really fast when i am getting project, task,
resource objects and its properties. but when it comes to the Calendar
object to get Variations to it i have to go thought loop which checks
if the day is different than the regular wroking calendar hours:

the loop is something like this:


LIDiff:=
DaysBetween(LMicrosoftProjectStartDate,LMicrosoftP rojectStopDate);

for Ly:= 0 to LIDiff+1 do
begin
LDate:= LStartDate;
LDayOfTheWeek:= DayOfTheWeek(LDate);
DecodeDate(LDate,LStartOfYear,LStartOfMonth,LStart Ofday);

LvDay:=
LvMicrosoftCalendar.Years[LStartOfYear].Months[LStartOfMonth].Days[LStartOfday];

{--Add Holidays--}
AddVariationIfMSDayIsHoliday(LvDay,LDayOfTheWeek,L Date); //This
function checks if the day is working or not
{--Add Exceptinal Working Days--}
AddVariationIfMSDayIception(LvDay,LDayOfTheWeek ,LDate); // This
function checks if the wroking day has differnt shift timings

LStartDate:= LStartDate + 1; //increment Date

end;

And to get working time information i am getting it by accessing
Microsoft SHIFT object from the Microsoft Day object.

Although this loop works but it takes tremendous amout of time as
every resorce also has calendar variations or exceptions and i need to
get them as well.
Thank again for your time.
I am only a junior programmes so in case if i have described something
wrong please let me know.

Thanks.
Gaurav

Printing Gantt on Multiple Pages

Posted: 20 Feb 2006 12:45 PM PST

I don't think this is possible, sorry.

--
Jan De Messemaeker, Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
For FAQs: http://www.mvps.org/project/faqs.htm
"allison" <microsoft.com> schreef in bericht
news:com... 
the 
from 
what 
on 
the 
GREATLY 


Microsoft CRM - Convert all incoming emails

Microsoft CRM - Convert all incoming emails


Convert all incoming emails

Posted: 20 Oct 2005 06:30 AM PDT

Do you know how to do this? If so, can you please provide me with some
directions?

Thank you!!

"cc" wrote:
 

sales for Outlook - requirements

Posted: 20 Oct 2005 04:27 AM PDT

thanks for your quickly reply.
Now I must change Operating system , because more than one laptop have WXP
home edition

thanks for all
--
Benito Rosado
Milano, Italy


"Arne Janning" wrote:
 

Help please - Another email router problem!!

Posted: 19 Oct 2005 01:10 PM PDT

Were they all configured at the same time? Exchange caches some of these
settings and you may need to cycle the server for it to pickup a setting
change for the users. Other than that, I don't know.

--

Matt Parks
MVP - Microsoft CRM


"Isil" <microsoft.com> wrote in message
news:com...
Matt,

Thank you for your quick response but yes, I have added CRMEMailEnable
setting to their exchange profiles. Any other ideas?

Thanks
Isil

"Matt Parks" wrote:
 
in 


One Activity Record - Two 'Owners'

Posted: 19 Oct 2005 05:44 AM PDT

Thanks, Dave - appreciated.

Cozy

"Dave Carr" wrote:
 

Enquiries on MS CRM

Posted: 18 Oct 2005 06:43 PM PDT

Hi,

As Matt sayd you cannot create many-to-many relationships in CRM. There are
some 3rd party tools which allow customers to do this (with some
limitations). Check out the tools of C360 or Salentica. But you won't be able
to report on these relationships using Crystal Reports (you should be able to
do so with Sql Reporting Services).

I hope this helps,
Rob Bakkers,
Avanade Netherlands


"Johnson" wrote:
 

where is MSCRM 3.0?

Posted: 18 Oct 2005 06:24 PM PDT

I just got an email for MS that said Oct 24th is the new beta release date.

Chris

"dbj" wrote:
 

Changed administrator password now I can't login

Posted: 18 Oct 2005 04:26 PM PDT

The account is not locked and the password never expires. My administrator
account was probably used when CRM was installed (was around for that). Does
CRM request a user account during the install process? If so, then my
administrator account was probably used and since I changed it's password CRM
is not working right.

Microsoft CRM 3.0 - Is it multi-currency?

Posted: 18 Oct 2005 05:13 AM PDT

Nigle, One of my clients has been very happy with Experlogix.
http://www.experlogix.com/

In addition to handling multi-currency (quoting, opportunities too),
they also handled their custom requirement to do discounting at the
opportunity level, AND they make it MUCH easier to select multiple
products (probably save a dozen or more clicks per product add) by
letting you create one page where you can select all of your products
(you first select the category, then products can be grouped by
'service, warranty', etc.)

And the support has been good, too. HTH,

Dave

-------------------------------------------------
David L. Carr, President
Visionary Software Consulting, Inc.
Main #: 971-327-6944

NEW! VAST 1.2.5 featuring VAST Insights for Microsoft CRM! Now, VAST
audits all changes, but also gives you easy query capability into that
historical data!
For informative screenshots, please see
http://www.vscrm.com/screenshots.htm.

Customer Service with MS CRM

Posted: 18 Oct 2005 03:49 AM PDT

Rap,

The CRM 3.0 workflow tool is better, but it will still take a fair
amount of work to make it 'redirect to alternate paths after
diagnostic'. As you can now customize activities in 3.0, you should be
able to add expense tracking information to a task, e.g..

If you need to "keep a precise track", then you'll need VAST (Visionary
Audit System Tools, keep track of all changes made to incidents, etc.).
(By the way, VAST 1.2 is available until CRM and VAST 3.0 are released
for just $99/user, including 1 yr. maint.)

The web is still pretty much an unknown. Some ISV's have created web
portals, but MS has never publicly talked about the licensing issues.
Hopefully, that will be part of the long awaited 3.0 pricing
announcement... HTH,

Dave


-------------------------------------------------
David L. Carr, President
Visionary Software Consulting, Inc.
Main #: 971-327-6944

NEW! VAST 1.2.5 featuring VAST Insights for Microsoft CRM! Now, VAST
audits all changes, but also gives you easy query capability into that
historical data!
For informative screenshots, please see
http://www.vscrm.com/screenshots.htm.

CRM Privilege Error

Posted: 18 Oct 2005 02:14 AM PDT

If you have access to partnersource, there is a KB article with steps to fix
this. THey say it is caused by the user account does not have Local
Activation permission on the CrmBulkMailService DCOM object. The article is
at
https://mbs.microsoft.com/knowledgebase/KBDisplay.aspx?WTNTZSMNWUKNTMMYKOYVTOLQWXPSLWRZZXZ QYZUQUYNULQWNMZKMMNPQUQLNPVRTTXVNONULVNXOYZVSPUTLR TQYOZLQQTQZ


--
Matt Wittemann
http://icu-mscrm.blogspot.com


"Ian Kelsall" wrote: