Author Topic: libre office  (Read 2306 times)

Online Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6380
  • I'm going South
Re: libre office
« Reply #15 on: July 09, 2011, 02:32:49 AM »
I switched from Postimage to Tinypic, and for the moment the links seem to work.

However: when editing the posts I had some trouble connecting to the forum, and now the forum seems to have lost its spellchecker.

« Last Edit: July 09, 2011, 02:36:02 AM by Bald Brick »
Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D

Offline djohnston

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6227
  • I don't do Windows
Re: libre office
« Reply #16 on: July 09, 2011, 02:35:09 AM »
Houston, we have liftoff! I use tinypic, too. Never had a problem with images, as long as I don't delete the sources.
Bare metal                           VBox
AMD Athlon 7750 Dual-Core    Single core
4GiB RAM                              1GiB RAM
nVidia GeForce FX 5200          64MB video
LXDE 32bit                            KDE 64bit

Registered Linux User #416378

Online Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6380
  • I'm going South
Re: libre office
« Reply #17 on: July 09, 2011, 03:58:24 AM »
Hi bald brick, i think i have a solution for this just like what you suggest me. I must open one document in a folder through dolphin so libre can mount that folder. After that i can mount others document in that folder with open option in libre. so difficult huh??
I have this problem too with clementine. If i click play on playlist, clementine can't play the songs in playlist. I must open the folder that has all of my songs with dolphin after that i click again play in playlist, and clementine can play all of songs. oh my god, not simple at all, but i like pc os linux, so beautiful  

Yes, if you have your text files or songs on removable media, you have to mount the partitions where they reside, e.g. by clicking them in the Places panel in Dolphin. (Or you could simply use the Device Notifyer widget.) Only then can you access them from most programs.

But if you have them on your internal hard drive you could have them mounted automatically at boot by editing the file /etc/fstab. If that is the case, post back. We just have to ask a few questions about your setup.

I'm sorry your thread got a bit off topic because of the trouble with my images.
« Last Edit: July 09, 2011, 04:18:21 AM by Bald Brick »
Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D

Offline Linuzoid

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 1404
    • LinuzoidArt Studio
Re: libre office
« Reply #18 on: July 09, 2011, 10:14:03 AM »
Hey there Bald Brick I've had problems with postImage.org too. Seems they (postImage) deleted the images.
Be very, very kind to your neighbors, but don't take the fence down!

Offline ubi

  • Jr. Member
  • **
  • Posts: 19
Re: libre office
« Reply #19 on: July 09, 2011, 03:26:57 PM »


But if you have them on your internal hard drive you could have them mounted automatically at boot by editing the file /etc/fstab. If that is the case, post back. We just have to ask a few questions about your setup.

I'm sorry your thread got a bit off topic because of the trouble with my images.


hi bald brick

your images are seen now. Yes there are no spellchecker now. what happen with this web, someone do something bad to this forum?

All what i said about documents or songs are in my hard drives. i don't understand with "editing the file /etc/fstab" can you tell me more? i install pc os linux as dual boot with windows 7. whether it is causing the problem? all of my hard drives are in ntfs format. I have no problem when i install pc os linux, everything are fine

Online Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6380
  • I'm going South
Re: libre office
« Reply #20 on: July 09, 2011, 05:01:11 PM »


But if you have them on your internal hard drive you could have them mounted automatically at boot by editing the file /etc/fstab. If that is the case, post back. We just have to ask a few questions about your setup.

I'm sorry your thread got a bit off topic because of the trouble with my images.


hi bald brick

your images are seen now. Yes there are no spellchecker now. what happen with this web, someone do something bad to this forum?

All what i said about documents or songs are in my hard drives. i don't understand with "editing the file /etc/fstab" can you tell me more? i install pc os linux as dual boot with windows 7. whether it is causing the problem? all of my hard drives are in ntfs format. I have no problem when i install pc os linux, everything are fine

The file /etc/fstab contains entries telling the system how, when and where your partitions should be mounted. That they are formatted for NTFS is no probllem these days.

My own /etc/fstab contains the line
Code: [Select]
LABEL=WinDATA /home/erik/WinData ntfs-3g defaults 0 0which simply says that the NTFS partition labelled WinDATA should be mounted with default options at a mountpoint called WinData in my home directory. One of the defaults is that it is mounted at boot.

If I hadn't given the partition a label, I could have replaced "LABEL=WinDATA" with "UUID=BA1062021061C64B", i.e. the UUID number of the partition, or with "/dev/sdb5". Labelling partitions is often preferable because the labels are permanent while device designations and UUID numbers can change under certain circumstances. To see the UUID numbers and Labels of your devices, simply enter the command blkid in a terminal.

The second field in the line above is the mountpoint of the partition. A mountpoint is simply a (preferably empty) directory where you want to see the contents of the partition. When you click on an unmounted partition in the Places panel in Dolphin or Konqueror the system will create a subdirectory under /media and mount it there. When you give a partition a line in /etc/fstab you can mount it almost wherever you want, but only after you yourself have created the mountpoint, or in other words, the directory where you want to access the partition.

In the third field above, "ntfs-3g", the meaning of "ntfs" is obvious, but "-3g" is needed if you want to be able to write to the partition.

The "defaults" is probably all you need in the fourth field, but here you could specify when and by whom the partition is accessible.

Of the two zeros at the end of the line the first one is only important for certain backup operations and the second one tells the system that the partition shouldn't ever be checked at boot -- it is after all a Windows partition.



You can edit /etc/fstab yourself (as root) or you can let diskdrake (the partitioner in PCC) do it for you. If you want help with a manual edit, you have to post the output of the commands blkid, and fdisk -lu=cylinders. And we should also see what your current /etc/fstab looks like. (Try "cat /etc/fstab".) And then you have to tell us where you want the partitions mounted.




Edit: If you have an old install that isn't fully updated, the command fdisk -lu=cylinders won't work but plain fdisk -l will.
« Last Edit: July 12, 2011, 01:41:34 AM by Bald Brick »
Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D

Offline ubi

  • Jr. Member
  • **
  • Posts: 19
Re: libre office
« Reply #21 on: July 11, 2011, 08:14:00 PM »
i'm very sorry bald brick, my internet has wrack.
i think i don't have folder like what you said etc/fstab. where i can find it.



Offline djohnston

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6227
  • I don't do Windows
Re: libre office
« Reply #22 on: July 11, 2011, 10:41:22 PM »

i think i don't have folder like what you said etc/fstab. where i can find it.


It's not a folder. It's a file. You're in the right directory. You just need to scroll down closer towards the bottom.

Another way to see the file is just open a terminal. You don't need to be root. Just enter into the terminal:

cat /etc/fstab

Copy the output in the terminal and paste to the forum so Bald Brick or someone else can see how that NTFS partition is being mounted.
Bare metal                           VBox
AMD Athlon 7750 Dual-Core    Single core
4GiB RAM                              1GiB RAM
nVidia GeForce FX 5200          64MB video
LXDE 32bit                            KDE 64bit

Registered Linux User #416378

Offline ubi

  • Jr. Member
  • **
  • Posts: 19
Re: libre office
« Reply #23 on: July 12, 2011, 09:26:05 AM »
ok djohnston, this is what i got from etc/fstab

# Entry for /dev/sda9 :
UUID=d62e77bd-acac-4297-a3fe-1812822c37e1 / ext4 defaults 1 1
# Entry for /dev/sda11 :
UUID=b5998cc9-7312-4e47-88db-9e9cde295131 /home ext4 defaults 1 2
none /proc proc defaults 0 0
# Entry for /dev/sda10 :
UUID=14106ef3-dd4b-455e-b393-899c31e7c62e swap swap defaults 0 0
none /dev/pts devpts defaults 0 0

Online Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6380
  • I'm going South
Re: libre office
« Reply #24 on: July 12, 2011, 12:48:58 PM »
ok djohnston, this is what i got from etc/fstab

# Entry for /dev/sda9 :
UUID=d62e77bd-acac-4297-a3fe-1812822c37e1 / ext4 defaults 1 1
# Entry for /dev/sda11 :
UUID=b5998cc9-7312-4e47-88db-9e9cde295131 /home ext4 defaults 1 2
none /proc proc defaults 0 0
# Entry for /dev/sda10 :
UUID=14106ef3-dd4b-455e-b393-899c31e7c62e swap swap defaults 0 0
none /dev/pts devpts defaults 0 0

This means that currently only three partitions are automatically mounted at boot: /dev/sda9 as / (the root partition), /dev/sda11 as /home and /dev/sda10 as swap. None of them are labelled.

Now we just have to identify the ntfs partitions that you also want mounted at boot. The output of
Code: [Select]
fdisk -l -u=cylinders will help us there. (The "l" is a lowercase "L", not a capital "I". And if your version of fdisk is old the "-u=cylinders" part will confuse it.)

And the output of  
Code: [Select]
blkid will help us some more if we want to use UUID numbers. (Using labels is preferable, but let that be our next project.)

This would be almost all we need to know, except for one thing: you have to create the mountpoints. That is easy -- once you know where want to mount your Windows partitions.

When you click them in a places panel, the mountpoints will automatically be created as subdirectories of /media. For temporary mounts mounted in any other way making them subdirectories of /mnt would be a natural choice.

But if you want to mount the partitions more or less permanently, neither /media nor /mnt would be ideal. If you only have one user I'd create the mountpoints in that users home directory, or in other words as /home/<yourname>/<mountpoint>. But you have to decide what <mountpoint> is actually to be called. "Data"? "Songs"? "Pictures"? "Windows"?

It's your decision.

Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D

Offline ubi

  • Jr. Member
  • **
  • Posts: 19
Re: libre office
« Reply #25 on: July 12, 2011, 11:27:35 PM »
This is what i got from your suggest, bald brick

[garadaiva@localhost ~]$ fdisk -l -u=cylinders
[garadaiva@localhost ~]$ blkid
/dev/sda7: UUID="d34bc1c5-8ff2-41c4-a2a2-26123b241d10" TYPE="ext4"
/dev/sda1: UUID="959da3d8-9a3a-4fae-bb76-42174b417d4c" TYPE="swap"
/dev/sda9: UUID="d62e77bd-acac-4297-a3fe-1812822c37e1" TYPE="ext4"
/dev/sda10: UUID="14106ef3-dd4b-455e-b393-899c31e7c62e" TYPE="swap"


Online Bald Brick

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6380
  • I'm going South
Re: libre office
« Reply #26 on: July 12, 2011, 11:41:41 PM »
This is what i got from your suggest, bald brick

[garadaiva@localhost ~]$ fdisk -l -u=cylinders
[garadaiva@localhost ~]$ blkid
/dev/sda7: UUID="d34bc1c5-8ff2-41c4-a2a2-26123b241d10" TYPE="ext4"
/dev/sda1: UUID="959da3d8-9a3a-4fae-bb76-42174b417d4c" TYPE="swap"
/dev/sda9: UUID="d62e77bd-acac-4297-a3fe-1812822c37e1" TYPE="ext4"
/dev/sda10: UUID="14106ef3-dd4b-455e-b393-899c31e7c62e" TYPE="swap"



A bit surprising. Try running the commands again as root. And if "fdisk -l -u=cylinders" still doesn't give you any output, try plain "fdisk -l".
Feed the trolls!
They need it!

AMD Athlon 7450 Dual-Core Processor, 7.80 GiB RAM, Nvidia GeForce GT 120/PCIe/SSE2, OpenGL/ES-version: 3.3 0 NVIDIA 295.40, SBx00 Azalia (Intel HDA) soundcard, ‎Logitech B500 webcam, SAA7146 DVB card, HDDs: Seagate 250824AS, Western Digital WD10EAVS-00D

Offline ubi

  • Jr. Member
  • **
  • Posts: 19
Re: libre office
« Reply #27 on: July 13, 2011, 03:17:50 PM »


A bit surprising. Try running the commands again as root. And if "fdisk -l -u=cylinders" still doesn't give you any output, try plain "fdisk -l".
[/quote]

i'm sorry bald brick but i don't understand running the commands as root. what do you mean with plain "fdisk -l", you mean without "-u=cylinders"?
i'm just a qute baby in linux :-[ :'(

Offline ubi

  • Jr. Member
  • **
  • Posts: 19
Re: libre office
« Reply #28 on: July 13, 2011, 03:43:51 PM »


A bit surprising. Try running the commands again as root. And if "fdisk -l -u=cylinders" still doesn't give you any output, try plain "fdisk -l".
[/quote]

you mean like this?


Offline djohnston

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6227
  • I don't do Windows
Re: libre office
« Reply #29 on: July 13, 2011, 03:58:41 PM »
Yes. From that listing, sda1 & 2 are primary NTFS-formatted partitions. sda5 through 8 are extended NTFS-formatted partitions. Which ones are you wanting to mount?

Bare metal                           VBox
AMD Athlon 7750 Dual-Core    Single core
4GiB RAM                              1GiB RAM
nVidia GeForce FX 5200          64MB video
LXDE 32bit                            KDE 64bit

Registered Linux User #416378