【开源项目】libfaketime安装、使用——小白教程

项目

Github:GitHub - wolfcw/libfaketime: libfaketime modifies the system time for a single application


libfaketime安装

01.切换路径,目标路径:/usr/local

(在/usr/local路径下git clone 开源项目)

切换路径指令:

复制代码
cd /usr/local

02.拉取

复制代码
git clone https://github.com/wolfcw/libfaketime.git

eg:

复制代码
root@DESKTOP-ER8E8NH:~# cd /usr/local
root@DESKTOP-ER8E8NH:/usr/local# ls -l
total 0
drwxr-xr-x 1 root root 4096 May 30  2023 bin
drwxr-xr-x 1 root root 4096 May 30  2023 etc
drwxr-xr-x 1 root root 4096 May 30  2023 games
drwxr-xr-x 1 root root 4096 May 30  2023 include
drwxr-xr-x 1 root root 4096 May 30  2023 lib
lrwxrwxrwx 1 root root    9 May 30  2023 man -> share/man
drwxr-xr-x 1 root root 4096 May 30  2023 sbin
drwxr-xr-x 1 root root 4096 May 31  2023 share
drwxr-xr-x 1 root root 4096 May 30  2023 src
root@DESKTOP-ER8E8NH:/usr/local# git clone https://github.com/wolfcw/libfaketime.git
Cloning into 'libfaketime'...
remote: Enumerating objects: 2536, done.
remote: Counting objects: 100% (660/660), done.
remote: Compressing objects: 100% (254/254), done.
remote: Total 2536 (delta 427), reused 555 (delta 399), pack-reused 1876 (from 1)
Receiving objects: 100% (2536/2536), 839.43 KiB | 55.00 KiB/s, done.
Resolving deltas: 100% (1596/1596), done.
root@DESKTOP-ER8E8NH:/usr/local# ls -l
total 0
drwxr-xr-x 1 root root 4096 May 30  2023 bin
drwxr-xr-x 1 root root 4096 May 30  2023 etc
drwxr-xr-x 1 root root 4096 May 30  2023 games
drwxr-xr-x 1 root root 4096 May 30  2023 include
drwxr-xr-x 1 root root 4096 May 30  2023 lib
drwxr-xr-x 1 root root 4096 Oct 28 21:51 libfaketime
lrwxrwxrwx 1 root root    9 May 30  2023 man -> share/man
drwxr-xr-x 1 root root 4096 May 30  2023 sbin
drwxr-xr-x 1 root root 4096 May 31  2023 share
drwxr-xr-x 1 root root 4096 May 30  2023 src
root@DESKTOP-ER8E8NH:/usr/local#

03.切换到libfaketime路径

指令:

复制代码
cd libfaketime

04.make

指令:

复制代码
make

eg:

复制代码
root@DESKTOP-ER8E8NH:/usr/local/libfaketime (master)# make
make  -C src all
make[1]: Entering directory '/usr/local/libfaketime/src'
cc -o libfaketime.o -c -std=gnu99 -Wall -Wextra -Werror -DFAKE_PTHREAD -DFAKE_STAT -DFAKE_UTIME -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'/usr/local'"' -DLIBDIRNAME='"'/lib/faketime'"'  -Wno-nonnull-compare   libfaketime.c
cc -o libfaketime.so.1 -Wl,-soname,libfaketime.so.1  -Wl,--version-script=libfaketime.map -shared libfaketime.o -ldl -lm -lrt -lpthreadcc -o libfaketimeMT.o -c -std=gnu99 -Wall -Wextra -Werror -DFAKE_PTHREAD -DFAKE_STAT -DFAKE_UTIME -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'/usr/local'"' -DLIBDIRNAME='"'/lib/faketime'"'  -Wno-nonnull-compare  -DPTHREAD_SINGLETHREADED_TIME libfaketime.c
cc -o libfaketimeMT.so.1 -Wl,-soname,libfaketimeMT.so.1  -Wl,--version-script=libfaketime.map -shared libfaketimeMT.o -ldl -lm -lrt -lpthread
cc -o faketime -std=gnu99 -Wall -Wextra -Werror -DFAKE_PTHREAD -DFAKE_STAT -DFAKE_UTIME -DFAKE_SLEEP -DFAKE_TIMERS -DFAKE_INTERNAL_CALLS -fPIC -DPREFIX='"'/usr/local'"' -DLIBDIRNAME='"'/lib/faketime'"'  -Wno-nonnull-compare   faketime.c  -Wl,--version-script=libfaketime.map -lrt -lpthread
make[1]: Leaving directory '/usr/local/libfaketime/src'

05.make install

指令:

复制代码
make install

eg:

复制代码
root@DESKTOP-ER8E8NH:/usr/local/libfaketime (master)# sudo make install
make  -C src install
make[1]: Entering directory '/usr/local/libfaketime/src'

Copying the faketime libraries to /usr/local/lib/faketime and the faketime wrapper script to /usr/local/bin ...
install -dm0755 "/usr/local/lib/faketime/"
install -m0644 libfaketime.so.1 libfaketimeMT.so.1 "/usr/local/lib/faketime/"
install -Dm0755 faketime "/usr/local/bin/faketime"
make[1]: Leaving directory '/usr/local/libfaketime/src'
make  -C man install
make[1]: Entering directory '/usr/local/libfaketime/man'
install -Dm0644 faketime.1 "/usr/local/share/man/man1/faketime.1"
gzip -nf "/usr/local/share/man/man1/faketime.1"
make[1]: Leaving directory '/usr/local/libfaketime/man'
install -dm0755 "/usr/local/share/doc/faketime/"
install -m0644 README "/usr/local/share/doc/faketime/README"
install -m0644 NEWS "/usr/local/share/doc/faketime/NEWS"

libfaketime使用

修改时间

语法:

复制代码
export LD_PRELOAD=[libfaketime.so.1文件的绝对路径] FAKETIME="[@目标时间]"

eg:

复制代码
export LD_PRELOAD=/usr/local/libfaketime/src/libfaketime.so.1 FAKETIME="@2024-06-04 00:00:01"

同步时间

语法:

复制代码
export LD_PRELOAD=/usr/local/libfaketime/src/libfaketime.so.1 FAKETIME= date
相关推荐
傲世(C/C++,Linux)1 小时前
Linux系统编程——TCP服务器
linux·服务器·tcp/ip
橘子真甜~2 小时前
C/C++ Linux网络编程8 - epoll + ET Reactor TCP服务器
linux·服务器·网络
万变不离其宗_82 小时前
centos 手动安装redis
linux·redis·centos
_lst_3 小时前
linux进程状态
linux·运维·服务器
稚辉君.MCA_P8_Java3 小时前
Gemini永久会员 归并排序(Merge Sort) 基于分治思想(Divide and Conquer)的高效排序算法
java·linux·算法·spring·排序算法
wanderist.3 小时前
Linux使用经验——离线运行python脚本
linux·网络·python
biter00884 小时前
Ubuntu 22.04 有线网络时好时坏?最终解决方案
linux·网络·ubuntu
zzzsde4 小时前
【Linux】基础开发工具(3):编译器
linux·运维·服务器
愚戏师5 小时前
Python3 多线程
linux·运维·服务器·python
n***33356 小时前
linux redis简单操作
linux·运维·redis