linux tag

403 questions


1 answers
133 views
0
Can I know the IP or domain that is trying to access my server now?

Like you said, you can use Windows CMD or other toolsCan I check the IP information that I am trying to access with my server IP?Orcurl [My address]Is there a command for me to know where the signal i...

2 years ago

1 answers
30 views
0
Save files and save file hash values using Linux curl

After automatically downloading a file in the format img_%03d.jpg from a web server called http://www.test.org/download/, use md5 to obtain a hashimg_001.jpg: hash valueimg_002.jpg : hash value...I'm ...

2 years ago

1 answers
31 views
0
Find Linux specific capacity files

When the file capacity is percent_val and a specific capacity criterion is limit, the command to find and output all files whose percent_val is limit or higher is find ./* -size $percent_val >= $li...

2 years ago

1 answers
61 views
0
When crontab execution is not normal on Ubuntu

$ sudo crontab -l37 * * * * source /home/jmkim/dms-bi/bi_venv/bin/activate && python /home/jmkim/dms-bi/run.py >> /home/jmkim/test.log 2>&1I registered it on crontab.However, the ...

2 years ago

1 answers
34 views
0
Extract specific parts of Linux reverse references

Oct 8 21:40:19 cent sshd[1478]: Failed password for user1 from 10.211.55.21 port 53655 ssh2Extract only IP from there and the result is 3 10.211.55.18I want the numbers to come out in the front and th...

2 years ago

1 answers
113 views
0
Shell Script if Statement Conditions

It is the condition of the if statement to check leap year.if[ ((${year}%4 -eq 0 ) && (${year}%100 -ne 0 )) || (${year}%400 -eq 0) ]then ... fiThe conditions I put in are, Once every four year...

2 years ago

1 answers
47 views
0
How to install rpm package on closed network Centos 7?

I installed Python3 on CentOS 7 installed on a closed network server and imported it to use Pandas. ModuleNotFoundError: No module named '_bz2'I'm getting this error...I heard that you can download th...

2 years ago

1 answers
32 views
0
How Linux File Links Work?

CentOS 8, running on VM Virtual Box.First, we created data1, and then we created a symbolic link to it, data1.sl.After deleting data1, I ran cat data1.sl and it said, There are no such files or direct...

2 years ago

1 answers
95 views
0
I have a question regarding the linux assembly code.

Hello, I'm studying about system callfork(){ movl 57, %eax int $0x80}How can I find the assembly language code for the function in this way?The information I received said that the Glibc code is on t...


1 answers
43 views
0
What is the -y option in Ubuntu apt-get install-ywget?

Even if I google it, I can't find -yI was studying with a bookapt-get install -y wget I'm curious about the option that medium-y means

2 years ago
« - 40 - »

© 2024 OneMinuteCode. All rights reserved.