Main public logs
From Lucca's Wiki
Jump to navigationJump to search
Combined display of all available logs of Lucca's Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 00:02, 27 August 2025 170.55.73.212 talk created page Cisco copy destinations (Created page with " flash: Copy to flash file ftp: Copy to current system configuration scp: Copy to scp: file system startup-config Copy to startup configuration tftp: Copy to current system configuration")
- 23:23, 26 August 2025 170.55.73.212 talk created page Example configuration files (Created page with " !router configuration in batch mode (config file) !Initial config on router A enable conf t hostname routerA enable secret itsasecret banner motd "Authorized access only. Keep off" !Lets configure the line console 0 port line con 0 password cisco login exit !now we're back in global config mode")
- 22:46, 26 August 2025 170.55.73.212 talk created page Cisco Keyboard Shortcuts (Created page with "Break out of traceroute, etc commands when ctrl+c does not work Ctrl+Shift+6")
- 22:39, 26 August 2025 170.55.73.212 talk created page Cisco Commands (Created page with "Elevate to root user enable")
- 19:46, 24 August 2025 Lucka talk contribs moved page Useful Commands to Linux Commands
- 19:39, 24 August 2025 Lucka talk contribs created page FFmpeg Cut a video to a clip by seconds (Created page with "The fastest and best ffmpeg-based method I have figured out is: ffmpeg -ss 00:01:00 -to 00:02:00 -i input.mp4 -c copy output.mp4 This command trims your video in seconds! Explanation of the command: Command Explanation -i This specifies the input file. In that case, it is (input.mp4). -ss Used with -i, this seeks in the input file (input.mp4) to position. 00:01:00 This is the time your trimmed video will start with. -to The next argument after -to specifies the p...")
- 01:46, 22 August 2025 50.220.241.211 talk created page Python Examples (Created page with "Calculate the average of three numbers avg = float((num1+num2+num3)/3)")