General :: Writing Or Sending Files To CD Accomplished In Mandriva?

Jan 1, 2010

How do you send files, save or other wise write to CD using Mandriva Linux? On windows you get a helper menu. Linux does not offer this option in it's helper file and you can't click and drag a file in the CD folder. The dialog box reads "you do not have permission to write to this folder" when I try to drag it in and I can't change the permission signed in as Root.I don't have a clue. I wish Linux Questions would add a emotioncon that has the expression " what the hell buddy? are you on ten hits of acid?

View 8 Replies


ADVERTISEMENT

General :: How To Locate Files Under Mandriva?

May 2, 2011

I am running Mandriva x64 and the nepoumuk file indexing was causing system hangups (in addition to not returning any results) so i disabled it. However kfind is not returning any results either - i feel a bit stupid and I'm sure there's a simple answer to this but How do i locate files under Mandriva linux? Is there a simple KDE application for that or do i need to look at kfind settings? Does file search only work with indexed database?

View 3 Replies View Related

General :: Cant Print Html Files Using Mandriva (Foomatic)?

Dec 3, 2010

I cant print html files using linux mandriva (Foomatic)

View 5 Replies View Related

General :: Writing A Script That Compares Two Different Files?

Jul 26, 2011

how to match to find matches in two different files when comparing timestamps. The fields I'm wanting to match up are in the format:

Jul 26 09:33:02

I have tried reading the file line by line and using awk '{print $1,$2,$3}' which only gets and stores the timestamp in one of the files. I've been looking around and saw this example:

awk 'FNR==NR{!a[$3]++;next }{ b[$3]++ }
END{
for(i in a){
for(k in b){
if (a[i]==1 && i ~ k ) { print i }
}
}
}' $FILE $FILE2

Which sorta works but its way over my head at the moment. The two files can be found in your /var/log/syslog and /var/log/auth.log (using Ubuntu 11.04)

View 9 Replies View Related

General :: Rsync Would Keep Sending The Files Over And Over Again?

Mar 2, 2010

I'm trying to using rsync to backup some files, about half a TB. It's now it a state where it keeps sending the same files everytime it runs. for example:

rsync -av /data/source/* user@host:/data/dest
sending incremental file list
source/file1.txt
source/file2.txt

I then verify those files are copied over. then the next time it runs it does the same thing

rsync -av /data/source/* user@host:/data/dest
sending incremental file list
source/file1.txt
source/file2.txt

any idea why it's getting stuck on these files? I've tried to wipe the whole dest directory out and start over but no luck.

View 2 Replies View Related

General :: Writing Files From NFS Client To Server Behind Firewall ?

Jan 25, 2010

For some time now, I'm having some problems with configuring an NFSv4 server to let it work with a firewall. I've already searched to web, but I was unable to find a solution that works for me.

The situation is as follows:
I'm trying to connect an NFS client to an NFS server that is behind a firewall. I don't have access to this firewall, but I can contact the administrator to open some ports for me. I already did this for opening port 2049.

The result is that the client can read files from the server, but is unable to write files to the server. I believe that for writing an extra RPC-connection needs to be set up. However, the ports on which the RPC-connection is set up, seem to be different for every connection (I verified this using 'netstat -tn').

Clearly, this is a problem since the server is protected by the firewall.

Thus, what I want to do is configure the server in such a way, that it always uses the same server-side port(s) to connect with the writing clients (just like 2049 for reading). I've already tried to configure the /etc/default/nfs-kernel-server and /etc/default/nfs-common files, but that hasn't really worked out yet.

Note: Because I don't like to contact the system admin every day, I hooked up 2 computers (client/server) on which I set up the same configuration (without the firewall). I'd like to see it working on those machines first (that is, 'netstat -tn' showing the correct port), before I contact the admin to open some extra ports.

View 2 Replies View Related

Programming :: Writing Files Using O_DIRECT In C?

Feb 28, 2010

I am trying to write .pgm images using the O_DIRECT flag in open().I have a char* buffer which has the image data. I know that I have to align the buffers and have done that using posix_memalign() yet only a part of the image gets written.Has someone used O_DIRECT for writing files successfully?

View 1 Replies View Related

Ubuntu :: Writing Log Files With A Shell Script?

Feb 6, 2011

I want to perform an action with a shell script and then log the event in a file in /var/log. However, I keep getting permission denied error messages.

View 5 Replies View Related

Programming :: Reading And Writing Text Files In C?

Jan 1, 2011

Reading and writing text files in C?

View 9 Replies View Related

Debian :: Sending Files Via Ftp From Console?

Jun 25, 2010

I have Debian 4.0. I have installed screen package, and one application has been run in screen. I want to know how make something like "screenshot" of this screen status and send it over ftp. Could someone write me script with I could add to cron?

View 4 Replies View Related

Debian :: Suid And Writing Files Permissions In The ET Server?

Feb 22, 2010

I have tried to configure an Enemy Territory Server in an way that a common user could run it just executing a command line. The first thing I did was writing a script like that

/usr/local/games/enemy-territory/etded +set dedicated 1 +set net_port 27960 +set fs_game etpub +set fs_homepath /usr/local/games/enemy-territory/27960 +set sv_punkbuster 1 +set +exec server.cfg +set +exec punkbuster.cfg  +set +exec bots.cfg

and then putting it in the /usr/local/bin directory. Ok, the things seem to be fine, but then I realized that the program tries to write some config and log files. I noticed that because some warnings appear in the command line, like that Couldn't write etconfig.cfg always that I run the command as a normal user. On the other hand, if I give writing permission to these files, all the warnings disapear.
But I don't think it is a good way, because someone could change these files by hand, what would not be good.

My last try was to set the suid of the script up, with the command chmod u+s /usr/local/bin/etded-server
But as I already knew that suid does not work well with shell script I wrote a C source like that:

[Code]...

View 4 Replies View Related

Ubuntu :: Permissions - Writing Files In Different Default Permission?

May 10, 2010

Currently when I create a folder, it comes down as 755 permissions.

I want it to come down as 775 permissions by default.

How can I change this?

View 2 Replies View Related

Ubuntu :: Sending Attached Files With Mailx?

Jan 5, 2010

Formerly it was possible to send attached files using the "-a" option eg. mailx -a /home/yan/textfile [URL]. (I think -a stood for "attached". At the time the "-a" option figured as an option for sending attached files.Now it is an option for sending headers. how one can now send attached files using mailx?

View 1 Replies View Related

Programming :: Writing Files With Python Produces Blank 0KB File?

Jun 22, 2010

I am working on a little project in python. i have produced this prototype

Code:
#!/usr/bin/python
# -*- coding: iso-8859-1 -*-
#DocC documentation prototype

[Code].....

View 2 Replies View Related

Ubuntu Networking :: Sending Files By Network Between Two Machines

Feb 13, 2011

My two machines are both running Ubuntu 10.10. I want to transfer program files between them using a local area network.

My Ubuntu machines can both see the Window machines on the network, and get files from them. But my Ubuntu machines do not detect each other as being on the network. Nor can my Windows machines detect my Ubuntu machines.

From what I can tell, that's normal, and I've become resigned to using a pendrive to transfer files between the two machines. Or even sending files as email attachments.

there is a clean and easy way to transfer files between two Ubuntu machines on the same local area network.

View 9 Replies View Related

Software :: Application For Sending Files Via Bluetooth To Some Receivers

Nov 6, 2010

I need an application for sending files via Bluetooth to some receivers.

View 1 Replies View Related

Ubuntu Networking :: Samba Crashing When Reading / Writing Many Small Files?

Mar 18, 2010

Samba seems to crash and come back after some seconds if I copy a lot of small files in a short period of time over the network. How do I fix it?

I have Ubuntu 9.10 Server 64bit running on a D945GCLF2 board sharing two 1TB ext4 formatted HDDs to my Windows PCs using samba. I've been having an issue with reading or writing files through samba. It happens during copying operations or checksumming, anything that reads or writes MANY small files in a small amount of time. I am pretty sure the problem has to do with my server because the server has run on two different LANs in different homes and will crash from activity with any of several other PCs. There is no crashing if I access the files through SSH, although when I do that the max transfer speed is less than 1MB/s.

When I induce the crashing, there is absolutely no output to the server terminal.

As an easy access example of something that will crash samba, extracting Cinebench R11.5 to the server will do the job. It always fails.

View 9 Replies View Related

Ubuntu :: Pc Acting Slow When Reading / Writing Files From _ Onto Disk - Is That Normal?

Sep 27, 2010

Whenever I am busy reading or writing large files, or large sum of files, my computer is unresponsive. Screens are getting greyed-out and I just can sit there and wait until the reading/writing is done.
This is not caused by the CPU which is overstressed because it is not. Look at the attachments and you will see the CPU is used for about 20%. When these pictures were captured the computer was using hellanzb to unrar a long list of rar-files.
When you look at my signature you see the computer is not bad at all, just disk-access is slow. I can transfer files with a maximum speed of 30MB/s. Is that normal or is it very slow? I don't know the numbers. I have 2 SATA disks.
O.S. is Mint 9-Isadora, based on Ubuntu 10.04 and I use the 64-bits version.

View 9 Replies View Related

Server :: Sendmail Block Sending Or Receiving .exe Files As Attachment

Jun 22, 2010

Please tell me how i can block sending or receiving .exe files as a attachment in sendmail server

View 1 Replies View Related

Software :: Reading And Writing SAC (Seismic Analysis Code) Data Files In Fortran Codes

Dec 2, 2008

I synthesized a seismogram by using Fortran codes, I need plot the synthesized seismogram and the data together, so I can verify the accuracy of code. Now I encounter a question: how to read the SAC data by Fortran code, I have searched some codes on Internet, the details as follow:the velr12a.sac is my data file.

Code:
c read sac file
PROGRAM RSAC
PARAMETER (MAX=1000)
DIMENSION YARRAY(MAX)
CHARACTER*10 KNAME

[Code]....

View 2 Replies View Related

General :: No Sound On Mandriva?

Nov 24, 2010

I have a (usb key) mandriva flash 2010, that i use on a Macbook pro 13". And i have no sound. I already check all the volume control and alsamixer.

View 1 Replies View Related

General :: Play MP3 In Mandriva ?

Feb 28, 2011

When I installed my Mandriva 2010 Spring, the Amarok player was installed together.

I can't play MP3. Then I downloaded and installed(at least, I think...) lame.

How do I make Amarok play MP3? E.g. how I associate lame and Amarok?

View 11 Replies View Related

General :: Moving From Mandriva To Suse?

Jun 25, 2010

I dual boot XP and Linux. Right now i've been running Mandriva but haven't been that satisfied with it as of late and am thinking of switching to the new Ubuntu. My question is, what would be the best way to go about this.. would i want to switch back to the windows bootloader, remove the linux partitions and then remake these partitions from free space during the Ubuntu install?

My main concern is wether it is necessary to switch back to the windows bootloader before proceeding (LILO currently) as i have no problem removing the old Mandriva partitions... I thought I'd reply to this thread rather than start a new one:

Doing almost the same thing with Mandriva, Vista & Grub going to Suse.

Am I to assume that I shouldn't have issues and that the Suse bootloader will overwrite Mandrivas? It is written in the MBR.

Now that I saw the poll of top distros for new users, I'm considering Ubuntu & Mint as well.

Will any distro's bootloader overwrite a prior version?

View 9 Replies View Related

General :: Installing Mandriva On Ubuntu?

Aug 28, 2010

I have a completely new desktop and I have installed Ubuntu on it. That happened yesterday, today morning there is no internet connection on my desktop. I don't know what happened.

Anyway after all I have decided to put Mandriva over Ubuntu - that was the original plan - but now I am facing problems with installing Mandriva.

1st. The oriiginal cd drive is not recognised by Ubuntu Therefore I am using an old drive which at least is working.

2nd I cannot run Mandriva dvd.

My questions:

How can I delete Ubuntu and replace it with Mandriva? If this is too difficult, I would switch back to Windows 7. At least in Windows I have a bit of experience. The windows 7 dvd it cannot be run also.

View 9 Replies View Related

General :: Mandriva On ASUS Eee PC 1000HE?

Oct 5, 2010

I am planning to buy ASUS Eee PC 1000HE Netbook in near future and want newest Mandriva on it with KDE 3.5. Just wondering how Mandriva performs on this netbook? Do all the features work or is there any tweaking I have to do to get the best results? Anyone using Mandriva on ASUS Eee PC 1000HE? Is so, then what's your experience so far?

View 1 Replies View Related

General :: VMware Installation On Mandriva ?

May 9, 2010

To install VMware Work Station for my Mandriva Linux.

The downloaded file is 'VMware 7.0.1 for Linux'.

'VMware-Workstation-Full-7.0.1-227600.x86_64.bundle'

It has the .bundle at the end.

What is .bundle?

How do I install it?

It may be the case my old processor won't support the product.

AMD Athlon 3500++ is my processor. I bought this computer almost 5 years ago.

View 3 Replies View Related

General :: Cannot Start Xserver-mandriva

Feb 18, 2011

i'm using mandriva spring powerpack on a samsung n210. after the installation the screen went fuzzy. i logged on as root, and did XFdrake selected xorg vesa and nv but i still get the same issue. the screen res is at 1024x600. can anyone recommend an alternative xserver. the free version worked fine, i just don't know what it uses

View 4 Replies View Related

General :: Install Ubuntu With Mandriva?

Jul 28, 2010

Ive downloaded the Ubuntu ISO (i386) in Mandriva and it gave me an error message...whats the fastest and easiest way to install Ubuntu in Mandriva...

View 1 Replies View Related

General :: Will Mandriva Run Inside Windows 7

Aug 26, 2010

Will Mandriva run inside Windows 7?

View 1 Replies View Related

General :: Best OS To Use Fedora 14 / Mandriva 2010.2?

Mar 1, 2011

I'm still new to this.
Which OS is better to use Fedora 14 or Mandriva 2010.2.
If not anyone of these any suggestions?

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved