LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1362|回复: 5

canon ip1980 驱动求教?

[复制链接]
发表于 2009-3-12 12:40:37 | 显示全部楼层 |阅读模式
我在canon下载了这个包ip1900_RPM_printer.tar  不知如何装请大家教一下。我是新手讲得越详细越好。
发表于 2009-3-12 13:20:53 | 显示全部楼层
The Spring Festival is the most important festival for the Chinese people and is when all family members get together, just like Christmas in the West. All people living away from home go back, becoming the busiest time for transportation systems of about half a month from the Spring Festival. Airports, railway stations and long-distance bus stations are crowded with home returnees.
,wow gold,
The Spring Festival falls on the 1st day of the 1st lunar month, often one month later than the Gregorian calendar. It originated in the Shang Dynasty (c. 1600 BC-c. 1100 BC) from the people's sacrifice to gods and ancestors at the end of an old year and the beginning of a new one.

Strictly speaking, the Spring Festival starts every year in the early days of the 12th lunar month and will last till the mid 1st lunar month of the next year. Of them, the most important days are Spring Festival Eve and the first three days. The Chinese ********** now stipulates people have seven days off for the Chinese Lunar New Year.
wow power leveling,
Many customs accompany the Spring Festival. Some are still followed today, but others have weakened.
On the 8th day of the 12th lunar month, many families make laba porridge, a delicious kind of porridge made with glutinous rice, millet, seeds of Job's tears, jujube berries, lotus seeds, beans, longan and gingko.
The 23rd day of the 12th lunar month is called Preliminary Eve. At this time, people offer sacrifice to the kitchen god. Now however, most families make delicious food to enjoy themselves.
wow gold,
After the Preliminary Eve, people begin preparing for the coming New Year. This is called "Seeing the New Year in".

Store owners are busy then as everybody goes out to purchase necessities for the New Year. Materials not only include edible oil, rice, flour, chicken, duck, fish and meat, but also fruit, candies and kinds of nuts. What's more, various decorations, new clothes and shoes for the children as well as gifts for the elderly, friends and relatives, are all on the list of purchasing.
wow gold,
Before the New Year comes, the people completely clean the indoors and outdoors of their homes as well as their clothes, bedclothes and all their utensils.
archlord gold,
Then people begin decorating their clean rooms featuring an atmosphere of rejoicing and festivity. All the door panels will be pasted with Spring Festival couplets, highlighting Chinese calligraphy with black characters on red paper. The content varies from house owners' wishes for a bright future to good luck for the New Year. Also, pictures of the god of doors and wealth will be posted on front doors to ward off evil spirits and welcome peace and abundance.
wotlk gold,
The Chinese character "fu" (meaning blessing or happiness) is a must. The character put on paper can be pasted normally or upside down, for in Chinese the "reversed fu" is homophonic with "fu comes", both being pronounced as "fudaole." What's more, two big red lanterns can be raised on both sides of the front door. Red paper-cuttings can be seen on window glass and brightly colored New Year paintings with auspicious meanings may be put on the wall.
wow gold,

Spring Festival
回复 支持 反对

使用道具 举报

发表于 2009-9-30 20:27:18 | 显示全部楼层
用的是 fc7 (fedora ) , ubuntu,  sorry, not sure of  SuSe but, u can find
1 三、软件的安装和设置 @  " 标题: SuSE Linux 10.0全程教学(有图像链接,从零开始,常见问题解决"
会员 : Thruth   
也即是 url:  " http://www.linuxsir.cn/bbs/showthread.php?t=231489   "
回复 支持 反对

使用道具 举报

发表于 2009-9-30 20:30:24 | 显示全部楼层
2
3月22日
Canon Pixma IP1980 Opensuse 11.0 x64 Installation
1. goto http://software.canon-europe.com/software/0031333.asp?model=
    download iP1900_RPM_printer.tar

2. install the package
   - rpm -i cnijfilter-common-3.00-1.i386.rpm
   - rpm -i cnijfilter-ip1900series-3.00-1.i386.rpm

3. copy pstocanonij from folder /usr/lib to /usr/lib64
   - cp /usr/lib/cups/filter/pstocanonij /usr/lib64/cups/filter

4. restart cups
    /etc/init.d/cups restart

5. goto cups web interface http://localhost:631
    print test page
下午 10:06
回复 支持 反对

使用道具 举报

发表于 2009-9-30 20:36:29 | 显示全部楼层
請問您 閣下 在 09-03-12, 12:40 的時候 用的是
1 rpm  ?      fedora core
2 tar      OpenSuse??
3 other ?  其他的 ???
              ip1900_RPM_printer.tar  
however, today / now you might  use other system,  or 已經解決問題 ??
回复 支持 反对

使用道具 举报

发表于 2009-9-30 21:17:43 | 显示全部楼层
這個 :  
http://linux-vbird.bluedata.org/linux_base/0240tarcompress.htm
  tar     tar.gz
extract 您应该也会知道,这些被压缩过的档案,通常其附档名都是『 *.tar, *.tar.gz, *.tgz

    * 里还有一个值得注意的参数呦!那就是在备份的情况中很常使用的 -N 的这个参数!你可以参考一下上面的例子就可以知道啦!在这个例子当中,相当重要的就是那个日期啦!在备份的情况当中,我们都希望只要备份较新的档案就好了,为什么呢?因为旧的档案我们已经有备份啰!干嘛还要再备份一次,浪费时间也浪费系统资源!这个时候此一参数就显的相当的重要了啊!

 

    * 在上面的例子中,最后一个例子很有趣『tar cvf - /home | tar -xvf - 』!他是直接以管线命令『 pipe 』来进行压缩、解压缩的过程!在上面的例子中,我们想要『将 /home 底下的数据直接 copy 到目前所在的路径,也就是 /root 底下来』,但是又觉得使用 cp -r 有点麻烦,那么就直接以这个打包的方式来打包,其中,指令里面的 - 就是表示那个被打包的档案啦!由于我们不想要让中间档案存在,所以就以这一个方式来进行复制的行为啦!

 

    * tar 的功能相当的多,而由于他是经由『打包』之后再处理的一个过程,所以常常我们会听到 tarball 的档案,那就是经由 tar 打包再压缩的档案啦!此外, tar 也可以用在备份的储存媒体上面,最常见的就是磁带机了!假设我的磁带机代号为 /dev/st0 ,那么我要将我的 /home 底下的数据都给他备份上去时,就是使用 tar /dev/st0 /home 就可以啦!很不错吧!

 

      在 Linux 当中, gzip 已经被整合在 tar 里面了!但是 Sun 或者其它较旧的 Unix 版本中, 当中的 tar 并没有整合 gzip ,所以如果你需要解压缩的话,就需要这么做:
             
            gzip -d testing.tar.gz
            tar -xvf testing.tar
              第一个步骤会将档案解压缩,第二个步骤才是将数据解出来!与其它压缩程序不太一样的是, bzip2, gzip 与 compress 在没有加 ....
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表