"리눅스 system-config-network"의 두 판 사이의 차이

잔글 (로봇: 자동으로 텍스트 교체 (-[root@jmnote +[root@zetawiki))
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(같은 사용자의 중간 판 4개는 보이지 않습니다)
8번째 줄: 8번째 줄:
==내용==
==내용==
*CentOS 5, 6
*CentOS 5, 6
<source lang='cli'>
<syntaxhighlight lang='console'>
[root@zetawiki ~]# cat /usr/sbin/system-config-network
[root@zetawiki ~]# cat /usr/sbin/system-config-network
#!/bin/sh
#!/bin/sh
17번째 줄: 17번째 줄:
     exec /usr/sbin/system-config-network-tui "$@"
     exec /usr/sbin/system-config-network-tui "$@"
fi
fi
</source>
</syntaxhighlight>


*CentOS 7
*CentOS 7
29번째 줄: 29번째 줄:
*[[리눅스 setup]]
*[[리눅스 setup]]


==참고 자료==
==참고==
*http://oracle-base.com/articles/linux/linux-network-configuration.php
*http://oracle-base.com/articles/linux/linux-network-configuration.php
[[분류: 리눅스 네트워크]]
[[분류: 리눅스 네트워크]]
[[분류: /usr/sbin]]
[[분류: /usr/sbin]]

2020년 11월 2일 (월) 00:56 기준 최신판

1 개요[ | ]

system-config-network
/usr/sbin/system-config-network

 

2 내용[ | ]

  • CentOS 5, 6
[root@zetawiki ~]# cat /usr/sbin/system-config-network
#!/bin/sh

if [ -n "$DISPLAY" -a -f /usr/sbin/system-config-network-gui ]; then
    exec /usr/sbin/system-config-network-gui "$@"
else
    exec /usr/sbin/system-config-network-tui "$@"
fi
  • CentOS 7
(없음)

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}