Raspberry-Pi

為什麼 /etc/cups 中有 .O 文件?

  • September 24, 2018

我一直在 Raspberry Pi 上開展一個項目,該項目需要非常頻繁地添加/刪除列印機(主要是因為所有驅動程序都有問題,但這是另一回事)。

我注意到,在/etc/cups我有很多.O文件複製了其他一些配置,並且似乎有來自以前刪除的列印機的數據,這些數據仍然不存在於 cups Web 界面中。

這些 *.o 文件是什麼 可以安全刪除嗎?

total 92
drwxr-xr-x   5 root lp    4096 Sep 24 10:01 .
drwxr-xr-x 114 root root  4096 Sep 21 20:02 ..
-rw-------   1 root lp     108 Sep 21 16:42 classes.conf
-rw-------   1 root lp     108 Sep 21 16:25 classes.conf.O
-rw-r--r--   1 root root 16433 Jun 12  2017 cups-browsed.conf
-rw-r-----   1 root lp    3233 Sep 21 16:55 cupsd.conf
-rw-r--r--   1 root root  4629 Sep 17 15:01 cupsd.conf.O
-rw-r--r--   1 root root  2931 Jul 11 04:29 cups-files.conf
drwxr-xr-x   2 root root  4096 Jul 11 04:29 interfaces
drwxr-xr-x   2 root lp    4096 Sep 24 09:26 ppd
-rw-------   1 root lp     110 Sep 24 09:27 printers.conf
-rw-------   1 root lp     483 Sep 24 06:25 printers.conf.O
-rw-r--r--   1 root root   240 Sep 17 15:01 raw.convs
-rw-r--r--   1 root root   211 Sep 17 15:01 raw.types
-rw-r--r--   1 root root   142 Jul 11 04:29 snmp.conf
drwx------   2 root lp    4096 Sep 17 15:01 ssl
-rw-r-----   1 root lp     381 Sep 24 10:01 subscriptions.conf
-rw-r-----   1 root lp      91 Sep 24 10:00 subscriptions.conf.O

我認為.O代表oldfile如下所示cups/scheduler/file.c

oldfile[1024];          /* filename.O */

IIUC,這些文件只是舊設置的備份。因此,它們應該可以安全移除。

引用自:https://unix.stackexchange.com/questions/471104