Hardware :: Ink Printed CD Labels - Bad For The Computer?
Jun 24, 2010
I recently ordered some custom CDs from a local shop. I sent them the ISOs for Debian and a large colorful PNG graphic for the label. They used an inkjet printer to print the label onto some special CDs. A few hours later, I noticed that the red ink transfered to my fingers when I picked up the CD. Previously, I printed some disks with blue, purple, and yellow, but found no such problem.
I wonder if could be damaging to the computer, ie. lots of little paint flakes coming off inside the computer while the CD drive is spinning and heating up?
View 2 Replies
ADVERTISEMENT
Sep 24, 2009
I was able to set up my printer using a guide i found on this site. However when i print a page from my e-mail account, for example. It will either print the whole page with advertisements and all when i select print from the file menu up top or it will only print what is showing on the screen and cut off the rest of the words in the e-mail that are not showing on the screen, when i select print icon within the e-mail.
View 3 Replies
View Related
Jan 4, 2010
I have a pre-printed form that I need to fill in. Is it possible to scan it, fill it in on screen, and then put the original form in the printer and get things to print out on that original form? I know that I can scan the form and fill it in on screen and print out on a blank piece of paper, but I need to use the original form
View 9 Replies
View Related
Oct 26, 2010
I'd like to know how to see which files have been printed on the printer. I can see which print jobs have run and who submitted them using the following command:
Code:
$ lpstat -W completed -o
but it doesn't show me the names of the files that printed.
Is there a way to set a retention policy to have it hold the job in the queue even after it's finished printing? Or a command to view the details of jobs that have already run? I'm looking for something similar to the output of the lpq command.
View 1 Replies
View Related
May 6, 2011
Now we are implementing our own shell using C++. What upseting us is the history command function, we use an array to store the history commands, and print the when receiving the up and down arrow buttons. The problem is we cannot modify the history command already printed on the terminal, we even cannot move the cursur, let alone modifying the command.
View 1 Replies
View Related
Jul 12, 2010
I want to generate a grub.conf that will search for my /dev/sda1 based on the filesystem label, not the UUID.
I did change /etc/default/grub to so that GRUB_DISABLE_LINUX_UUID="true" and I regenerated grub.cfg.
But I want to go one step further and change the search statements. I notice they still reference the old UUID. I also know grub2 can search by label.
I could use understanding this page: [url]
Quote:
I'd like my grub.cfg to contain statements similar to this:
Code:
Assuming that's the right syntax, how do I make grub2 generate label-based menu entries like that?
View 2 Replies
View Related
Jul 18, 2010
When I get a new USB flash drive, I change the labels with the format command:
mkdosfs -v -c -n MyCDs /dev/sdc1
v = verbose
c = check for bad spots
[code]....
View 2 Replies
View Related
Oct 12, 2010
I need to review what people are using the printers for at work.I was wondering how I can do this under fedora. I basically need to store a copy of the printed jobs and view them afterwards..
View 5 Replies
View Related
Aug 30, 2010
I am having trouble converting a latex file to pdf with the precision I am looking for. I want strict control of the margins for both the outputted pdf and the printed page but currently it looks like there is a discrepancy between the two. I set the margins with the geometry package, i.e.
Code:
usepackage[left=.5in,right=.5in,top=.5in,bottom=.5in]{geometry} and then have tried converting to pdf by both the dvipdf route and the dvips --> ps2pdf route. All of these output files look identical through evince, however when I physically print the pdf the margins are roughly double the size I want. When I print the ps version the margins are exactly what I want. Therefore I expect the problem is obviously in ps2pdf.
I am printing on letter paper (8.5 x 11), which I have tried to explicitly set using
Code:
ps2pdf -sPAPERSIZE=letter foo.ps
with no luck.
My goal is to have a pdf for the sake of compatibility. I also do not want to use pdflatex for various reasons. Does anyone have any idea why this would be happening? What options have to be set that I don't know about. I tried searching around for a while but mostly found solutions involving a mistake papersize (a4 vs letter) changes, so sorry if this is RTFM.
View 1 Replies
View Related
Oct 20, 2010
I installed my epson stylus tx420w through cups web interface. I used the PPD file provided by the driver recommended in linuxprinting.org.But when I try to print the test page (or anything else), nothing is printed. According to the diagnostics, the printer status is "Processing page 1...", but it won't go beyond that.I've already tested it, it's fine. But won't work in ubuntu. Don't know what's going on.
View 5 Replies
View Related
Jul 21, 2010
The code below prints garbage if I use puts() but it is fine if I use printf() instead (see sample of output at the bottom of this post). The odd thing is that the mess always starts after exactly eight properly printed characters. That sort of regularity can't be a coincidence, can it? It almost looks like an encoding issue (I'm using UTF-8) but if it really is, then I don't understand why the printf() is unaffected.
Code:
#include <stdio.h>
#include <string.h>
const char *nChars (const char *, int);
int main (int argc, char * argv[]){
char * name ="Count Dracula++";
int len = strlen(name);
if (argv[1] == 0) argv[1]="printf";
printf("--->%d characters", len); .....
View 9 Replies
View Related
Nov 19, 2010
I have sometimes wished to place a reminder, to be displayed after I login. And what I did was to write it in /etc/motd or in /etc/issue. But something in the system erases or writes a new motd/issue.What would be the easiest way to have a reminder printed on the console just after login?
View 10 Replies
View Related
Sep 11, 2010
I used to be able to see the labels above the icons in the dock when I hover over them. For some reason I can't see them now. I think I may have turned something off in the Cairo Dock settings and can't remember where to implement this functionality again.
View 2 Replies
View Related
May 5, 2011
I just upgraded to Ubutntu 11.04 64 bit, using the default Unity setup. Everything seems to work fine apart from labels on the dashboard, about half of them appear scrambled. When I press the Ubutnu icon on the top left some of the text is also scrambled. I have an integrated Intel graphics card.
View 2 Replies
View Related
May 17, 2011
Is it possible to change the label name /sdb/usr to /sdb/test?
which means..need to change the partition name /usr to /test?
View 2 Replies
View Related
Jan 28, 2011
I'm having trouble getting a sed command to work. I need to filter a printed line to get characters between 2 expressions. "<job>" and "<url>".
Code:
echo "<job>TEST<url>http://www.project.com/?code=001" | sed 's/^[<job>]*//' | sed 's/[<url>]*$//'
Produces:
Code:
TEST<url>http://www.project.com/?code=001
It takes off the first part but why is that not deleting the "<url>" and all the parts after that?
View 9 Replies
View Related
Jun 30, 2011
I have a debian 6 system in my basement acting as a media server. Debian is on a separate HDD from the raid drives and there is one external drive. Under normal conditions the Debian HDD shows up as /dev/sdk and the external shows up as /dev/sdl, no problems here because I use UUID for mounting. The problem is sometimes this drive isn't picked up on restarts (its old and I think the issue is the power supply in the base of it, to be solved later) . This wouldn't be a problem but it some how shuffles the drive addresses and the Debian HDD becomes /dev/sde, this in turn messes up a script that does a weekly dd of that hard drive. I am only really worried about this for when I go on vacation and I wont be at home if the power goes out.
So, is there a way to address the entire hard drive (not just a partition) other than the dev file? Why did this change from Debian 5 to 6? I never had this problem before with 5.
In case you are wondering, I find it easier recover from an image rather than do a reinstall, then get all the updates and software, then put in all the backed up files.
View 3 Replies
View Related
Aug 28, 2010
I like having a very minimal, simple desktop. As odd as it sounds, I would love to change "Applications" to "Apps" on the Main Menu. How would I go about doing that?
View 2 Replies
View Related
Oct 19, 2010
I am trying to manually set up a number of static IPv6 addresses to one of the physical network interfaces on my 8.04server box.
I tried to use the "ip" utility like that:/ip addr add [myIPv6addr] dev eth0 label eth0:0
which was accepted by ip (no errors) and the IP address was correctly assigned to eth0. But using "ip addr show" I do not see any reference to the label I defined and "ip addr show dev eth0 label eth0:0" does not come back with anything (empty output).
This seems to contradict the information I found on the ip manpage and I wonder if this is a bug or a misconfiguration on my side. Did anyone successfully used the label functionality with ip?
View 1 Replies
View Related
Nov 7, 2010
I'm using Gnome on Fedora 14 and I'm getting picky on how things gets displayed.
I have a couple of drives and the following entry on my fstab:
they mount to the correct directory but in my desktop. I see 2 icons with the volume labels same with the "places" menu up top. Is there a way to replace the volume lables with the mount points?
View 1 Replies
View Related
Aug 19, 2010
I have two HDs (let's say sda and sdb). Both are the same size and have the same partitions already (sda1/sda2/sda3 and sdb1/sdb2/sdb3). Basically they are ready to make a RAID1 array.
Writing with new udev rules, I could create and give fix HD labels with /sbin/scsi_id.
Example: For sdb1 I have a fix device name created under /dev as hd2_boot1, for sdb2 I have /dev/hd2_boot2 and finally for sdb3 I have created the device /dev/hd2_boot3.
With using the command "mdadm --create /dev/md0 --level=1 ....", I could create a RAID array.
But, when I check the status one of the RAID devices, like with the command "mdadm --detail /dev/md2", it still shows me as part of the RAID array the sdb* devices, not the hd2_boot* devices. Something like this:
I would like to see basically as member or the RAID array always the /dev/hd2_boot3 not the /dev/sdb3 (like above), is this possible?
Bottom line, I would like to keep the order of the RAID arrays depending their scsi ids, not depending their scsi numberings which is given by the kernel, since the scsi numberings (sda, sdb, sdc and etc.) can change depending the physical connection.
View 2 Replies
View Related
Feb 14, 2011
Here's the idea -- be able to boot slackware 13.1 DVD from a USB stick, but without using anything like an initrd or loading the contents of the slackware install all into memory first. So the USB stick is behaving like a hard drive (but with one disadvantage, just don't take the usb stick out while you're using it!). It has the advantage of saving on memory though .
In the above thread I had this idea working ok but only with slackware 13 and earlier. In fact I still have the CF card with it on, and it works fine. Only snag is it won't work with the newer 13.1.
Right now, I'm trying to use qemu for the following (not what I wrote above!). The idea is to use qemu to install a minimum slackware 13.1 to the USB stick, set it up and then boot from the USB stick itself (so I'm using the USB stick as the storage medium as opposed to say a hard drive image file).
So let's say (this is what I'm doing) I boot slackware 13.1 (32 bit) and make two partitions;
Code:
I then do a minimal installation of slackware (just "A" and jed from "AP"). Lilo is not installed as later I'll be using GRUB2 to try to boot.
I'm using a slackware package, grub-1.97-beta4-i486-1.tgz for slackware 13.1/GRUB2.
I then boot off the slackware 13.1 DVD but at the boot screen I choose to boot from /dev/sda2 which is the linux install I created earlier. Success, it boots ok and I can get into the slackware 13.1 install on the USB disk (which is /dev/sda2).
I then label the ext3 partition by using e2label;
Code:
And also change /etc/fstab;
Code:
Now I need some sort of bootloader to put onto the USB stick so I don't need the DVD any more. To do this, I'm trying to use GRUB2.
But here's the problem!
When I install slackware onto the USB stick using qemu, that partition is /dev/sda2. It's the first usb/storage medium that slackware detects so it gets the name sdaX. (X=1, fat partition, X=2 EXT3 linux).
But here's the problem. Suppose I take the USB stick over to another PC with a hard drive already inside it. Slackware would see the hard drive installed in that PC as (say) /dev/sda1 and the USB stick would then become the second drive, so /dev/sdbX (X=1, fat partition, X=2 EXT3 linux).
If I specify a specific device (lets say /dev/sda2) then it won't work in another system because if I take the example above, another PC with a hard drive installed in it the USB stick becomes /dev/sdb2 and the GRUB2 boot program would be expecting /dev/sda2 which won't work. What I need to do is to somehow find the install, the root on the USB stick automatically without having to specify it manually.
So here's what I've tried with grub (First thing I did was to install grub with grub-install /dev/sda).
Code:
Snag is it dosen't work :-( I get this booting from the USB stick:
Code:
If I try this:
Code:
I get a very similar result ....
Code:
So what I'm wondering is .... if the "search" line in grub is doing the searching for the root GRUB2 needs to use to boot from - how can I tell the next line, "linux /boot/vmlinuz-huge-smp-2.6.33.4-smp root=...." where to boot from? I can't use /dev/sda2 or /dev/sdb2 because if I try the usb stick in a different PC the stick will be a different device name. Trying to use LABEL= or /dev/disk/by-label/USB/ also dosen't work .
View 1 Replies
View Related
Oct 26, 2010
I want to search for all files on my server that end in a couple of differnet filenames, and then have the location of them sent to a file.
What is the best way to achieve this.
View 1 Replies
View Related
Jan 25, 2009
I tried upgrading from Fedora 8 to Fedora 10 using the DVD, but I ran into a few problems.After verifying the install media, it was no longer able to detect the DVD. Annoying, but I got around this by simply rebooting and then skipping the media check.The second problem happened after I tried to "upgrade an existing installation". It gives me the error "Multiple devices with label /boot detected. Devices must have unique labels in order for you system to work. Please correct this problem before upgrading".My system's working just fine, so I'm not sure why I'm getting this error. I have a RAID-1 setup, so would that be causing the error? How do I correct this problem without wiping out my system?
View 1 Replies
View Related
May 30, 2010
Prerequisites :
The GIMP.
Make sure you have the "Gutenprint Printer Drivers Package" and "GIMP plugin for gutenprint" installed (add/remove software, search for gutenprint). A printer that uses a tray loading mechanism for printing disc media.
Procedure :
Open/create the image with the GIMP. I find that an image size of 1394 x 1394 is ideal for normal size discs. To create a working area in the image, first create a white circle. To do this, use the circle selection tool and position the cursor at position 0,0 (top left). Then, while holding the shift key down, hold left click and drag the cursor to the bottom right position, which should be 1394,1394. Fill the selection with white colour. Depending on the hub size of your disc you need to also cut out an area in the centre of the white circle approximately 22 mm in diameter. Position the circle selection cursor 11mm above the centre of the image, and 11mm to the left of the centre of the image. Then hold Shift down, hold left click and drag the cursor until the selected area is 22mm x 22mm. Then cut the selection. Now create a new layer above the white circle and create your image, keeping inside the white circle and outside the centre "hole".
If you are using non full face discs, make the centre "hole" bigger accordingly. Create 2 new background layers, one black and one white. The black is so you can preview the image with the correct shape, and the white one is for use when exporting the final finished image for printing. Remember to make the white layer above the black layer, or make the black layer invisible when exporting the image. I have attached a template for your immediate use. Once your image is finished, you should have a white square image, with your graphics arranged within a circle. White is not printed, so you don't need transparency around the edges. Don't put graphics too close to the edges of the circle or you will get ink on the plastic which never dries. (at least not until you have smeared it on your fabulous artwork ! ) Save the file as the default GIMP xcf format to preserve the layers then export it to png.
To print the image onto the disc. With the image open in the GIMP, In File > Page Setup set the paper size to CD - 5 inch and apply. Then go to File > Print with Gutenprint. Use the option to set up printer and find your make and model. Once you have the correct printer selected, lots of extra options become available.
My Printer settings are:
Print Quality - Best
Media Type - Photo paper
Media Source - Print to CD
CD hub size - Normal
Ink Set - Epson Standard inks
Resolution - 720 dpi
Ink Type - 6 color photo
Page Size - CD - 5 inch
(All the other settings are left as default)
On the Output tab there are more options for adjusting the print quality. Just click "Adjust Output". If you have adjusted the output, close that window then click "Print and Save Settings", otherwise just click "Print and Save Settings". It should fire up straight away. These settings are based on my Epson R200, so you may have to tweak them for your printer model.
View 3 Replies
View Related
Apr 30, 2010
Is there a command that tells you what the partitions are fdisk -l shows partitions I want to know which is root swap home etc, Labels the partitions?
View 6 Replies
View Related
Jun 4, 2010
This problem has been bothering me for quite a while. Here is how my nautilus toolbar looks like:As you can see, only Back and Forward buttons are labeled. I hope I can remove these labels to save my screen estate, but I can't find any possible option in Edit -> Preferences after careful review.
View 3 Replies
View Related
Nov 22, 2010
I want to write a driver in c so that when i released the key some message will printed in output screen. The driver should be for arm.I have a driver which read the key when it is pressed.But i want the both (means key press and release).
View 3 Replies
View Related
Apr 1, 2009
My setup is like this: i have a small office network and i bought yesterday a new multifunctional printer Samsung SCX-4521F. It is shared with samba and connected to the server with USB. In the network everyhing works well, users can log on to the domain, print from windows to the new shared Samsung printer and i even managed to enable network scannin. But when i try to print from MS DOS i wont get a single page. We have an accounting program in dos. All the other computers are XP Pro SP3. My server is running for 2 weeks the newest CentOS with all updates. I'v maped the network printer in windows witht the command "net use LPT1 \ServerSCX-4521F. I get a message that maping was completed succesfully. If i start a print job nothing happens. "Printing" or "warming up" flashes several times on the printer and thats it.
CUPS error log:
I [02/Apr/2009:00:03:45 +0300] Adding start banner page "none" to job 125.
I [02/Apr/2009:00:03:45 +0300] Adding end banner page "none" to job 125.
[code]....
View 3 Replies
View Related
Jun 25, 2011
My original config:
**Partition/Drive info**
/dev/sda Boot----------> 298.09 GB Hitachi HDT72503
20GB /
16GB /swap
50GB /var
[code]....
1. For some odd reason I tried connecting to a samba share as I had it setup and I could not.
2. Looked at webmin and it said my whole /dev/md0 RAID5 was being used..about 7.8TBs. decided to check my RAID5 setup and drives and noticed
**NEW Partition/Drive info**
/dev/sda Raid Array 1 1.82 TB SAMSUNG HD204UI
/dev/sdb Raid Array 1 1.82 TB SAMSUNG HD204UI
/dev/sdc1 /
[code]....
I didn't connect any new drives or anything. I had checked my "mdadm.conf" and "fstab" and everything looked the same?
View 3 Replies
View Related