Questions tagged «unix»

Unix是一种多任务,多用户计算机操作系统,最初由Bell Labs的一群AT&T员工于1969年开发。



1
Unix命令删除不同文件夹中的文件
Homebrew给了我一些警告,并告诉我从/ usr和/ Library文件夹中删除某些文件,这些文件妨碍了某些安装。有没有办法从根目录中删除这些文件,还是我必须手动 Warning: libiconv files detected at a system prefix other than /usr Homebrew doesn't provide a libiconv formula, and expects to link against the system version in /usr. libiconv in other prefixes can cause compile or link failure, especially if compiled with improper architectures. OS X itself never …
mac  unix 

1
DU在UNIX和Cygwin中报告不同的文件夹大小(Windows)
我正在将某些文件从Windows计算机复制到unix one(debian),并在检查了文件数量(两者都匹配)后使用来测试文件夹的大小,du结果却不同: 视窗: @/cygdrive/f/Cubie-Drive/download/files $ du -s . 487040665 . 和Unix: root@Cubian:/opt/ftp/ftpuser-home/upload# du -s . 487042376 . du版本,Windows: $ du --version du (GNU coreutils) 8.15 Packaged by Cygwin (8.15-1) Copyright (C) 2012 Free Software Foundation, Inc. 和Unix: du (GNU coreutils) 8.13 Copyright (C) 2011 Free Software Foundation, Inc. 知道为什么会有细微的差别吗?
unix  cygwin  du 


1
尾部和ls -l不一​​致
您好,我遇到的情况很少,不确定这是否真的失败。 我正在监视文件,我使用来获取大小ls -ald,然后运行tail -n命令,但是有时我看到大小增加了,tail -n但未返回任何内容。 为什么会发生这种情况的任何线索。
unix 

2
通过大小和MDF查找重复的文件
我正在编写脚本来搜索伪文件,并按大小然后按其MD5校验和对它们进行分组。 这是我的脚本: find . -type f -printf "%s\n" | sort -rn | uniq -d | xargs -I{} -n1 find -type f -size {}c -print0 | xargs -0 md5sum | sort | uniq -w32 > ./dups.txt 我想确保我的脚本按大小和MD5正确生成了我的dups文件。 无论如何,我可以确保我的结果是正确的,还是请您帮我检查一下我的脚本并让我知道?
linux  unix  md5sum 

2
是否可以安装Windows 8.1,Windows 7,Windows Server 2012,Oracle Linux,Oracle Solaris,Fedora Linux操作系统?
我计划在笔记本电脑中安装6个操作系统。并希望将来有更多。 我想在Windows(7和8.1)中安装2个版本的桌面操作系统,在Windows(Windows Server 2012)中安装服务器操作系统。 我也想安装2个Linux版本(Oracle和Fedora)。 我还想安装Unix(Oracle Solaris)的1个版本。 我想将这些OS用于学习目的。 我将使用Oracle Linux作为Java编程的主要操作系统。 如果可能的话,安装顺序是什么?

4
Unix find命令帮助
嗨,有人可以帮我做下一行吗? find . \( -type d ! -name . -prune \) -o -type f -name "*Log*" 基本上,它应该找到目录中存在名称中带有“ Log”的文件。 我有这样的结构: /logs | | ----folder1 | | | | | ---App1LogDate.txt | ----folder2 | | | | | ---App2LogDate.txt | | |--App3LogDate.txt | |--App4LogDate.txt 因此,鉴于我将在/ logs目录中运行此行,因此应获得以下结果: . ./folder1 ./folder2 总共3个目录。
unix  shell  ksh 


1
什么是.funcrc?
我没有找到有关此文件为何存在的信息,或应该通过常规调查渠道查找其中的内容的任何信息。 这就是为什么我在这里问这个问题,希望能从具有相关经验的人那里得到答案。 谢谢您的帮助。
unix  shell 

0
Linux-如何使用终端/热键切换草率的鼠标窗口
因此,我可以使用GUI更改窗口焦点模式,但我希望能够在草率之间切换并单击切换,并希望为此创建脚本,该脚本由键盘触发。 但是,找不到可行的解决方案。尝试过: gconftool-2 --type string --set /apps/metacity/general/focus_mode sloppy gsettings set org.gnome.desktop.wm.preferences focus-mode 'sloppy' 从终端运行时,单击时没有人会激活它。 无论GUI在做什么,我都应该能够做到。

1
如何通过ssh拖入远程服务器上的最后一个文件
背景 我总是尾部记录日志(错误和信息)..这需要以下手动步骤:1. SSH进入服务器2. cd进入日志目录3.识别最后一个错误或信息文件4.尾入 这是典型的日志目录: error-2017-12-11.log error-2017-12-30.log error-2018-01-05.log error-2018-01-11.log error-2018-01-17.log error-2018-01-23.log error-2018-01-29.log info-2017-12-26.log info-2018-01-01.log info-2018-01-07.log info-2018-01-13.log info-2018-01-19.log info-2018-01-25.log info-2018-01-31.log error-2017-12-13.log error-2017-12-31.log error-2018-01-06.log error-2018-01-12.log error-2018-01-18.log error-2018-01-24.log error-2018-01-30.log info-2017-12-27.log info-2018-01-02.log info-2018-01-08.log info-2018-01-14.log info-2018-01-20.log info-2018-01-26.log info-2018-02-01.log error-2017-12-26.log error-2018-01-01.log error-2018-01-07.log error-2018-01-13.log error-2018-01-19.log error-2018-01-25.log error-2018-01-31.log info-2017-12-28.log info-2018-01-03.log info-2018-01-09.log info-2018-01-15.log info-2018-01-21.log info-2018-01-27.log info-2018-02-02.log error-2017-12-27.log error-2018-01-02.log error-2018-01-08.log …
linux  bash  ssh  unix  tail 

1
我执行shell脚本时如何检索以下错误
我有一个脚本登录到远程服务器。但我试图执行脚本发生一些错误。 日志: 我的剧本: #!/bin/bash S1=$(ssh -t selvam-odc-shell1 "users | wc -w ") S2=$(ssh -t selvam-odc-shell2 "users | wc -w ") S3=$(ssh -t selvam-odc-shell3 "users | wc -w ") if [ "$S1" -le 100 ]; then ssh -t selvam-odc-shell1 " bash" if [ "$S2" -le 100 ]; then ssh -t selvam-odc-shell2 …

1
Linux用户权限
在简历中我想在Unix机器上假设一个id,但我想知道它是否可能限制只读取权限而不在系统上写入,但是如果你输入acc i sudo到正常而没有源是sudo命令那么如果你来自其他用户,你可以写你不能!
-1 linux  unix 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.